ActiveReports 9
Detail Constructor
Example 

Initializes a new instance of the Detail class.
Syntax
'Declaration
 
Public Function New()
public Detail()
Example
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;
}
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

Reference

Detail Class
Detail Members

 

 


Copyright © 2014 GrapeCity, inc. All rights reserved

Support Forum