Figure.WrapDirection 屬性

定義

取得或設定值,這個值表示容許內容可以在 Figure 周圍串流的方式。

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

屬性值

WrapDirection

WrapDirection 列舉型別的成員,用來指定容許內容可以在 Figure 周圍串流的方式。

預設值是 Both

範例

下列範例示範如何設定 WrapDirection 專案的 屬性 Figure

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

下列範例示範如何以程式設計方式設定 WrapDirection 屬性。

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)

備註

相依性屬性資訊

識別碼欄位 WrapDirectionProperty
中繼資料屬性設定為 true AffectsParentMeasure

適用於