Package | Description |
---|---|
com.groupdocs.editor.htmlcss.css.datatypes |
The com.groupdocs.editor.htmlcss.css.datatypes namespace provides classes that represent CSS data types.
|
Modifier and Type | Field and Description |
---|---|
static Length |
Length.FiftyPercents
50%
|
static Length |
Length.OneHundredPercents
100%
|
static Length |
Length.UnitlessZero
Unitless integer zero - default value, the same as default parameterless
constructor
|
static Length |
Length.ZeroPercents
0%
|
Modifier and Type | Method and Description |
---|---|
Length |
Length.Clone()
Deprecated.
|
Length |
Length.deepClone()
Returns a full copy of this Length instance
|
static Length |
Length.fromValueWithUnit(com.groupdocs.editor.htmlcss.css.datatypes.CssNumber value,
byte unit)
Deprecated.
|
static Length |
Length.fromValueWithUnit(double value,
byte unit)
Creates and returns an instance of Length type by specified double number
and unit
|
static Length |
Length.fromValueWithUnit(float value,
byte unit)
Creates and returns an instance of Length type by specified float number
and unit
|
static Length |
Length.fromValueWithUnit(int value,
byte unit)
Creates and returns an instance of Length type by specified integer
number and unit
|
static Length |
Length.parse(String input)
Parses and returns specified string as a Length value, including its
numeric value and unit name, or throws an exception on failure
|
Modifier and Type | Method and Description |
---|---|
void |
Length.CloneTo(Length that)
Deprecated.
|
boolean |
Length.equals(Length other)
Defines whether this value is equal to the other specified length
|
static boolean |
Length.equals(Length obj1,
Length obj2)
Deprecated.
|
static boolean |
Length.op_Equality(Length left,
Length right)
Checks the equality of the two given lengths.
|
static boolean |
Length.op_Inequality(Length left,
Length right)
Checks the inequality of the two given lengths.
|
static boolean |
Length.tryParse(String input,
Length[] result)
Tries to parse a specified string as a Length value, including its
numeric value and unit name
|