PathGeometry.Figures プロパティ

定義

パスの内容を記述する PathFigure オブジェクトのコレクションを取得または設定します。

public:
 property PathFigureCollection ^ Figures { PathFigureCollection ^ get(); void set(PathFigureCollection ^ value); };
PathFigureCollection Figures();

void Figures(PathFigureCollection value);
public PathFigureCollection Figures { get; set; }
var pathFigureCollection = pathGeometry.figures;
pathGeometry.figures = pathFigureCollection;
Public Property Figures As PathFigureCollection
<PathGeometry>
  <PathGeometry.Figures>
    oneOrMoreFigures
  </PathGeometry.Figures>
</PathGeometry>

プロパティ値

パスの内容を記述する PathFigure オブジェクトのコレクション。 個々の PathFigure は図形を記述します。

注釈

複数の PathFigure が必要なメインの理由は、PathGeometry 全体を、別の場所で線を "再起動" できる 1 つのベクター描画として考慮し、IsClosed を使用して各図形を閉じる場合です。

適用対象

こちらもご覧ください