Figure.Width 屬性

定義

取得或設定值,這個值表示 Figure 項目的寬度。

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

屬性值

FigureLength 結構,指定 Figure 的寬度特性。

預設值為 FigureLengthValue = 1.0FigureLength . AutoFigureUnitType = .

範例

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

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

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

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)

備註

相依性屬性資訊

識別碼欄位 WidthProperty
設定為 的中繼資料屬性 true AffectsMeasure

適用於