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

Glossary Item Box

Sets or returns the space between columns in a multi-column report.

Syntax

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

Property Value

A single value that represents the space between columns.

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.detail.ColumnCount = 3;
    this.detail.ColumnSpacing = 1;
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
   Me.Detail1.ColumnCount = 3
   Me.Detail1.ColumnSpacing = 1
End Sub

See Also