Floater.Width Property
.NET Framework 3.5
Gets or sets a value that indicates the width of a Floater object. This is a dependency property.
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
<object Width="double"/> - or - <object Width="qualifiedDouble"/> - or - <object Width="Auto"/>
XAML Values
Property Value
Type: System.DoubleThe 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.
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);
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.