Grid.SetColumn(BindableObject, Int32) Method

Definition

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

public static void SetColumn (Xamarin.Forms.BindableObject bindable, int value);
static member SetColumn : Xamarin.Forms.BindableObject * int -> unit

Parameters

bindable
BindableObject

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

value
Int32

The column in which to place the child element.

Remarks

The GetColumnSpan(BindableObject) method corresponds to the value that is set by the following XAML attached property.

Attached PropertyValue
ColumnSpan

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

Applies to