FigureHorizontalAnchor 列挙型

定義

図形の水平方向の位置の基準を示します。

public enum class FigureHorizontalAnchor
public enum FigureHorizontalAnchor
type FigureHorizontalAnchor = 
Public Enum FigureHorizontalAnchor
継承
FigureHorizontalAnchor

フィールド

ColumnCenter 7

列のコンテンツ領域の中央に図形を固定します。

ColumnLeft 6

列のコンテンツ領域の左端に図形を固定します。

ColumnRight 8

列のコンテンツ領域の右端に図形を固定します。

ContentCenter 4

ページのコンテンツ領域の中央に図形を固定します。

ContentLeft 3

ページのコンテンツ領域の左端に図形を固定します。

ContentRight 5

ページのコンテンツ領域の右端に図形を固定します。

PageCenter 1

ページ領域の中央に図形を固定します。

PageLeft 0

ページ領域の左端に図形を固定します。

PageRight 2

ページ領域の右端に図形を固定します。

次の例は、 要素の 属性を HorizontalOffset 設定する方法を Figure 示しています。

<FlowDocument>
  <Paragraph>
    <Figure
      Name="myFigure"              
      Width="140" Height="50" 
      HorizontalAnchor="PageCenter"
      VerticalAnchor="PageCenter"
      HorizontalOffset="100" 
      VerticalOffset="20" 
      WrapDirection="Both"
      />
  </Paragraph>
</FlowDocument>

次の例では、HorizontalOffset プロパティをプログラムで設定する方法を示しています。

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)

適用対象