FlowDocument.IsOptimalParagraphEnabled Proprietà

Definizione

Ottiene o imposta un valore che indica se il layout ottimale del paragrafo è abilitato o disabilitato.

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

Valore della proprietà

Boolean

true se il layout ottimale del paragrafo è abilitato; in caso contrario, false. Il valore predefinito è false.

Esempio

Nell'esempio seguente viene illustrato come impostare l'attributo IsOptimalParagraphEnabled di un FlowDocument elemento .

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

Nella figura seguente viene illustrato come viene eseguito il rendering precedente FlowDocument .

Schermata: FlowDocument con segni meno abilitati

Nella figura seguente viene illustrato come viene eseguito lo stesso FlowDocument rendering con l'impostazione predefinita di=IsOptimalParagraphEnabledfalse .

Schermata: FlowDocument con segni meno disabilitati

Nell'esempio seguente viene illustrato come impostare la IsOptimalParagraphEnabled proprietà a livello di codice.

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

Commenti

Il layout ottimale dei paragrafi è una funzionalità che dispone i paragrafi in FlowDocument modo che lo spazio vuoto venga distribuito nel modo più uniforme possibile. In teoria, questo offre un'esperienza di lettura ottimizzata eliminando gli spazi vuoti distratti che possono verificarsi con testo giustificato da riga e altre routine di layout. Il layout ottimale del paragrafo è particolarmente efficace quando è associato alla sillabazione automatica (rappresentata dalla IsHyphenationEnabled proprietà ).

Informazioni proprietà di dipendenza

Campo Identificatore IsOptimalParagraphEnabledProperty
Proprietà dei metadati impostate su true AffectsMeasure

Si applica a