ActiveReports Developer 7
BulletIndent Property
See Also  Example
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > RichTextBox Class : BulletIndent Property

Glossary Item Box

Gets or sets the indentation used in the control when the bullet style is applied to the text.

Syntax

Visual Basic (Declaration) 
Public Property BulletIndent As System.Single
C# 
public System.float BulletIndent {get; set;}

Property Value

Float value that is the current bullet indent value in inches.  Default is 0.5 inch.

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.rtbActiveReport.BulletIndent = .25f;
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.rtbActiveReport.BulletIndent = 0.25
End Sub

See Also