ColumnDefinitionCollection.Count プロパティ
定義
ColumnDefinitionCollection のこのインスタンス内にある項目の合計数を取得します。Gets the total number of items within this instance of ColumnDefinitionCollection.
public:
property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer
プロパティ値
コレクション内の項目の合計数。The total number of items in the collection. このプロパティには既定値はありません。This property has no default value.
実装
例
次の例は、プロパティの使用方法を示して Count います。The following example demonstrates how to use the Count property.
private void colCount(object sender, RoutedEventArgs e)
{
tp2.Text = "The current number of Columns is: " + grid1.ColumnDefinitions.Count;
}
Private Sub colCount(ByVal sender As Object, ByVal e As RoutedEventArgs)
tp2.Text = "The current number of Columns is: " + grid1.ColumnDefinitions.Count.ToString()
End Sub
完全なサンプルを表示するには、「 方法: ColumnDefinitionsCollections と RowDefinitionsCollections を使用して列と行を操作する」を参照してください。To view the complete sample, see How to: Manipulate Columns and Rows by Using ColumnDefinitionsCollections and RowDefinitionsCollections.