Figure.Width Propriété

Définition

Obtient ou définit une valeur qui indique la largeur d'un élément 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

Valeur de propriété

Structure FigureLength spécifiant les caractéristiques de largeur de Figure.

La valeur par défaut est FigureLength.Value = 1.0 et FigureLength.AutoFigureUnitType = .

Exemples

L’exemple suivant montre comment définir l’attribut Width d’un Figure élément.

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

L’exemple suivant montre comment définir la Width propriété par programmation.

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)

Remarques

Informations sur les propriétés de dépendance

Champ Identificateur WidthProperty
Propriétés de métadonnées définies sur true AffectsMeasure

S’applique à