Matrix3x2.Item[Int32, Int32] プロパティ

定義

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

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 より小さいか、列の数より大きかった。

適用対象