DataRelation::ChildColumns Property
.NET Framework (current version)
Gets the child DataColumn objects of this relation.
Assembly: System.Data (in System.Data.dll)
The following example gets the child DataColumn objects of a DataRelation.
Private Sub GetChildColumns() ' Get the DataRelation of a DataSet. Dim relation As DataRelation = _ DataSet1.Relations("CustomerOrders") ' Get the child columns. Dim childArray() As DataColumn = relation.ChildColumns ' Print the ColumnName of each column. Dim i As Integer For i = 0 to childArray.GetUpperBound(0) Debug.Write(childArray(i).ColumnName) Next i End Sub
.NET Framework
Available since 1.1
Available since 1.1
Show: