英語で読む 編集

次の方法で共有


FigureVerticalAnchor 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 the point of reference of a figure in the vertical direction.

C#
public enum FigureVerticalAnchor
Inheritance
FigureVerticalAnchor

Fields

Name Value Description
PageTop 0

Anchor the figure to the top of the page area.

PageCenter 1

Anchor the figure to the center of the page area.

PageBottom 2

Anchor the figure to the bottom of the page area.

ContentTop 3

Anchor the figure to the top of the page content area.

ContentCenter 4

Anchor the figure to the center of the page content area.

ContentBottom 5

Anchor the figure to the bottom of the page content area.

ParagraphTop 6

Anchor the figure to the top of the current paragraph.

Examples

The following example shows how to set the VerticalAnchor attribute of a Figure element.

XAML
<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.

C#
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);

Remarks

The term content, as it pertains to the members below, refers to the page minus the page padding or in other words the content is everything inside of the page padding.

Applies to

製品 バージョン
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10