DataRelation.ParentColumns Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets an array of DataColumn objects that are the parent columns of this DataRelation.
public:
virtual property cli::array <System::Data::DataColumn ^> ^ ParentColumns { cli::array <System::Data::DataColumn ^> ^ get(); };
public virtual System.Data.DataColumn[] ParentColumns { get; }
[System.Data.DataSysDescription("DataRelationParentColumnsDescr")]
public virtual System.Data.DataColumn[] ParentColumns { get; }
member this.ParentColumns : System.Data.DataColumn[]
[<System.Data.DataSysDescription("DataRelationParentColumnsDescr")>]
member this.ParentColumns : System.Data.DataColumn[]
Public Overridable ReadOnly Property ParentColumns As DataColumn()
Property Value
An array of DataColumn objects that are the parent columns of this DataRelation.
- Attributes
Examples
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
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.