ActiveReports 12
ColumnCount Property (Detail)
Example 

GrapeCity.ActiveReports.v12 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > Detail Class : ColumnCount Property
Gets or sets a value that specifies the number of newspaper columns in the report.
Syntax
'Declaration
 
Public Property ColumnCount As Integer
public int ColumnCount {get; set;}

Property Value

Integer value that represents the current number of columns in the report; default is 1.

Remarks
This property can be used to print labels or phonebook-style listings.  The width of each column equals the PrintWidth of the report divided by the number of columns.
Example
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.detail.ColumnCount = 1;
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
   Me.Detail.ColumnCount = 1
End Sub
See Also

Reference

Detail Class
Detail Members
ActiveReports6~GrapeCity.ActiveReports.GroupHeader~ColumnLayout
ActiveReports6~GrapeCity.ActiveReports.Detail~ColumnDirection
ActiveReports6~GrapeCity.ActiveReports.Detail~ColumnSpacing