次の方法で共有


Polygon.Points プロパティ

定義

多角形の頂点を格納するコレクションを取得または設定します。

public:
 property PointCollection ^ Points { PointCollection ^ get(); void set(PointCollection ^ value); };
PointCollection Points();

void Points(PointCollection value);
public PointCollection Points { get; set; }
var pointCollection = polygon.points;
polygon.points = pointCollection;
Public Property Points As PointCollection
<Polygon Points="pointSet"/>

プロパティ値

多角形の頂点を表す Point 構造体のコレクション。 既定値は null です。 値は、XAML または型変換の文字列として表すことができます。

適用対象