DataRelation.ChildTable プロパティ
アセンブリ: System.Data (system.data.dll 内)


DataRelation の子 DataTable を取得する例を次に示します。
Private Sub GetChildTable() ' Get a DataRelation of a DataSet. Dim relation As DataRelation = _ DataSet1.Relations("CustomerOrders") ' Get the child DataTable of the relation. Dim table As DataTable = relation.ChildTable ' Print the name and number of rows of the child table. Console.Writeline("Name: {0} Rowcount: {1}", _ table.TableName, table.Rows.Count.ToString()) End Sub

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からDataRelation.ChildTable プロパティを検索する場合は、下記のリンクをクリックしてください。

- DataRelation.ChildTable プロパティのページへのリンク