ActiveReports Developer 7
ColumnGroupKeepTogether Property
See Also  Example
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > GroupHeader Class : ColumnGroupKeepTogether Property

Glossary Item Box

Gets or sets a value that specifies whether the group will print as a single block in the same column.

Syntax

Visual Basic (Declaration) 
Public Property ColumnGroupKeepTogether As System.Boolean
C# 
public System.bool ColumnGroupKeepTogether {get; set;}

Property Value

Boolean.

Remarks

The Boolean ColumnGroupKeepTogether property will only be implemented when the GroupHeader's GroupKeepTogether property is set to All. 

The purpose of this property is to prevent a group from splitting across columns.  If the group will not fit in the current column, ActiveReports will attempt to render the full group in the next column.  If the group is too large to fit in a single column, this property will be ignored.

Example

C#Copy Code
private void groupHeader1_Format(object sender, System.EventArgs eArgs)
{
    this.groupHeader1.ColumnLayout = true;
    this.groupHeader1.GroupKeepTogether = GroupKeepTogether.All;
    this.groupHeader1.ColumnGroupKeepTogether = true;
}
Visual BasicCopy Code
Private Sub GroupHeader1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles GroupHeader1.Format
   Me.GroupHeader1.ColumnLayout = True
   Me.GroupHeader1.GroupKeepTogether = GroupKeepTogether.All
   Me.GroupHeader1.ColumnGroupKeepTogether = True
End Sub

See Also