Figure.WrapDirection Właściwość

Definicja

Pobiera lub ustawia wartość wskazującą dozwolone sposoby przepływu zawartości wokół Figureelementu .

public:
 property System::Windows::WrapDirection WrapDirection { System::Windows::WrapDirection get(); void set(System::Windows::WrapDirection value); };
public System.Windows.WrapDirection WrapDirection { get; set; }
member this.WrapDirection : System.Windows.WrapDirection with get, set
Public Property WrapDirection As WrapDirection

Wartość właściwości

WrapDirection

Element członkowski wyliczenia WrapDirection określający dozwolone sposoby, w jaki zawartość może przepływać wokół Figureelementu .

Wartość domyślna to Both.

Przykłady

W poniższym przykładzie pokazano, jak ustawić WrapDirection atrybut Figure elementu.

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

W poniższym przykładzie pokazano, jak programowo ustawić WrapDirection właściwość.

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)

Uwagi

Informacje dotyczące właściwości zależności

Pole identyfikatora WrapDirectionProperty
Właściwości metadanych ustawione na true AffectsParentMeasure

Dotyczy