Block.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 l'alignement horizontal de contenu texte.
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 Block élément.
<FlowDocument>
<Paragraph Background="GhostWhite" TextAlignment="Center">
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>
La figure suivante montre comment l’exemple précédent s’affiche avec Left l’alignement du texte (la valeur par défaut).
La figure suivante montre comment le même exemple s’affiche avec l’alignement du Right texte.
La figure suivante montre comment le même exemple s’affiche avec l’alignement du Center texte.
L’exemple suivant montre comment définir la TextAlignment propriété par programmation.
Paragraph par = new Paragraph();
par.TextAlignment = TextAlignment.Center;
Dim par As New Paragraph()
par.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 |