FlowDocument.IsOptimalParagraphEnabled Propriété

Définition

Obtient ou définit une valeur qui indique si la disposition optimale de paragraphe est activée ou désactivée.

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

Valeur de propriété

Boolean

true si la disposition optimale de paragraphe est activée ; sinon, false. La valeur par défaut est false.

Exemples

L’exemple suivant montre comment définir l’attribut IsOptimalParagraphEnabled d’un FlowDocument élément.

<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>

La figure suivante montre comment le rendu précédent FlowDocument s’affiche.

Capture d'écran : FlowDocument avec tiret activé

La figure suivante montre comment le même FlowDocument rendu avec le paramètre par défaut de IsOptimalParagraphEnabled=false.

Capture d'écran : FlowDocument avec tirets désactivés

L’exemple suivant montre comment définir la IsOptimalParagraphEnabled propriété par programmation.

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

Remarques

La disposition optimale des paragraphes est une fonctionnalité qui présente des paragraphes dans le FlowDocument cas où l’espace blanc est distribué aussi uniformément que possible. Théoriquement, cela offre une expérience de lecture optimisée en éliminant l’espace blanc distrait qui peut se produire avec du texte justifié par ligne et d’autres routines de disposition. La disposition optimale des paragraphes est particulièrement efficace lorsqu’elle est associée à une coupure automatique (représentée par la IsHyphenationEnabled propriété).

Informations sur les propriétés de dépendance

Champ d’identificateur IsOptimalParagraphEnabledProperty
Propriétés de métadonnées définies sur true AffectsMeasure

S’applique à