This documentation is archived and is not being maintained.
InkWordNode Class
Visual Studio 2008
Represents a ContextNode for a collection of strokes that make up a logical grouping that forms a recognizable word.
Assembly: IAWinFX (in IAWinFX.dll)
The following example loops through all InkWordNode objects from an InkAnalyzer, theInkAnalyzer, and then draws lines that show the rotated bounding rectangle, the ascender line, ascenderLine, the descender line, descenderLine, the midline, and the baseline. The lines are drawn on an InkCanvas, theInkCanvas.
' Loop through all of the ink words Dim inkWords As ContextNodeCollection = _ theInkAnalyzer.FindNodesOfType(ContextNodeType.InkWord) Dim inkWord As InkWordNode For Each inkWord In inkWords ' Show rotated bounding box in blue Dim rotatedBounds As New Polygon() rotatedBounds.Points = inkWord.GetRotatedBoundingBox() rotatedBounds.Stroke = Brushes.Blue Me.theInkCanvas.Children.Add(rotatedBounds) ' Show the ascender line in green Dim ascenderLine As New Polyline() ascenderLine.Points = inkWord.GetAscender() ascenderLine.Stroke = Brushes.Green Me.theInkCanvas.Children.Add(ascenderLine) ' Show the baseline in purple Dim baseline As New Polyline() baseline.Points = inkWord.GetBaseline() baseline.Stroke = Brushes.Purple theInkCanvas.Children.Add(baseline) ' Show the descender line in yellow Dim descenderLine As New Polyline() descenderLine.Points = inkWord.GetDescender() descenderLine.Stroke = Brushes.Yellow theInkCanvas.Children.Add(descenderLine) ' Show the descender line in brown Dim midline As New Polyline() midline.Points = inkWord.GetMidline() midline.Stroke = Brushes.Brown theInkCanvas.Children.Add(midline) Next inkWord
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.
Show: