DataRelation::ParentColumns Property
.NET Framework (current version)
Gets an array of DataColumn objects that are the parent columns of this DataRelation.
Assembly: System.Data (in System.Data.dll)
Property Value
Type: array<System.Data::DataColumn^>^An array of DataColumn objects that are the parent columns of this DataRelation.
The following example gets the array of DataColumn objects that function as parent columns for the relation.
Private Sub GetChildCols() ' Get the DataRelation of a DataSet. Dim relation As DataRelation = _ DataSet1.Relations("CustomerOrders") ' Get the parent columns. Dim parentColumns() As DataColumn = relation.ParentColumns ' Print the ColumnName of each column. Dim i As Integer For i = 0 to parentColumns.GetUpperBound(0) Console.Writeline(parentColumns(i).ColumnName.ToString()) Next i End Sub
.NET Framework
Available since 1.1
Available since 1.1
Show: