Share via


InkAnalyzer.ClearStrokeData Method

Clears the cached data from the InkAnalyzer for the specified Stroke.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)

Syntax

'Declaration
Public Sub ClearStrokeData ( _
    strokeToClear As Stroke _
)
'Usage
Dim instance As InkAnalyzer 
Dim strokeToClear As Stroke

instance.ClearStrokeData(strokeToClear)
public void ClearStrokeData(
    Stroke strokeToClear
)
public:
void ClearStrokeData(
    Stroke^ strokeToClear
)
public function ClearStrokeData(
    strokeToClear : Stroke
)

Parameters

Remarks

The InkAnalyzer maintains a cache for all of the strokes associated with the InkAnalyzer. Changes to stroke data are not automatically reflected in the cache. When stroke information changes, such as when you move a stroke, call this method to clear the old stroke data.

Examples

This example updates the dirty region of the InkAnalyzer, theInkAnalyzer, and clears the analyzer's cache in preparation for moving the strokes collection, selectedStrokes.

' Update the analyzer's dirty region to include the original 
' bounding box of the strokes that are moving. 
Me.theInkAnalyzer.DirtyRegion.Union(Me.selectedStrokes.GetBoundingBox())

' Clear the analyzer's cache for each stroke that is moving. 
Dim theStroke As Microsoft.Ink.Stroke
For Each theStroke In Me.selectedStrokes
    Me.theInkAnalyzer.ClearStrokeData(theStroke)
Next theStroke
// Update the analyzer's dirty region to include the original 
// bounding box of the strokes that are moving. 
this.theInkAnalyzer.DirtyRegion.Union(
    this.selectedStrokes.GetBoundingBox());

// Clear the analyzer's cache for each stroke that is moving. 
foreach (Microsoft.Ink.Stroke theStroke in this.selectedStrokes)
{
    this.theInkAnalyzer.ClearStrokeData(theStroke);
}

Platforms

Windows 7, Windows Vista, Windows Server 2008 R2, Windows Server 2008

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

InkAnalyzer Class

InkAnalyzer Members

Microsoft.Ink Namespace

InkAnalyzerBase.UpdateStrokeData