FlowDocument.PageWidth 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 FlowDocument 中的首选页宽。
public:
property double PageWidth { double get(); void set(double value); };
[System.ComponentModel.TypeConverter(typeof(System.Windows.LengthConverter))]
public double PageWidth { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Windows.LengthConverter))>]
member this.PageWidth : double with get, set
Public Property PageWidth As Double
属性值
FlowDocument 中的首选页宽,以与设备无关的像素为单位。 如果值为 NaN (等效于属性值“Auto
”),则页宽自动确定。 默认为 NaN。
- 属性
示例
以下示例演示如何设置 PageWidth 元素的 FlowDocument 属性。
<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>
以下示例演示如何以编程方式设置 PageWidth 属性。
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;
Dim flowDoc As 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
注解
如果在连续图上查看,则 MinPageWidth 属性优先于 MaxPageWidth 属性,后者又优先于 PageWidth 属性。 如果在给定页面上设置了所有三个属性,则这是计算属性的顺序。
XAML 属性用法
<object PageWidth="double"/>
- or -
<object PageWidth="qualifiedDouble"/>
- or -
<object PageWidth="Auto"/>
XAML 值
double
Double
值等于或大于 0.0 但小于 Double.PositiveInfinity的字符串表示形式Double。 非限定值以与设备无关的像素度量。 字符串不需要显式包含小数点。
qualifiedDouble
如上所述的 双精度 值,后跟以下单位说明符之一: px
、 in
、 cm
、 pt
。
px
(默认) 是与设备无关的单位, (单位) 1/96 英寸
in
为英寸;1in==96px
cm
为厘米;1cm== (96/2.54) px
pt
是磅;1pt== (96/72) px
Auto
使页面宽度自动确定。 等效于 的 Double.NaN属性值。
依赖项属性信息
标识符字段 | PageWidthProperty |
元数据属性设置为 true |
AffectsMeasure |