GridExtensions.AddWithSpan(Grid, IView, Int32, Int32, Int32, Int32) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
public static void AddWithSpan (this Microsoft.Maui.Controls.Grid grid, Microsoft.Maui.IView view, int row = 0, int column = 0, int rowSpan = 1, int columnSpan = 1);
static member AddWithSpan : Microsoft.Maui.Controls.Grid * Microsoft.Maui.IView * int * int * int * int -> unit
<Extension()>
Public Sub AddWithSpan (grid As Grid, view As IView, Optional row As Integer = 0, Optional column As Integer = 0, Optional rowSpan As Integer = 1, Optional columnSpan As Integer = 1)
Paramètres
- columnSpan
- Int32
Nombre de colonnes sur lesquelles IView doit s'étendre. La valeur par défaut est de 1.
Exceptions
Levé quand view
a la valeur null.
Levée lorsque row
ou column
sont inférieurs à 0, ou rowSpan
columnSpan
sont inférieurs à 1.
Remarques
Si le n’a Grid pas suffisamment de lignes/colonnes pour englober les étendues spécifiées, elles sont ajoutées.