次の方法で共有


Matrix3x2.Item[] プロパティ

定義

オーバーロード

Item[Int32]
Item[Int32, Int32]

指定したインデックス位置にある要素を取得または設定します。

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

パラメーター

row
Int32

プロパティ値

適用対象

Item[Int32, Int32]

ソース:
Matrix3x2.cs
ソース:
Matrix3x2.cs
ソース:
Matrix3x2.cs
ソース:
Matrix3x2.cs

指定したインデックス位置にある要素を取得または設定します。

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

パラメーター

row
Int32

取得または設定する要素を含む行のインデックス。

column
Int32

取得または設定する要素を含む列のインデックス。

プロパティ値

[row][column] の要素。

例外

row が 0 より小さいか、行数を超えています。

または

column が 0 より小さいか、列の数より大きかった。

適用対象