TextAlignment Énumération

Définition

Spécifie si le texte dans l'objet est aligné à gauche, aligné à droite, centré ou justifié.

public enum class TextAlignment
[System.Windows.Localizability(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)]
public enum TextAlignment
[<System.Windows.Localizability(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)>]
type TextAlignment = 
Public Enum TextAlignment
Héritage
TextAlignment
Attributs

Champs

Center 2

Le texte est centré.

Justify 3

Le texte est justifié.

Left 0

Par défaut. Le texte est aligné à gauche.

Right 1

Le texte est aligné à droite.

Exemples

Dans l’exemple suivant, la TextAlignment propriété est définie sur Left.

<FlowDocumentReader>
  <FlowDocument
    FontSize="24"
    LineHeight="48"
  >
    <Paragraph TextAlignment="Left" Background="AliceBlue">
      One<LineBreak/>
      two two<LineBreak/>
      Three Three Three<LineBreak/>
      four four four four<LineBreak/>
      Five Five Five Five Five
    </Paragraph>
  </FlowDocument>
</FlowDocumentReader>

Remarques

Les valeurs énumérées de la TextAlignment classe sont Left, Right, Center et Justifie.

S’applique à