UserTrackPointCollection 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 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
- IEnumerable<UserTrackPoint>
IEnumerable<T> 物件的 UserTrackPoint 清單。
例外狀況
points
為 null 參考 (在 Visual Basic 中為 Nothing
)。
備註
UserTrackPointCollection 會初始化為包含 UserTrackPoint 中所指定的 points
物件。