Sdílet prostřednictvím


Matrix3x2.Item[] Vlastnost

Definice

Přetížení

Item[Int32]
Item[Int32, Int32]

Získá nebo nastaví element na zadané indexy.

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

Parametry

row
Int32

Hodnota vlastnosti

Platí pro

Item[Int32, Int32]

Zdroj:
Matrix3x2.cs
Zdroj:
Matrix3x2.cs
Zdroj:
Matrix3x2.cs
Zdroj:
Matrix3x2.cs

Získá nebo nastaví element na zadané indexy.

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

Parametry

row
Int32

Index řádku obsahující prvek, který chcete získat nebo nastavit.

column
Int32

Index sloupce obsahující prvek, který chcete získat nebo nastavit.

Hodnota vlastnosti

Element na adrese [row][column].

Výjimky

row byl menší než nula nebo větší než počet řádků.

-nebo-

column byl menší než nula nebo větší než počet sloupců.

Platí pro