EllipseStylusShape Class
.NET Framework 3.0
Represents an elliptical stylus tip.
Namespace: System.Windows.Ink
Assembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
Assembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
The following example demonstrates how to create an EllipseStylusShape and pass it to the GetIncrementalStrokeHitTester method to erase a portion of a Stroke. This example assumes that there is a IncrementalStrokeHitTester called eraseTester and that its StrokeHit event has been connected to the event handler defined in this example. To create a control that allows a user to erase ink, see How to: Erase Ink on a Custom Control.
' Prepare to collect stylus packets. Get the ' IncrementalHitTester from the InkPresenter's ' StrokeCollection and subscribe to its StrokeHitChanged event. Protected Overrides Sub OnStylusDown(ByVal e As StylusDownEventArgs) MyBase.OnStylusDown(e) Dim eraserTip As New EllipseStylusShape(3, 3, 0) eraseTester = presenter.Strokes.GetIncrementalStrokeHitTester(eraserTip) AddHandler eraseTester.StrokeHit, _ AddressOf eraseTester_StrokeHit eraseTester.AddPoints(e.GetStylusPoints(Me)) End Sub 'OnStylusDown
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: