FlowDocument.IsOptimalParagraphEnabled Propiedad

Definición

Obtiene o establece un valor que indica si el diseño de párrafos óptimo está habilitado o deshabilitado.

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

Valor de propiedad

Boolean

true si el diseño de párrafos óptimo está habilitado; de lo contrario, false. De manera predeterminada, es false.

Ejemplos

En el ejemplo siguiente se muestra cómo establecer el IsOptimalParagraphEnabled atributo de 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>

En la ilustración siguiente se muestra cómo se representa el anterior FlowDocument .

Captura de pantalla: FlowDocument con guiones habilitados

En la ilustración siguiente se muestra cómo se representa el mismo FlowDocument con la configuración predeterminada de=IsOptimalParagraphEnabledfalse .

Captura de pantalla: FlowDocument con guiones deshabilitados

En el ejemplo siguiente se muestra cómo establecer la IsOptimalParagraphEnabled propiedad mediante programación.

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

Comentarios

El diseño óptimo de párrafo es una característica que presenta párrafos en para FlowDocument que el espacio en blanco se distribuya lo más uniformemente posible. En teoría, esto proporciona una experiencia de lectura optimizada mediante la eliminación de espacios en blanco distraídos que pueden producirse con texto justificado por líneas y otras rutinas de diseño. El diseño óptimo de párrafo es especialmente eficaz cuando se acopla con guiones automáticos (representados por la IsHyphenationEnabled propiedad ).

Información sobre propiedades de dependencia

Campo identificador IsOptimalParagraphEnabledProperty
Propiedades de metadatos establecidas en true AffectsMeasure

Se aplica a