Partager via


Matrix3x2.Item[] Propriété

Définition

Surcharges

Item[Int32]
Item[Int32, Int32]

Obtient ou définit l’élément aux index spécifiés.

Item[Int32]

public:
 property System::Numerics::Vector2 default[int] { System::Numerics::Vector2 get(int row); void set(int row, System::Numerics::Vector2 value); };
public System.Numerics.Vector2 this[int row] { get; set; }
member this.Item(int) : System.Numerics.Vector2 with get, set
Default Public Property Item(row As Integer) As Vector2

Paramètres

row
Int32

Valeur de propriété

S’applique à

Item[Int32, Int32]

Source:
Matrix3x2.cs
Source:
Matrix3x2.cs
Source:
Matrix3x2.cs
Source:
Matrix3x2.cs

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.

S’applique à