[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.ReportItem.Width

Width Property

Width

Gets or sets a width of the report item.

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

A Length value indicating the width of the report item.

Remarks

Negative sizes are allowed only for Line items.

If not specified, the default value is the width of the container minus the Left value.

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

Examples
var reportItem = new TextBox();
reportItem.Width = new Length("3in");