FlowDocument.PageWidth プロパティ

定義

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 されます。 3 つのプロパティすべてが特定のページに設定されている場合、これはプロパティが評価される順序です。

XAML 属性の使用方法

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

XAML 値

double
Double

0.0 以上で より小さいDouble.PositiveInfinity値の文字列表現Double。 非修飾値は、デバイスに依存しないピクセル単位で測定されます。 文字列に明示的に小数点を含める必要はありません。

qualifiedDouble
上で説明した double 値の後に、次のいずれかの単位指定子 px(、in、、 cmpt) が続きます。

px (既定値) はデバイスに依存しない単位 (1 ユニットあたり 1/96 インチ) です

in はインチ。1in==96px

cm はセンチメートルです。1cm==(96/2.54) px

pt はポイント。1pt==(96/72) px

自動
ページ幅を自動的に決定します。 のプロパティ値 Double.NaNに相当します。

依存プロパティ情報

識別子フィールド PageWidthProperty
に設定されたメタデータ プロパティ true AffectsMeasure

適用対象