Figure.Height プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Figure 要素の高さを示す値を取得または設定します。
public:
property System::Windows::FigureLength Height { System::Windows::FigureLength get(); void set(System::Windows::FigureLength value); };
public System.Windows.FigureLength Height { get; set; }
member this.Height : System.Windows.FigureLength with get, set
Public Property Height As FigureLength
プロパティ値
FigureLength の高さの特性を指定する Figure 構造体。
既定値は FigureLength.Value = 1.0 と FigureLength.FigureUnitType = Auto.
例
次の例は、要素の属性を設定する Height 方法を Figure 示しています。
<FlowDocument>
<Paragraph>
<Figure
Name="myFigure"
Width="140" Height="50"
HorizontalAnchor="PageCenter"
VerticalAnchor="PageCenter"
HorizontalOffset="100"
VerticalOffset="20"
WrapDirection="Both"
/>
</Paragraph>
</FlowDocument>
次の例では、Height プロパティをプログラムで設定する方法を示しています。
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)
注釈
依存プロパティ情報
識別子フィールド | HeightProperty |
に設定されたメタデータ プロパティ true |
AffectsMeasure |