ParagraphNode Class
.NET Framework 3.0
Represents a ContextNode for a collection of ContextNode objects that make up a logical grouping of lines.
Namespace: System.Windows.Ink
Assembly: IAWinFX (in iawinfx.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
Assembly: IAWinFX (in iawinfx.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
The exact definition of a paragraph is determined by the analyzing engines, but in general, a paragraph contains groups of lines that should reflow together.
A ParagraphNode object can contain any number of the following types of children:
-
LineNode objects.
-
InkBulletNode objects.
The following example takes all of the LineNode objects in the ContextNode tree of an InkAnalyzer, theInkAnalyzer, and puts them in their own ParagraphNode objects.
' Take each line and make it its own paragraph Dim originalParagraphs As ContextNodeCollection = _ theInkAnalyzer.FindNodesOfType(ContextNodeType.Paragraph) Dim lines As ContextNodeCollection = _ theInkAnalyzer.FindNodesOfType(ContextNodeType.Line) For Each lineNode As ContextNode In lines ' Create a new paragraph Dim paragraph As ContextNode = lineNode.ParentNode Dim writingRegion As ContextNode = paragraph.ParentNode Dim newParagraph As ParagraphNode = CType(writingRegion.CreateSubNode(ContextNodeType.Paragraph), ParagraphNode) ' Reparent the line lineNode.Reparent(newParagraph) Next lineNode ' Remove original paragraphs For Each originalParagraph As ContextNode In originalParagraphs Dim originalWritingRegion As ContextNode = originalParagraph.ParentNode originalWritingRegion.DeleteSubNode(originalParagraph) Next originalParagraph
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: