AdgDataSet.AddRow Method

Definition

Namespace: ASNA.DataGate.Client
Assembly: ASNA.QSys.DataGate.Client.dll

Adds a new row to the DataTable associated with the specified format.

Overloads

Signature Description
AddRow(String) Adds a new row to the DataTable associated with the specified format name.
AddRow(Int32) Adds a new row to the DataTable associated with the specified format index.

void AddRow(String)

Adds a new row to the DataTable associated with the specified format name.

void AddRow(string strFormat)

Parameters

Type Parameter name Description
String strFormat The format name of the DataTable.

Remarks

This method first calls GetFormatIndex with the provided format name to retrieve the corresponding format index, then calls AddRow with the retrieved format index to add a new row.

void AddRow(Int32)

Adds a new row to the DataTable associated with the specified format index.

void AddRow(int iFormat)

Parameters

Type Parameter name Description
Int32 iFormat The format index of the DataTable.

Remarks

Retrieves the AdgTable instance for the provided format index and calls its AddRow method to add a new row.

See Also