using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UniversalEditor.ObjectModels.Web
{
public enum MeasurementUnit
{
/// Measurement is in pixels.
Pixel = 1,
/// Measurement is in points. A point represents 1/72 of an inch.
Point,
/// Measurement is in picas. A pica represents 12 points.
Pica,
/// Measurement is in inches.
Inch,
/// Measurement is in millimeters.
Mm,
/// Measurement is in centimeters.
Cm,
/// Measurement is a percentage relative to the parent element.
Percentage,
/// Measurement is relative to the height of the parent element's font.
Em,
/// Measurement is relative to the height of the lowercase letter x of the parent element's font.
Ex
}
}