Grid.SetColumnSpan 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
SetColumnSpan(IView, Int32) | |
SetColumnSpan(BindableObject, Int32) |
Changes the column span of the specified child element. |
SetColumnSpan(IView, Int32)
- Source:
- Grid.cs
- Source:
- Grid.cs
public:
void SetColumnSpan(Microsoft::Maui::IView ^ view, int span);
public void SetColumnSpan (Microsoft.Maui.IView view, int span);
member this.SetColumnSpan : Microsoft.Maui.IView * int -> unit
Public Sub SetColumnSpan (view As IView, span As Integer)
Parameters
- view
- IView
- span
- Int32
Applies to
SetColumnSpan(BindableObject, Int32)
- Source:
- Grid.cs
- Source:
- Grid.cs
Changes the column span of the specified child element.
public:
static void SetColumnSpan(Microsoft::Maui::Controls::BindableObject ^ bindable, int value);
public static void SetColumnSpan (Microsoft.Maui.Controls.BindableObject bindable, int value);
static member SetColumnSpan : Microsoft.Maui.Controls.BindableObject * int -> unit
Public Shared Sub SetColumnSpan (bindable As BindableObject, value As Integer)
Parameters
- bindable
- BindableObject
A child element of this Grid on which to assign a new column span.
- value
- Int32
The new column span.
Remarks
The GetColumn(BindableObject) method corresponds to the value that is set by the following XAML attached property.
Attached Property | Value |
---|---|
Column | An integer that represents the number of Columns that the item will span. |
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET MAUI