Gets or sets a value indicating whether the width specified for individual columns are expressed in units relative to the page width or as points.
Namespace: MindFusion.Scheduling.Reporting
Assembly: MindFusion.Scheduling.Reporting
C# Copy Code |
---|
public bool AbsoluteColumnWidth { get; set; } |
Visual Basic Copy Code |
---|
Public Property AbsoluteColumnWidth As Boolean |
true to indicate that the numbers specified for the ReportColumn.Width property should be interpreted as printer units (a hundredths of an inch); false to indicate that the numbers should be treated as relative units (see below). The default is false.
When this property is set to false all columns in the report fit in a single page and the actual width of each individual column relates to the total width of the page as the column Width relates to the total width of all columns. If, for example, you have two columns, the width of the first column is 100 and the width of the second column is 200, then the columns would exactly fit in the page and the second column would be twice as wide as the first one. Specifying the values 1 and 2 for those columns respectively would yield the same result when AbsoluteColumnWidth is set to false.
If this property is set to true, the numbers specified for the column width is interpreted as absolute printer dots.