Floater.Width Property

Definition

Gets or sets a value that indicates the width of a Floater object.

public:
 property double Width { double get(); void set(double value); };
[System.ComponentModel.TypeConverter(typeof(System.Windows.LengthConverter))]
public double Width { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Windows.LengthConverter))>]
member this.Width : double with get, set
Public Property Width As Double

Property Value

The width of the Floater, in device independent pixels. The default value is NaN (equivalent to an attribute value of Auto), which indicates that the line height is determined automatically.

Attributes

Examples

The following example shows how to set the Width attribute of a Floater element.

<FlowDocument>
  <Paragraph>
    <Floater
      Name="myFloater"              
      Width="140" 
      HorizontalAlignment="Left"
    />
  </Paragraph>
</FlowDocument>
Floater flotx = new Floater();
flotx.Name = "myFloater";
flotx.Width = 100;
flotx.HorizontalAlignment = HorizontalAlignment.Left;

Paragraph parx = new Paragraph(flotx);
FlowDocument flowDoc = new FlowDocument(parx);
Dim flotx As New Floater()
flotx.Name = "myFloater"
flotx.Width = 100
flotx.HorizontalAlignment = HorizontalAlignment.Left

Dim parx As New Paragraph(flotx)
Dim flowDoc As New FlowDocument(parx)

Remarks

XAML Attribute Usage

<object Width="double"/>  
- or -  
<object Width="qualifiedDouble"/>  
- or -  
<object Width="Auto"/>  

XAML Values

double
Double

A string representation of a Double value equal to or greater than 0.0 but smaller than PositiveInfinity. An unqualified value is measured in device-independent units (1/96th inch per unit). Strings need not explicitly include decimal points.

qualifiedDouble
A double value as described above, (except Auto) followed by one of the following unit specifiers: px, in, cm, pt.

px (default) is device-independent units (1/96th inch per unit)

in is inches; 1in==96px

cm is centimeters; 1cm==(96/2.54) px

pt is points; 1pt==(96/72) px

Auto
Causes the width to be determined automatically. Equivalent to a property value of NaN.

Dependency Property Information

Identifier field WidthProperty
Metadata properties set to true AffectsMeasure

Applies to