ArcFM Responder Mobile Developer Guide
GetChildRows Method






The parent DataRow.
The represents of the relationship.
Gets the child rows of a DataRow for a given relationship represents.
Syntax
public static System.Data.DataRow[] GetChildRows( 
   System.Data.DataRow dataRow,
   System.string relationRepresents
)
public function GetChildRows( 
    dataRow: System.Data.DataRow;
    relationRepresents: System.String
): System.Data.array of DataRow; static; 
public static function GetChildRows( 
   dataRow : System.Data.DataRow,
   relationRepresents : System.String
) : System.Data.DataRow[];
public: static System.Data.DataRow*[]* GetChildRows( 
   System.Data.DataRow* dataRow,
   System.string* relationRepresents
) 
public:
static System.Data.array<DataRow^>^ GetChildRows( 
   System.Data.DataRow^ dataRow,
   System.String^ relationRepresents
) 
'Declaration
 
Public Shared Function GetChildRows( _
   ByVal dataRow As System.Data.DataRow, _
   ByVal relationRepresents As System.String _
) As System.Data.DataRow()
 
'Usage
 
Dim dataRow As System.Data.DataRow
Dim relationRepresents As System.String
Dim value() As System.Data.DataRow
 
value = DataSetConfig.GetChildRows(dataRow, relationRepresents)

Parameters

dataRow
The parent DataRow.
relationRepresents
The represents of the relationship.

Return Value

A list of child DataRows.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

DataSetConfig Class
DataSetConfig Members

Send Feedback