Figure.VerticalAnchor Property
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.
Gets or sets a value that indicates the position that content is anchored to in the vertical direction.
public:
property System::Windows::FigureVerticalAnchor VerticalAnchor { System::Windows::FigureVerticalAnchor get(); void set(System::Windows::FigureVerticalAnchor value); };
public System.Windows.FigureVerticalAnchor VerticalAnchor { get; set; }
member this.VerticalAnchor : System.Windows.FigureVerticalAnchor with get, set
Public Property VerticalAnchor As FigureVerticalAnchor
Property Value
A member of the FigureVerticalAnchor enumeration specifying a vertical anchor location for the Figure.
The default value is ParagraphTop.
Examples
The following example shows how to set the VerticalAnchor 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 VerticalAnchor 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)
Remarks
Dependency Property Information
Identifier field | VerticalAnchorProperty |
Metadata properties set to true |
AffectsParentMeasure |