FigureHorizontalAnchor Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Describes a position reference for a figure in a horizontal direction.
public enum class FigureHorizontalAnchor
public enum FigureHorizontalAnchor
type FigureHorizontalAnchor =
Public Enum FigureHorizontalAnchor
- Inheritance
Fields
Name | Value | Description |
---|---|---|
PageLeft | 0 | Anchor the figure to the left of the page area. |
PageCenter | 1 | Anchor the figure in the center of the page area. |
PageRight | 2 | Anchor the figure to the right of the page area. |
ContentLeft | 3 | Anchor the figure to the left of the page content area. |
ContentCenter | 4 | Anchor the figure in the center of the page content area. |
ContentRight | 5 | Anchor the figure to the right of the page content area. |
ColumnLeft | 6 | Anchor the figure to the left of the column content area. |
ColumnCenter | 7 | Anchor the figure in the center of the column content area. |
ColumnRight | 8 | Anchor the figure to the right of the column content area. |
Examples
The following example shows how to set the HorizontalOffset 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 HorizontalOffset 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);
Dim figx As New Figure()
With figx
.Name = "myFigure"
.Width = New FigureLength(140)
.Height = New FigureLength(50)
.HorizontalAnchor = FigureHorizontalAnchor.PageCenter
.VerticalAnchor = FigureVerticalAnchor.PageCenter
.HorizontalOffset = 100
.VerticalOffset = 20
.WrapDirection = WrapDirection.Both
End With
Dim parx As New Paragraph(figx)
Dim flowDoc As New FlowDocument(parx)