Edit

Share via


Matrix3x2.Item[] Property

Definition

Overloads

Item[Int32]
Item[Int32, Int32]

Gets or sets the element at the specified indices.

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

Parameters

row
Int32

Property Value

Applies to

Item[Int32, Int32]

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

Gets or sets the element at the specified indices.

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

Parameters

row
Int32

The index of the row containing the element to get or set.

column
Int32

The index of the column containing the element to get or set.

Property Value

The element at [row][column].

Exceptions

row was less than zero or greater than the number of rows.

-or-

column was less than zero or greater than the number of columns.

Applies to