TextDecoration.PenOffset プロパティ

定義

Location からの文字装飾のオフセットを取得または設定します。

public:
 property double PenOffset { double get(); void set(double value); };
public double PenOffset { get; set; }
member this.PenOffset : double with get, set
Public Property PenOffset As Double

プロパティ値

Double

Location からの文字装飾のオフセット。 既定値は 0 です。

PenOffset プロパティを設定する方法を次のコード例に示します。

// Move the text decoration lower using pixel value units.
myUnderline.PenOffset = 2;
myUnderline.PenOffsetUnit = TextDecorationUnit.Pixel;
myUnderline.PenThicknessUnit = TextDecorationUnit.Pixel;
' Move the text decoration lower using pixel value units.
myUnderline.PenOffset = 2
myUnderline.PenOffsetUnit = TextDecorationUnit.Pixel
myUnderline.PenThicknessUnit = TextDecorationUnit.Pixel
<!-- Move the text decoration lower using pixel value units. -->
<TextDecoration PenOffset="2" PenOffsetUnit="Pixel" PenThicknessUnit="Pixel" />

注釈

負の値を指定すると、テキスト装飾が高くなり、正の値を指定するとテキスト装飾が下に移動します。 このプロパティを PenOffsetUnit 使用して、この値の単位を解釈する方法を指定します。

依存プロパティ情報

識別子フィールド PenOffsetProperty
メタデータのプロパティが次に設定されている true なし

適用対象

こちらもご覧ください