Matrix3x2.Item[Int32, Int32] Propriété
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.
Obtient ou définit l’élément aux index spécifiés.
public:
property float default[int, int] { float get(int row, int column); void set(int row, int column, float value); };
public float this[int row, int column] { get; set; }
member this.Item(int * int) : single with get, set
Default Public Property Item(row As Integer, column As Integer) As Single
Paramètres
- row
- Int32
Index de la ligne contenant l’élément à obtenir ou à définir.
- column
- Int32
Index de la colonne contenant l’élément à obtenir ou à définir.
Valeur de propriété
Élément à l’emplacement [row
][column
].
Exceptions
row
était inférieur à zéro ou supérieur au nombre de lignes.
-ou-
column
était inférieur à zéro ou supérieur au nombre de colonnes.