Gets or sets a value indicating where text in the control appears on the baseline, as a superscript or as a subscript below the baseline.
Syntax
Visual Basic (Declaration) | |
---|
Public Property SelectionCharOffset As System.Single |
C# | |
---|
public System.float SelectionCharOffset {get; set;} |
Property Value
A number that specifies the character offset in inches.
The value of this property must be between -2000 and 2000.
If this property is set to zero, the text appears on the baseline. If it is a positive number, the number specifies the number of inches by which to raise the text selection above the baseline. If it is a negative number, this number specifies the number of inches by which to subscript the text selection. You can use this property to specify text as superscript or subscript.
Example
C# | Copy Code |
---|
private void detail_Format(object sender, System.EventArgs eArgs)
{
if (this.rtbActiveReport.Find("footnote") != -1)
{
this.rtbActiveReport.SelectionStart = this.rtbActiveReport.Find("footnote");
this.rtbActiveReport.SelectionLength = 11;
this.rtbActiveReport.SelectionCharOffset = .05f;
}
} |
Visual Basic | Copy Code |
---|
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
If Not Me.rtbActiveReport.Find("footnote") = -1 Then
Me.rtbActiveReport.SelectionStart = Me.rtbActiveReport.Find("footnote")
Me.rtbActiveReport.SelectionLength = 11
Me.rtbActiveReport.SelectionCharOffset = 0.05
End If
End Sub |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also