Matrix3x2.Item[Int32, Int32] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.