TableCell.TextAlignment Property
Gets or sets a value that indicates the horizontal alignment of text content. This is a dependency property.
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
<object TextAlignment="TextAlignment" .../>
Property Value
Type: System.Windows.TextAlignmentA member of the TextAlignment enumerations specifying the desired alignment.
The default value is Left.
The following example shows how to set the TextAlignment attribute of a Block element.
<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>
The following figure shows how the previous example renders with Left text alignment (the default).

The following figure shows how the same example renders with Right text alignment.

The following figure shows how the same example renders with Center text alignment.

The following example shows how to set the TextAlignment property programmatically.
Paragraph par = new Paragraph();
par.TextAlignment = TextAlignment.Center;
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.