InkAnalyzer.RemoveStroke 方法

从墨迹分析器移除 Stroke

命名空间:  Microsoft.Ink
程序集:  Microsoft.Ink.Analysis(在 Microsoft.Ink.Analysis.dll 中)

语法

声明
Public Sub RemoveStroke ( _
    strokeToRemove As Stroke _
)
用法
Dim instance As InkAnalyzer
Dim strokeToRemove As Stroke

instance.RemoveStroke(strokeToRemove)
public void RemoveStroke(
    Stroke strokeToRemove
)
public:
void RemoveStroke(
    Stroke^ strokeToRemove
)
public void RemoveStroke(
    Stroke strokeToRemove
)
public function RemoveStroke(
    strokeToRemove : Stroke
)

参数

备注

此方法从 InkAnalyzer 移除 strokeToRemove。

此方法从引用 strokeToRemove 的叶上下文节点移除该笔画。如果该上下文节点不再引用任何笔画,则此方法删除该上下文节点以及不再拥有任何子节点的所有上级节点。

从上下文节点移除笔画后,此方法更新 DirtyRegion 以包含已移除笔画的边界框。

如果该笔画不与墨迹分析器相关联,则此方法返回但不更新墨迹分析器。

当 strokeToRemove 为 nullnull 引用(在 Visual Basic 中为 Nothing) 时,此方法引发 System.ArgumentNullException

示例

此示例确定 Stroke (theStroke) 的边界框的左边界是否小于 32 位有符号整数 leftBound。如果是,则从 InkAnalyzer (theInkAnalyzer) 中移除 theStroke。

' Remove the stroke if its bounding box falls outside of the left bound.
If theStroke IsNot Nothing _
    AndAlso theStroke.GetBoundingBox().Left < leftBound Then

    Me.theInkAnalyzer.RemoveStroke(theStroke)
End If
// Remove the stroke if its bounding box falls outside of the left bound.
if (theStroke != null && theStroke.GetBoundingBox().Left < leftBound)
{
    this.theInkAnalyzer.RemoveStroke(theStroke);
}

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

InkAnalyzer 类

InkAnalyzer 成员

Microsoft.Ink 命名空间

InkAnalyzer.AddStroke

InkAnalyzer.AddStrokes

InkAnalyzer.RemoveStrokes

InkAnalyzer.DirtyRegion