Grid.RowDefinitions Property

Definition

Gets a RowDefinitionCollection defined on this instance of Grid.

public:
 property System::Windows::Controls::RowDefinitionCollection ^ RowDefinitions { System::Windows::Controls::RowDefinitionCollection ^ get(); };
public:
 property System::Windows::Controls::RowDefinitionCollection ^ RowDefinitions { System::Windows::Controls::RowDefinitionCollection ^ get(); void set(System::Windows::Controls::RowDefinitionCollection ^ value); };
public System.Windows.Controls.RowDefinitionCollection RowDefinitions { get; }
[System.ComponentModel.TypeConverter(typeof(System.Windows.Controls.RowDefinitionCollectionConverter))]
public System.Windows.Controls.RowDefinitionCollection RowDefinitions { get; set; }
member this.RowDefinitions : System.Windows.Controls.RowDefinitionCollection
[<System.ComponentModel.TypeConverter(typeof(System.Windows.Controls.RowDefinitionCollectionConverter))>]
member this.RowDefinitions : System.Windows.Controls.RowDefinitionCollection with get, set
Public ReadOnly Property RowDefinitions As RowDefinitionCollection
Public Property RowDefinitions As RowDefinitionCollection

Property Value

A RowDefinitionCollection defined on this instance of Grid.

Attributes

Remarks

XAML Property Element Usage

<object>
  <object.RowDefinitions>
    OneOrMoreRowDefinitions
  </object.RowDefinitions>
</object>

XAML Values

OneOrMoreRowDefinitions One or more RowDefinition elements. Each such RowDefinition becomes a placeholder representing a row in the final grid layout.

Applies to

See also