Figure.VerticalOffset 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出 Figure 在垂直方向相對於其基準的位移距離。
public:
property double VerticalOffset { double get(); void set(double value); };
[System.ComponentModel.TypeConverter(typeof(System.Windows.LengthConverter))]
public double VerticalOffset { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Windows.LengthConverter))>]
member this.VerticalOffset : double with get, set
Public Property VerticalOffset As Double
屬性值
Figure 在垂直方向相對於其基準的位移距離 (以裝置獨立畫素為單位)。
預設值是 0.0。
- 屬性
範例
下列範例示範如何設定 VerticalOffset 專案的 屬性 Figure 。
<FlowDocument>
<Paragraph>
<Figure
Name="myFigure"
Width="140" Height="50"
HorizontalAnchor="PageCenter"
VerticalAnchor="PageCenter"
HorizontalOffset="100"
VerticalOffset="20"
WrapDirection="Both"
/>
</Paragraph>
</FlowDocument>
下列範例示範如何以程式設計方式設定 VerticalOffset 屬性。
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)
備註
XAML Attribute Usage
<object VerticalOffset="double"/>
- or -
<object VerticalOffset="qualifiedDouble"/>
XAML 值
double
Double
值等於或大於0.0但小於 PositiveInfinity 的 Double 字串表示。 不合格的值是以裝置獨立圖元來測量。 字串不需要明確包含小數點。
qualifiedDouble
如上所述的 雙精度 浮點數,除了) 後面接著下列其中一個單位規範以外 Auto
, (: px
、、 in
、 cm
pt
。
px
(預設) 是裝置獨立單位 (,每個單位 1/96 英吋)
in
為英吋;1in==96px
cm
為公分;1cm== (96/2.54) px
pt
為點;1pt== (96/72) px
相依性屬性資訊
識別碼欄位 | VerticalOffsetProperty |
設定為 的中繼資料屬性 true |
AffectsParentMeasure |