バージョン

TextAlignment プロパティ

テキストの水平揃えを指定します。デフォルトは、HorizontalContentAlignment プロパティ設定でテキスト揃えをベースにしています。
シンタックス
'宣言
 
Public Property TextAlignment As TextAlignment
public TextAlignment TextAlignment {get; set;}
使用例
<igEditors:XamTextEditor x:Name="leftAlignTextEditor" TextAlignment="Left" Value="Left Aligned Text" />
        
<igEditors:XamTextEditor x:Name="centerAlignTextEditor" TextAlignment="Center" Value="Center Aligned Text" />
        
<igEditors:XamTextEditor x:Name="rightAlignTextEditor" TextAlignment="Right" Value="Right Aligned Text" />

<igEditors:XamTextEditor x:Name="justifyAlignTextEditor" 
        
TextAlignment="Justify" 
        
Width="100" Height="100"
        
TextWrapping="Wrap" 
      
Value="Right Aligned Text. Value has to wrap multiple lines for Justify alignment to have any effect."  /> 
参照