FlowDocument.TextAlignment Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit une valeur qui indique l’alignement horizontal du contenu textuel.
public:
property System::Windows::TextAlignment TextAlignment { System::Windows::TextAlignment get(); void set(System::Windows::TextAlignment value); };
public System.Windows.TextAlignment TextAlignment { get; set; }
member this.TextAlignment : System.Windows.TextAlignment with get, set
Public Property TextAlignment As TextAlignment
Valeur de propriété
Une des valeurs TextAlignment qui spécifie l’alignement souhaité. La valeur par défaut est Left.
Exemples
L’exemple suivant montre comment définir l’attribut TextAlignment d’un FlowDocument élément.
<FlowDocumentReader>
<FlowDocument
TextAlignment="Center"
>
<Paragraph Background="GhostWhite">
One<LineBreak/>
two two<LineBreak/>
Three Three Three<LineBreak/>
four four four four<LineBreak/>
Five Five Five Five Five<LineBreak/>
six six six six six six<LineBreak/>
Seven Seven Seven Seven Seven Seven Seven<LineBreak/>
eight eight eight eight eight eight eight eight
</Paragraph>
</FlowDocument>
</FlowDocumentReader>
L’illustration suivante montre comment le rendu précédent FlowDocument avec l’alignement Left du texte (la valeur par défaut).
La figure suivante montre comment le même FlowDocument rendu avec l’alignement du Right texte.
La figure suivante montre comment le même FlowDocument rendu avec l’alignement du Center texte.
L’exemple suivant montre comment définir la TextAlignment propriété par programmation.
FlowDocument flowDoc = new FlowDocument(new Paragraph(new Run("A bit of text content...")));
// Text will be centered.
flowDoc.TextAlignment = TextAlignment.Center;
Dim flowDoc As New FlowDocument(New Paragraph(New Run("A bit of text content...")))
' Text will be centered.
flowDoc.TextAlignment = TextAlignment.Center
Remarques
Informations sur les propriétés de dépendance
Champ Identificateur | TextAlignmentProperty |
Propriétés de métadonnées définies sur true |
AffectsMeasure, AffectsRender, Inherits |