Figure.Width 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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 구조체입니다.
기본값은 FigureLength.Value = 1.0 및 FigureLength.FigureUnitType = Auto.
예제
다음 예제에서는 설정 하는 방법을 보여 줍니다 합니다 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 |