共用方式為


Stroke.Deleted 屬性

取得值,指出 Stroke 物件是否已從其父代 Ink 物件中刪除。

命名空間:  Microsoft.Ink
組件:  Microsoft.Ink (在 Microsoft.Ink.dll 中)

語法

'宣告
Public ReadOnly Property Deleted As Boolean
'用途
Dim instance As Stroke
Dim value As Boolean

value = instance.Deleted
public bool Deleted { get; }
public:
property bool Deleted {
    bool get ();
}
/** @property */
public boolean get_Deleted()
public function get Deleted () : boolean

屬性值

型別:System.Boolean
Stroke 物件是否已從其父代 Ink 物件中刪除。

意義

true

筆劃已從其父代 Ink 物件中刪除。

false

筆劃仍存在其父代 Ink 物件內。

備註

Stroke 物件的參考可能在 Stroke 物件從其父代 Ink 物件中刪除後仍存在。使用 Deleted 屬性可判斷 Stroke 物件是否已刪除。

範例

這個 C# 範例會顯示一則訊息,指出 Stroke 物件 (theStroke) 是否已刪除。

if (theStroke.Deleted)
{
    MessageBox.Show("Stroke " + theStroke.Id + " is deleted.");
}
else
{
    MessageBox.Show("Stroke " + theStroke.Id + " exists.");
}

這個 Microsoft Visual Basic .NET 範例會顯示一則訊息,指出 Stroke 物件 (theStroke) 是否已刪除。

If (theStroke.Deleted) Then
    MessageBox.Show("Stroke " & theStroke.Id & " is deleted.")
Else
    MessageBox.Show("Stroke " & theStroke.Id & " exists.")
End If

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求

版本資訊

.NET Framework

支援版本:3.0

請參閱

參考

Stroke 類別

Stroke 成員

Microsoft.Ink 命名空間

Ink