Grid.SetColumn Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| SetColumn(IView, Int32) |
Sets the zero-based column index for the specified |
| SetColumn(BindableObject, Int32) |
Changes the column in which a child element will be placed. |
SetColumn(IView, Int32)
- Source:
- Grid.cs
- Source:
- Grid.cs
- Source:
- Grid.cs
Sets the zero-based column index for the specified view.
public:
void SetColumn(Microsoft::Maui::IView ^ view, int col);
public void SetColumn(Microsoft.Maui.IView view, int col);
member this.SetColumn : Microsoft.Maui.IView * int -> unit
Public Sub SetColumn (view As IView, col As Integer)
Parameters
- view
- IView
The child view to position.
- col
- Int32
The zero-based column index (must be >= 0).
Exceptions
Thrown if col is negative.
Thrown if view is a non-bindable view that has not been added to the grid.
Applies to
SetColumn(BindableObject, Int32)
- Source:
- Grid.cs
- Source:
- Grid.cs
- Source:
- Grid.cs
Changes the column in which a child element will be placed.
public:
static void SetColumn(Microsoft::Maui::Controls::BindableObject ^ bindable, int value);
public static void SetColumn(Microsoft.Maui.Controls.BindableObject bindable, int value);
static member SetColumn : Microsoft.Maui.Controls.BindableObject * int -> unit
Public Shared Sub SetColumn (bindable As BindableObject, value As Integer)
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 Property | Value |
|---|---|
| ColumnSpan | An integer that represents the Column in which the item will appear. |