Gets or sets a value that determines a number of rows in the AutoDistributionGrid. This is a dependency property.

Namespace:  C1.WPF.C1Schedule
Assembly:  C1.WPF.C1Schedule (in C1.WPF.C1Schedule.dll)

Syntax

C#
public int RowCount { get; set; }
Visual Basic (Declaration)
Public Property RowCount As Integer
	Get
	Set

Remarks

Use this property to specify a number of grid rows numerically.

This property value is being kept in sync with a number of items in the RowDefinitions collection.

If a number of items in the RowDefinitions collection has been changed then the value of the RowCount property is updated automatically.

If a value of the RowCount property is changed directly, then items will be added or removed to/from the end of RowDefinitions collection until its number becomes equal to the new RowCount value.

This is a dependency property.

See Also