This documentation is archived and is not being maintained.
LineNode Class
Visual Studio 2008
Represents a ContextNode for a line of words.
Assembly: IAWinFX (in IAWinFX.dll)
A LineNode object can contain the following types of children:
Any number of InkWordNode objects.
Any number of TextWordNode objects.
The following example loops through all LineNode objects from an InkAnalyzer, theInkAnalyzer, and uses a Polygon to draw the rotated bounding rectangle. The lines are drawn on an InkCanvas, theInkCanvas.
' Loop through all of the lines Dim lines As ContextNodeCollection = _ theInkAnalyzer.FindNodesOfType(ContextNodeType.Line) Dim line As LineNode For Each line In lines ' Convert corners to pixel coordinates Dim lineBounds As New Polygon() lineBounds.Points = line.GetRotatedBoundingBox() lineBounds.Stroke = Brushes.Blue theInkCanvas.Children.Add(lineBounds) Next line
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: