EllipseStylusShape Class
Represents a stylus tip shaped like an ellipse.
Assembly: PresentationCore (in PresentationCore.dll)
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 enables 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 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
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.