See Also

GroupHeader Class  | GroupHeader Members

Language

Visual Basic

C#

Show All

See Also Languages ActiveReports Send feedback to Data Dynamics

NewColumn Property

Gets or sets a value that determines whether a new column (in a multi-column report) should be started before and/or after printing the section.

[Visual Basic]
Public Property NewColumn As NewColumn
[C#]
public NewColumn NewColumn {get; set;}

Return Type

A NewColumn enumeration value that determines the behavior of column breaks before or after printing the section.  The default value is NewColumn.None. Possible values are:

Example

[C#] 

private void GroupHeader1_Format(object sender, System.EventArgs eArgs) 

    this.GroupHeader1.ColumnLayout = true; 
    this.GroupHeader1.NewColumn = NewColumn.None; 
}

[Visual Basic] 

Private Sub GroupHeader1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles GroupHeader1.Format
   Me.GroupHeader1.ColumnLayout = True
   Me.GroupHeader1.NewColumn = NewColumn.None
End Sub

See Also

GroupHeader Class  | GroupHeader Members

 

 


Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.