InkAnalyzer.ClearStrokeData - метод
Обновлен: Ноябрь 2007
Clears the cached data from the InkAnalyzer for the specified Stroke.
Пространство имен: System.Windows.Ink
Сборка: IAWinFX (в IAWinFX.dll)
Синтаксис
'Декларация
Public Sub ClearStrokeData ( _
strokeToClear As Stroke _
)
'Применение
Dim instance As InkAnalyzer
Dim strokeToClear As Stroke
instance.ClearStrokeData(strokeToClear)
public void ClearStrokeData(
Stroke strokeToClear
)
public:
void ClearStrokeData(
Stroke^ strokeToClear
)
public void ClearStrokeData(
Stroke strokeToClear
)
public function ClearStrokeData(
strokeToClear : Stroke
)
Параметры
- strokeToClear
Тип: System.Windows.Ink.Stroke
The cached stroke to be cleared.
Заметки
The InkAnalyzer maintains a cache for all strokes associated with the InkAnalyzer. Changes to stroke data are not automatically reflected in the cache. If stroke information changes (for example, if you move a stroke), call this method to clear old stroke data.
Примеры
This example updates the dirty region of the InkAnalyzer, named theInkAnalyzer, and clears the analyzer's cache while preparing to move the StrokeCollection, named selectedStrokes.
' Update the analyzer's dirty region to include the original
' bounding box of the strokes that are moving.
Me.theInkAnalyzer.DirtyRegion.Union(selectedStrokes.GetBounds())
' Clear the analyzer's cache for each stroke that is moving.
Dim theStroke As Stroke
For Each theStroke In 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(selectedStrokes.GetBounds());
// Clear the analyzer's cache for each stroke that is moving.
foreach (Stroke theStroke in selectedStrokes)
{
this.theInkAnalyzer.ClearStrokeData(theStroke);
}
Платформы
Windows Vista
Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.
Сведения о версии
.NET Framework
Поддерживается в версии: 3.0
См. также
Ссылки
System.Windows.Ink - пространство имен
InkAnalyzerBaseUpdateStrokeData(Int32, array<Int32[], array<Guid[])