言語

PolyLineSegment コンストラクター

定義

PolyLineSegment クラスの新しいインスタンスを初期化します。

オーバーロード

名前 説明
PolyLineSegment()

PolyLineSegment クラスの新しいインスタンスを初期化します。

PolyLineSegment(IEnumerable<Point>, Boolean)

ライン セグメントを決定するポイントの指定したリストと、セグメントがストロークされるかどうかを示す値を使用して、 PolyLineSegment クラスの新しいインスタンスを初期化します。

PolyLineSegment()

PolyLineSegment クラスの新しいインスタンスを初期化します。

public:
 PolyLineSegment();
public PolyLineSegment();
Public Sub New ()

適用対象

PolyLineSegment(IEnumerable<Point>, Boolean)

ライン セグメントを決定するポイントの指定したリストと、セグメントがストロークされるかどうかを示す値を使用して、 PolyLineSegment クラスの新しいインスタンスを初期化します。

public:
 PolyLineSegment(System::Collections::Generic::IEnumerable<System::Windows::Point> ^ points, bool isStroked);
public PolyLineSegment(System.Collections.Generic.IEnumerable<System.Windows.Point> points, bool isStroked);
new System.Windows.Media.PolyLineSegment : seq<System.Windows.Point> * bool -> System.Windows.Media.PolyLineSegment
Public Sub New (points As IEnumerable(Of Point), isStroked As Boolean)

パラメーター

points
IEnumerable<Point>

PolyLineSegmentの線分を決定するポイントのコレクション。

isStroked
Boolean

true セグメントをストロークさせる。それ以外の場合は false

適用対象