Grid.SetRow Method

Definition

Overloads

SetRow(BindableObject, Int32)

Changes the row in which a child element will be placed.

SetRow(IView, Int32)

SetRow(BindableObject, Int32)

Changes the row in which a child element will be placed.

public:
 static void SetRow(Microsoft::Maui::Controls::BindableObject ^ bindable, int value);
public static void SetRow (Microsoft.Maui.Controls.BindableObject bindable, int value);
static member SetRow : Microsoft.Maui.Controls.BindableObject * int -> unit
Public Shared Sub SetRow (bindable As BindableObject, value As Integer)

Parameters

bindable
BindableObject

A child element of this Grid to move to a different row.

value
Int32

The row in which to place the child element.

Remarks

The SetRow(BindableObject, Int32) method corresponds to the following XAML attached property:

Attached PropertyValue
Row

An integer that represents the row in which the item will appear.

Applies to

SetRow(IView, Int32)

public:
 void SetRow(Microsoft::Maui::IView ^ view, int row);
public void SetRow (Microsoft.Maui.IView view, int row);
member this.SetRow : Microsoft.Maui.IView * int -> unit
Public Sub SetRow (view As IView, row As Integer)

Parameters

view
IView
row
Int32

Applies to