Measure Units
You can select a single unit of measurement to specify various distance values of a document (page width and height, margins, etc.). Set the Document.Unit or RichEditControl.Unit property to one of the following values:
Unit of Measurement | Description |
---|---|
Document | Default property value. A document unit corresponds to 1/300 of an inch. Internal calculations are currently performed using this unit of measurement. |
Centimeter | Centimeter (1 inch is equal to 2.54 centimeters) |
Inch | Inch |
Millimeter | Millimeter (10 millimeters are equal to 1 centimeter) |
Point | Point (1 inch is equal to 72 points) |
Measure Units in the RichEditControl Document
The Document.Unit property value determines the units of measurements in the following cases:
- When you specify section properties via the SectionPage.Width, SectionPage.Height and SectionMargins class properties.
- When you change offset and size of the Shape objects.
Document elements on the document layout level are measured in DocumentLayoutUnit.Twip (1 inch is equal to 1440 twips). This measurement is used when you determine the coordinates of the layout elements (the LayoutElementBase.Bounds property), the cursor bounds (the RichEditView.GetCursorBounds() property), etc.
Tip
Use the DevExpress.Office.Utils.Units class methods to convert units of measurements.
See Also