UserTrackPointCollection 建構函式

定義

初始化 UserTrackPointCollection 類別的新執行個體。

多載

UserTrackPointCollection()

初始化 UserTrackPointCollection 類別的新執行個體。

UserTrackPointCollection(IEnumerable<UserTrackPoint>)

使用使用者追蹤點的清單,初始化 UserTrackPointCollection 類別的新執行個體。

UserTrackPointCollection()

初始化 UserTrackPointCollection 類別的新執行個體。

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

備註

無參數建構函式會將 UserTrackPointCollection 初始化為空白清單。

適用於

UserTrackPointCollection(IEnumerable<UserTrackPoint>)

使用使用者追蹤點的清單,初始化 UserTrackPointCollection 類別的新執行個體。

public:
 UserTrackPointCollection(System::Collections::Generic::IEnumerable<System::Workflow::Runtime::Tracking::UserTrackPoint ^> ^ points);
public UserTrackPointCollection (System.Collections.Generic.IEnumerable<System.Workflow.Runtime.Tracking.UserTrackPoint> points);
new System.Workflow.Runtime.Tracking.UserTrackPointCollection : seq<System.Workflow.Runtime.Tracking.UserTrackPoint> -> System.Workflow.Runtime.Tracking.UserTrackPointCollection
Public Sub New (points As IEnumerable(Of UserTrackPoint))

參數

例外狀況

points 為 null 參考 (在 Visual Basic 中為 Nothing)。

備註

UserTrackPointCollection 會初始化為包含 UserTrackPoint 中所指定的 points 物件。

適用於