GetColumnCountFromRow

Ruft die Anzahl der Spalten ab.

Syntax

int	 getColumnCountFromRow(DataRow* dataRow ) 

Parameter

  • DataRow: Dies ist die Datenzeile (DataRow), auf die diese Funktion angewendet wird.

Ergebnisse

Gibt die Anzahl der Spalten zurück.

Beispiel

//Assume that the dataRow is given here
int nColumnCount ;
nColumnCount = getColumnCountFromRow (dataRow );