PointCollection.Item[Int32] プロパティ

定義

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

public:
 property System::Windows::Point default[int] { System::Windows::Point get(int index); void set(int index, System::Windows::Point value); };
public System.Windows.Point this[int index] { get; set; }
member this.Item(int) : System.Windows.Point with get, set
Default Public Property Item(index As Integer) As Point

パラメーター

index
Int32

取得または設定する Point の 0 から始まるインデックス番号。

プロパティ値

Point

指定したインデックスにある Point です。

実装

例外

valuenullです。

indexPointCollection の有効なインデックスではありません。

PointCollection は読み取り専用です。

注釈

一般的な実装IList<T>.Item[]とは異なり、この実装では null (Nothing) 参照を挿入しようとすると、an がスローArgumentExceptionされます。

適用対象

こちらもご覧ください