ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / ReportItem Class / Height Property
Example

Height Property (ReportItem)
Gets or sets a height of the report item.
Syntax
'Declaration
 
Public Overridable Property Height As Length
 

Property Value

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).

Example
var reportItem = new TextBox();
reportItem.Height = new Length("1in");
See Also