ActiveReports 8
Detail Constructor
See Also  Example
GrapeCity.ActiveReports.v8 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > Detail Class : Detail Constructor

Glossary Item Box

Initializes a new instance of the Detail class.

Syntax

Visual Basic (Declaration) 
Public Function New()
C# 
public Detail()

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.detail.ColumnCount = 1;
    this.detail.ColumnDirection = ColumnDirection.DownAcross;
    this.detail.ColumnSpacing = 1;
    this.detail.KeepTogether = true;
    this.detail.NewColumn = NewColumn.None;
    this.detail.NewPage = NewPage.None;
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.Detail1.ColumnCount = 1
    Me.Detail1.ColumnDirection = ColumnDirection.DownAcross
    Me.Detail1.ColumnSpacing = 1
    Me.Detail1.KeepTogether = True
    Me.Detail1.NewColumn = NewColumn.None
    Me.Detail1.NewPage = NewPage.None
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