|
Este artículo se tradujo de forma manual. Mueva el puntero sobre las frases del artículo para ver el texto original.
|
Traducción
Original
|
FlowDocument.PageWidth (Propiedad)
Ensamblado: PresentationFramework (en PresentationFramework.dll)
XMLNS para XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
<object PageWidth="double"/> - or - <object PageWidth="qualifiedDouble"/> - or - <object PageWidth="Auto"/>
Valores XAML
Valor de propiedad
Tipo: System.Double<FlowDocumentReader> <FlowDocument PageHeight="Auto" PageWidth="Auto" MinPageHeight="3in" MinPageWidth="5in" MaxPageHeight="6in" MaxPageWidth="10in" > <Paragraph Background="BlanchedAlmond"> This uses automatic page sizing with minimum page size of 3 by 5 inches, and a maximum page size of 6 by 10 inches. </Paragraph> </FlowDocument> </FlowDocumentReader>
FlowDocument flowDoc = new FlowDocument(new Paragraph(new Run("A bit of text content..."))); // Set PageHeight and PageWidth to "Auto". flowDoc.PageHeight = Double.NaN; flowDoc.PageWidth = Double.NaN; // Specify minimum page sizes. flowDoc.MinPageWidth = 680.0; flowDoc.MinPageHeight = 480.0; //Specify maximum page sizes. flowDoc.MaxPageWidth = 1024.0; flowDoc.MaxPageHeight = 768.0;
Windows 7, Windows Vista SP1 o posterior, Windows XP SP3, Windows Server 2008 (no se admite Server Core), Windows Server 2008 R2 (se admite Server Core con SP1 o posterior), Windows Server 2003 SP2
.NET Framework no admite todas las versiones de todas las plataformas. Para obtener una lista de las versiones compatibles, vea Requisitos de sistema de .NET Framework.