GridExtensions.Add メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
Add(Grid, IView, Int32, Int32) | |
Add(Grid, IView, Int32, Int32, Int32, Int32) |
古い.
|
Add(Grid, IView, Int32, Int32)
public static void Add (this Microsoft.Maui.Controls.Grid grid, Microsoft.Maui.IView view, int column = 0, int row = 0);
static member Add : Microsoft.Maui.Controls.Grid * Microsoft.Maui.IView * int * int -> unit
<Extension()>
Public Sub Add (grid As Grid, view As IView, Optional column As Integer = 0, Optional row As Integer = 0)
パラメーター
例外
view
が null の場合にスローされます。
row
またはcolumn
が 0 未満の場合にスローされます。
注釈
Gridに、指定した場所を含む十分な行/列がない場合は、追加されます。
適用対象
Add(Grid, IView, Int32, Int32, Int32, Int32)
注意事項
This method is obsolete. Please use AddWithSpan(this Grid, IView, int, int, int, int) instead.
public:
[System::Runtime::CompilerServices::Extension]
static void Add(Microsoft::Maui::Controls::Grid ^ grid, Microsoft::Maui::IView ^ view, int left, int right, int top, int bottom);
[System.Obsolete("This method is obsolete. Please use AddWithSpan(this Grid, IView, int, int, int, int) instead.")]
public static void Add (this Microsoft.Maui.Controls.Grid grid, Microsoft.Maui.IView view, int left, int right, int top, int bottom);
[<System.Obsolete("This method is obsolete. Please use AddWithSpan(this Grid, IView, int, int, int, int) instead.")>]
static member Add : Microsoft.Maui.Controls.Grid * Microsoft.Maui.IView * int * int * int * int -> unit
<Extension()>
Public Sub Add (grid As Grid, view As IView, left As Integer, right As Integer, top As Integer, bottom As Integer)
パラメーター
- left
- Int32
列のスパンの左端。 0 以上である必要があります。
- top
- Int32
行のスパンの上端。 0 以上である必要があります。
- 属性
例外
view
が null の場合にスローされます。
left
またはtop
が 0 未満、bottom
がtop
以下、またはright
がleft
以下の場合にスローされます。
注釈
指定したスパンを含めるのに十分な行/列がない場合は、 Grid が追加されます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET MAUI