FlowDocument.IsOptimalParagraphEnabled Eigenschaft

Definition

Ruft einen Wert ab, mit dem angegeben wird, ob das optimale Absatzlayout aktiviert oder deaktiviert ist, oder legt diesen Wert fest.

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

Eigenschaftswert

Boolean

true, wenn das optimale Absatzlayout aktiviert ist, andernfalls false. Der Standardwert ist false.

Beispiele

Im folgenden Beispiel wird gezeigt, wie das IsOptimalParagraphEnabled Attribut eines FlowDocument Elements festgelegt wird.

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

In der folgenden Abbildung wird gezeigt, wie die vorherigen FlowDocument Renderungen ausgeführt werden.

Bildschirmabbildung: Flussdokument mit aktivierten Bindestrichen

In der folgenden Abbildung wird gezeigt, wie das gleiche FlowDocument Rendern mit der Standardeinstellung von=IsOptimalParagraphEnabledfalse .

Bildschirmabbildung: Flussdokument mit deaktivierten Bindestrichen

Im folgenden Beispiel wird gezeigt, wie Sie die IsOptimalParagraphEnabled Eigenschaft programmgesteuert festlegen.

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

Hinweise

Das optimale Absatzlayout ist ein Feature, das Absätze so FlowDocument verteilt, dass Leerzeichen so gleichmäßig verteilt werden. Dies bietet theoretisch eine optimierte Leseerfahrung, indem ablenkender Leerraum entfernt werden kann, der mit zeilengeschützten Text und anderen Layoutroutinen auftreten kann. Optimale Absatzlayout ist besonders effektiv, wenn sie mit der automatischen Bindestrichung (dargestellt durch die IsHyphenationEnabled Eigenschaft) gekoppelt sind.

Informationen zur Abhängigkeitseigenschaft

Bezeichnerfeld IsOptimalParagraphEnabledProperty
Metadateneigenschaften auf true festgelegt AffectsMeasure

Gilt für