This documentation is archived and is not being maintained.

LineNode Class

Represents a ContextNode for a line of words.

Namespace:  System.Windows.Ink
Assembly:  IAWinFX (in IAWinFX.dll)

'Declaration
Public NotInheritable Class LineNode _
	Inherits ContextNode
'Usage
Dim instance As LineNode

A LineNode object can contain the following types of children:

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

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

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.

.NET Framework

Supported in: 3.0
Show: