RichTextBox for WPF
テキスト揃え機能
RichTextBox for WPF の使い方 > カスタムコマンドバー > テキスト揃え機能

テキスト揃え機能The following code snippets demonstrate the code used for aligning text:

左揃え

C#
コードのコピー
rtb.Selection.TextAlignment = C1TextAlignment.Left;

中央揃え

C#
コードのコピー
rtb.Selection.TextAlignment = C1TextAlignment.Center;

右揃え

C#
コードのコピー
rtb.Selection.TextAlignment = C1TextAlignment.Right;

両端揃え

C#
コードのコピー
rtb.Selection.TextAlignment = C1TextAlignment.Justify;