Figure.HorizontalAnchor プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コンテンツが固定される水平方向の位置を示す値を取得または設定します。
public:
property System::Windows::FigureHorizontalAnchor HorizontalAnchor { System::Windows::FigureHorizontalAnchor get(); void set(System::Windows::FigureHorizontalAnchor value); };
public System.Windows.FigureHorizontalAnchor HorizontalAnchor { get; set; }
member this.HorizontalAnchor : System.Windows.FigureHorizontalAnchor with get, set
Public Property HorizontalAnchor As FigureHorizontalAnchor
プロパティ値
FigureHorizontalAnchor の水平アンカーの場所を指定する Figure 列挙体のメンバー。
既定値は ColumnRight です。
例
次の例は、 要素の 属性を設定する HorizontalAnchor 方法を Figure 示しています。
<FlowDocument>
<Paragraph>
<Figure
Name="myFigure"
Width="140" Height="50"
HorizontalAnchor="PageCenter"
VerticalAnchor="PageCenter"
HorizontalOffset="100"
VerticalOffset="20"
WrapDirection="Both"
/>
</Paragraph>
</FlowDocument>
次の例では、HorizontalAnchor プロパティをプログラムで設定する方法を示しています。
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)
注釈
依存プロパティ情報
識別子フィールド | HorizontalAnchorProperty |
に設定されたメタデータ プロパティ true |
AffectsParentMeasure |
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET