FlowDocument.IsOptimalParagraphEnabled プロパティ

定義

最適な段落レイアウトが有効かどうかを示す値を取得または設定します。

public:
 property bool IsOptimalParagraphEnabled { bool get(); void set(bool value); };
public bool IsOptimalParagraphEnabled { get; set; }
member this.IsOptimalParagraphEnabled : bool with get, set
Public Property IsOptimalParagraphEnabled As Boolean

プロパティ値

Boolean

最適な段落レイアウトが有効である場合は true。それ以外の場合は false。 既定値は、false です。

次の例は、要素の属性を設定する IsOptimalParagraphEnabled 方法を FlowDocument 示しています。

<FlowDocumentReader>
  <FlowDocument
    TextAlignment="Justify" 
    IsHyphenationEnabled="True"
    IsOptimalParagraphEnabled="True"
    Background="LightGray"
    PageWidth="400" PageHeight="480"
  >
    <Paragraph>
      <Hyperlink NavigateUri="http://www.xbox.com/en-US/games/p/perfectdarkzero/default.htm">
        Perfect Dark Zero
      </Hyperlink>
    </Paragraph>
    <Paragraph>
      Joanna Dark returns in the Xbox 360 exclusive <Bold><Italic>Perfect Dark Zero</Italic></Bold>, the 
      prequel to the internationally award-winning and multi-million selling first-person shooter 
      <Italic>Perfect Dark</Italic> from famed game developer Rare.
    </Paragraph>
    <Paragraph>
      A secret war has begun between shadowy corporations bent on world domination. Joanna Dark and her father 
      Jack are caught up in the fight for the future of the planet. A routine bounty hunting mission rips open 
      a global conspiracy that will change Joanna's destiny—forever.
    </Paragraph>
    <Paragraph>
      Guide Joanna Dark on her journey to become the perfect agent. Featuring a compelling and captivating story, 
      <Italic>Perfect Dark Zero</Italic> plunges you into a world of corporate espionage and conspiracy. The title 
      merges the excitement and intrigue of its predecessor with revolutionary game design, cutting-edge online play,
      and amazing graphics to deliver an experience that defines next-generation gaming and entertainment...
    </Paragraph>
  </FlowDocument>
</FlowDocumentReader>

次の図は、上記のレンダリング方法を FlowDocument 示しています。

スクリーンショット: ハイフンが有効になった FlowDocument

次の図は、既定の設定IsOptimalParagraphEnabled=falseで同じFlowDocumentレンダリングを行う方法を示しています。

スクリーンショット: ハイフンが無効になった FlowDocument

次の例では、IsOptimalParagraphEnabled プロパティをプログラムで設定する方法を示しています。

FlowDocument flowDoc = new FlowDocument(new Paragraph(new Run("A bit of text content...")));

// Enable automatic hyphenation.
flowDoc.IsHyphenationEnabled = true;
// Enable optimal paragraph layout.
flowDoc.IsOptimalParagraphEnabled = true;
Dim flowDoc As New FlowDocument(New Paragraph(New Run("A bit of text content...")))

' Enable automatic hyphenation.
flowDoc.IsHyphenationEnabled = True
' Enable optimal paragraph layout.
flowDoc.IsOptimalParagraphEnabled = True

注釈

最適な段落レイアウトは、可能な限り均等に空白が分散されるように、段落 FlowDocument をレイアウトする機能です。 理論的には、これは、行義テキストやその他のレイアウト ルーチンで発生する可能性のある気を散らす空白を排除することで、最適化された読み取りエクスペリエンスを提供します。 最適な段落レイアウトは、自動ハイフネーション (プロパティで表される) と組み合わせて使用する場合に特に IsHyphenationEnabled 有効です。

依存プロパティ情報

識別子フィールド IsOptimalParagraphEnabledProperty
メタデータのプロパティが次に設定されている true AffectsMeasure

適用対象