Grid.IGridList<T>.AddVertical Method

Definition

Overloads

AddVertical(IEnumerable<View>)

Add a collection views to the List such that they are vertically stacked below the current contents of the Grid.

AddVertical(View)

Add a view to the List such that it is vertically stacked below the current contents of the Grid.

AddVertical(IEnumerable<View>)

Add a collection views to the List such that they are vertically stacked below the current contents of the Grid.

public void AddVertical (System.Collections.Generic.IEnumerable<Xamarin.Forms.View> views);
abstract member AddVertical : seq<Xamarin.Forms.View> -> unit

Parameters

views
IEnumerable<View>

The views to add.

Remarks

The final span of each view is defined to be the width of the grid at the add time, and one row tall at the end of the current arrangement.

Applies to

AddVertical(View)

Add a view to the List such that it is vertically stacked below the current contents of the Grid.

public void AddVertical (Xamarin.Forms.View view);
abstract member AddVertical : Xamarin.Forms.View -> unit

Parameters

view
View

The view to add.

Remarks

The final span of the view is defined to be the width of the grid at the add time, and one row tall at the end of the current arrangement.

Applies to