WrapDirection Enumeration
.NET Framework 3.0
Specifies the allowable directions that content can wrap around an object.
Namespace: System.Windows
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
The following example shows how to set the WrapDirection attribute of a Figure element.
<FlowDocument> <Paragraph> <Figure Name="myFigure" Width="140" Height="50" HorizontalAnchor="PageCenter" VerticalAnchor="PageCenter" HorizontalOffset="100" VerticalOffset="20" WrapDirection="Both" /> </Paragraph> </FlowDocument>
The following example shows how to set the WrapDirection property programmatically.
Figure figx = new Figure(); figx.Name = "myFigure"; figx.Width = new FigureLength(140); figx.Height = new FigureLength(50); figx.HorizontalAnchor = FigureHorizontalAnchor.PageCenter; figx.VerticalAnchor = FigureVerticalAnchor.PageCenter; figx.HorizontalOffset = 100; figx.VerticalOffset = 20; figx.WrapDirection = WrapDirection.Both; Paragraph parx = new Paragraph(figx); FlowDocument flowDoc = new FlowDocument(parx);
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: