[]
Gets or sets a height of the report item.
public virtual Length Height { get; set; }
Type | Description |
---|---|
Length | A Length value indicating the height of the report item. |
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).
var reportItem = new TextBox();
reportItem.Height = new Length("1in");