Grid.IGridList<T>.Add メソッド

定義

オーバーロード

Add(View, Int32, Int32)

RowSpan および HeightSpan が 1 の指定の位置のリストにビューを追加します。

Add(View, Int32, Int32, Int32, Int32)

指定した行のスパンと列のスパンの範囲にあるリストにビューを追加します。

Add(View, Int32, Int32)

RowSpan および HeightSpan が 1 の指定の位置のリストにビューを追加します。

public void Add (Xamarin.Forms.View view, int left, int top);
abstract member Add : Xamarin.Forms.View * int * int -> unit

パラメーター

view
View

追加するビュー。

left
Int32

ビューを追加する列。

top
Int32

ビューを追加する行。

適用対象

Add(View, Int32, Int32, Int32, Int32)

指定した行のスパンと列のスパンの範囲にあるリストにビューを追加します。

public void Add (Xamarin.Forms.View view, int left, int right, int top, int bottom);
abstract member Add : Xamarin.Forms.View * int * int * int * int -> unit

パラメーター

view
View

追加するビュー。

left
Int32

列のスパンの左端。 0 以上であることが必要です。

right
Int32

列のスパンの右端。 左より大きくなければなりません。 ビューがこの列を占有することはありませんが、直前で止まります。

top
Int32

行のスパンの上端。 0 以上であることが必要です。

bottom
Int32

行のスパンの下端。 上よりも大きい必要があります。

適用対象