Share via


LineNode Class

Represents a ContextNode for a line of words.

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

Syntax

'Declaration
Public NotInheritable Class LineNode _
    Inherits ContextNode
'Usage
Dim instance As LineNode
public sealed class LineNode : ContextNode
public ref class LineNode sealed : public ContextNode
public final class LineNode extends ContextNode

Remarks

A LineNode object can contain the following types of children:

Examples

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
// Loop through all of the lines
ContextNodeCollection lines =
    theInkAnalyzer.FindNodesOfType(ContextNodeType.Line);
foreach (LineNode line in lines)
{
    // Show rotated bounding box in blue
    Polygon lineBounds = new Polygon();

    lineBounds.Points = line.GetRotatedBoundingBox();
    lineBounds.Stroke = Brushes.Blue;

    theInkCanvas.Children.Add(lineBounds);
}

Inheritance Hierarchy

System.Object
  System.Windows.Ink.ContextNode
    System.Windows.Ink.LineNode

Thread Safety

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

Platforms

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.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

LineNode Members

System.Windows.Ink Namespace