GrapeCity.ActiveReports.v9 アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > RichTextBox クラス : SelectionRightIndent プロパティ |
現在選択されている内容の右、またはカーソル位置の右に挿入されるインデント幅(ピクセル単位)。
private void detail_Format(object sender, System.EventArgs eArgs) { this.rtbActiveReport.SelectionStart = 0; this.rtbActiveReport.SelectionLength = 100; this.rtbActiveReport.SelectionRightIndent = 1; }
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format Me.rtbActiveReport.SelectionStart = 0 Me.rtbActiveReport.SelectionLength = 100 Me.rtbActiveReport.SelectionRightIndent = 0.5 End Sub