GetChildren

指定された関係から子の行を取得します。

構文

ASCII バージョン
DataRow** getChildren(DataRow* dataRow,const char* childName) 
Unicode バージョン
DataRow** getChildren(DataRow* dataRow,const UChar* childName) 

パラメータ

  • 親子関係の名前 ("Flood Plain Data"、"References"、"Used By" など)。

結果

指定された関係から子の行を返します。

ASCII バージョン
DataRow** child1Rows; 
child1Rows =	getChildren(dataRow, "child1"); 
Unicode バージョン
DataRow** child1Rows; 
UChar childName[128]; 
/* see convertcharToUChar in the Example section of "addChild" */ 
child1Rows =	getChildren(dataRow, convertcharToUChar("child1", childName));