ActiveReports3 Request technical support
SelectionStart Property
See Also  Example


Gets or sets the starting point of text selected in the text box.

Syntax

Visual Basic (Declaration) 
Public Property SelectionStart As Integer
Visual Basic (Usage)Copy Code
Dim instance As RichTextBox
Dim value As Integer
 
instance.SelectionStart = value
 
value = instance.SelectionStart
C# 
public int SelectionStart {get; set;}

Return Value

The starting position of text selected in the text box.

Example

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 BasicCopy 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

See Also