[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.ReportItem.KeepTogether

KeepTogether Property

KeepTogether

Gets or sets a value indicating whether a data region is kept together on a single page where possible.

Declaration
public bool KeepTogether { get; set; }
Property Value
Type Description
bool

A bool value where true indicates that the data region's content is kept together on a single page if possible; otherwise false. The default value is false.

Remarks

If the data region is larger than the body of the page, the property is ignored.

Examples
var reportItem = new Table();
reportItem.KeepTogether = true;