ActiveReports 18 .NET Edition
MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / Detail Class / Detail Constructor
Example

In This Topic
    Detail Constructor
    In This Topic
    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
    See Also