Visual Basic (Declaration) | |
---|---|
Public Property SelectionRightIndent As System.Single |
C# | |
---|---|
public System.float SelectionRightIndent {get; set;} |
Property Value
The indentation space, in inches, at the right of the current selection or insertion point.C# | Copy Code |
---|---|
private void detail_Format(object sender, System.EventArgs eArgs) { this.rtbActiveReport.SelectionStart = 0; this.rtbActiveReport.SelectionLength = 100; this.rtbActiveReport.SelectionRightIndent = 1; } |
Visual Basic | Copy Code |
---|---|
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 |
Reference
RichTextBox ClassRichTextBox Members
ActiveReports6~GrapeCity.ActiveReports.RichTextBox~SelectionHangingIndent
ActiveReports6~GrapeCity.ActiveReports.RichTextBox~SelectionIndent