ColumnDefinitionCollection.Count Property

Definition

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

Property Value

The total number of items in the collection. This property has no default value.

Implements

Examples

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

To view the complete sample, see How to: Manipulate Columns and Rows by Using ColumnDefinitionsCollections and RowDefinitionsCollections.

Applies to

See also