Aracılığıyla paylaş


Figure.HorizontalAnchor Özellik

Tanım

İçeriğin yatay yönde sabitlendiği konumu gösteren bir değeri alır veya ayarlar.

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

Özellik Değeri

FigureHorizontalAnchor

için yatay bir sabit noktası konumu Figurebelirten sabit listesi üyesiFigureHorizontalAnchor.

ColumnRight varsayılan değerdir.

Örnekler

Aşağıdaki örnekte bir Figure öğenin özniteliğinin HorizontalAnchor nasıl ayarlanacağı gösterilmektedir.

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

Aşağıdaki örnekte özelliğin HorizontalAnchor program aracılığıyla nasıl ayarlanacağı gösterilmektedir.

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)

Açıklamalar

Bağımlılık Özelliği Bilgileri

Tanımlayıcı alanı HorizontalAnchorProperty
Meta veri özellikleri olarak ayarlandı true AffectsParentMeasure

Şunlara uygulanır