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