[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.ReportItem.Height

Height Property

Height

Gets or sets a height of the report item.

Declaration
public virtual Length Height { get; set; }
Property Value
Type Description
Length

A Length value indicating the height of the report item.

Remarks

Negative sizes are allowed only for Line items.

If not specified, the default value is the height of the container minus the Top value.

For Table and Matrix items, the height is derived from the sizes of their component parts (i.e. columns, rows, matrix cells).

Examples
var reportItem = new TextBox();
reportItem.Height = new Length("1in");