TextAlignment 枚举

定义

指定对象中的文本是左对齐、右对齐、居中还是两端对齐。

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
继承
TextAlignment
属性

字段

Center 2

文本居中。

Justify 3

文本两端对齐。

Left 0

默认。 文本左对齐。

Right 1

文本右对齐。

示例

在以下示例中 TextAlignment , 属性设置为 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>

注解

类的 TextAlignment 枚举值为 Left、Right、Center 和 Justify。

适用于