GrapeCity ActiveReports for .NET 14.0J
SelectionHangingIndent プロパティ
使用例 

GrapeCity.ActiveReports アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > RichTextBox クラス : SelectionHangingIndent プロパティ
選択されている段落の最初のテキスト行の左端から、同じ段落の後続行の左端までの距離を取得または設定します。
シンタックス
'宣言
 
Public Property SelectionHangingIndent As Single
public float SelectionHangingIndent {get; set;}

プロパティ値

現在選択されているテキストに適用される、ぶら下げインデントの幅を表す整数値(ピクセル単位)。

使用例
private void detail_Format(object sender, System.EventArgs eArgs)
{
    if (this.rtbActiveReport.Find("List") != -1)
    {
        this.rtbActiveReport.SelectionStart = this.rtbActiveReport.Find("List");
        this.rtbActiveReport.SelectionLength = 4;
        this.rtbActiveReport.SelectionHangingIndent = 0.5f;
    }
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    If Not Me.rtbActiveReport.Find("List") = -1 Then
        Me.rtbActiveReport.SelectionStart = Me.rtbActiveReport.Find("List")
        Me.rtbActiveReport.SelectionLength = 4
        Me.rtbActiveReport.SelectionHangingIndent = 0.5
    End If
End Sub
参照

RichTextBox クラス
RichTextBox メンバ
SelectionIndent プロパティ
SelectionRightIndent プロパティ