Specifies a unit of measurement.
Namespace: MindFusion.Common
File: Unit.js
SyntaxJavaScript
Copy Code
|
|---|
// enum |
Members| Member name | Description | |
|---|---|---|
![]() |
Percent |
The measurement is a percentage relative to the parent element. |
![]() |
Pixel |
The measurement is in pixels. |
ExampleThe following code checks the type of the minWidth of a Window.
JavaScript
Copy Code
|
|---|
| if(window.minWidth.type === ui.UnitType.Percent ) { window.minWidth = ui.Unit.percent(50); } |
See Also