閱讀英文

共用方式為


WrapDirection 列舉

定義

指定內容迴繞物件時可使用的方向。

C#
public enum WrapDirection
繼承
WrapDirection

欄位

Both 3

使內容迴繞物件的兩邊。

Left 1

僅使內容迴繞物件的左邊。

None 0

不使內容迴繞物件。

Right 2

僅使內容迴繞物件的右邊。

範例

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

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

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

C#
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);

適用於

產品 版本
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
Windows Desktop 3.0, 3.1, 5, 6, 7