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 对象从其父 Ink 对象中删除后,可能会存在对 Stroke 对象的引用。使用 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