Figure.Width Propiedad

Definición

Obtiene o establece un valor que indica el ancho de un elemento Figure.

C#
public System.Windows.FigureLength Width { get; set; }

Valor de propiedad

Estructura FigureLength que especifica las características de ancho para Figure.

El valor predeterminado es FigureLength.Value = 1.0 y FigureLength.AutoFigureUnitType = .

Ejemplos

En el ejemplo siguiente se muestra cómo establecer el Width atributo de un Figure elemento .

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

En el ejemplo siguiente se muestra cómo establecer la propiedad Width mediante programación.

C#
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);

Comentarios

Información sobre propiedades de dependencia

Campo identificador WidthProperty
Propiedades de metadatos establecidas en true AffectsMeasure

Se aplica a

Producto Versiones
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9