Reporting

Represents the type of a Unit.

Namespace: Telerik.Reporting.Drawing
Assembly: Telerik.Reporting (in Telerik.Reporting.dll)

Syntax

C#
public enum UnitType
Visual Basic
Public Enumeration UnitType

Members

Member nameValueDescription
Pixel1 Represents pixels. String equivalent used in Unit's constructor should be "px".
Point2 Represents points. String equivalent used in Unit's constructor should be "pt".
Pica3 Represents picas. String equivalent used in Unit's constructor should be "pc".
Inch4 Represents inches. String equivalent used in Unit's constructor should be "in".
Mm5 Represents millimeters. String equivalent used in Unit's constructor should be "mm".
Cm6 Represents centimeters. String equivalent used in Unit's constructor should be "cm".

Remarks

1 inch = 6 picas = 72 points.

1 centimeter = 10 millimeters.

Pixels convert to and from other units based on the dpi of the current graphics context.

See Also