Block.IsHyphenationEnabled Propriedade

Definição

Obtém ou define um valor que indica se a hifenização automática de palavras está habilitada ou desabilitada.

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

Valor da propriedade

Boolean

true se a quebra automática e a hifenização de palavras estiverem habilitadas; caso contrário, false. O padrão é false.

Exemplos

O exemplo a seguir mostra como definir o IsHyphenationEnabled atributo de um Block elemento.

<FlowDocument
  TextAlignment="Justify" 
  IsOptimalParagraphEnabled="True"
  Background="LightGray"
  PageWidth="400" PageHeight="480"
>
  <Paragraph IsHyphenationEnabled="True">
    <Hyperlink NavigateUri="http://www.xbox.com/en-US/games/p/perfectdarkzero/default.htm">
      Perfect Dark Zero
    </Hyperlink>
  </Paragraph>
  <Paragraph IsHyphenationEnabled="True">
    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 IsHyphenationEnabled="True">
    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 IsHyphenationEnabled="True">
    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>

A figura a seguir mostra como o exemplo anterior é renderizado.

Captura de tela: hífen FlowDocument habilitado

A figura a seguir mostra como o mesmo exemplo é renderizado com a configuração padrão de IsHyphenationEnabled=false.

Captura de tela: FlowDocument com hífens desabilitados

O exemplo a seguir mostra como definir a IsHyphenationEnabled propriedade programaticamente.

Paragraph par = new Paragraph();
par.IsEnabled = true;
Dim par As New Paragraph()
par.IsEnabled = True

Comentários

O recurso de hifenização automática de palavras permite que um Block elemento quebre e hifenize palavras automaticamente, com base nas condições atuais de layout. Isso permite que palavras longas comecem em uma linha e continuem nesta próxima e tendem a obter uma distribuição mais uniforme do espaço em branco em texto justificado. As palavras são quebradas e hifenizadas de acordo com as regras gramaticais padrão.

Informações da propriedade de dependência

Campo Identificador IsHyphenationEnabledProperty
Propriedades de metadados definidas como true AffectsMeasure, AffectsRender, Inherits

Aplica-se a