Example usage for Java com.vaadin.client ComputedStyle fields, constructors, methods, implement or subclass
The text is from its open source code.
ComputedStyle(Element elem) Gets this element's computed style object which can be used to gather information about the current state of the rendered node. |
int[] | getBorder() Get current border values from the DOM. |
double | getBorderHeight() Returns the sum of the top and bottom border width. |
double | getBorderWidth() Returns the sum of the left and right border width. |
double | getDoubleProperty(String name) Retrieves the given computed property as a double. |
double | getHeight() Returns the current height from the DOM. |
int | getIntProperty(String name) Retrieves the given computed property as an integer. |
int[] | getMargin() Get current margin values from the DOM. |
double | getMarginWidth() Returns the sum of the left and right margin. |
int[] | getPadding() Get current padding values from the DOM. |
double | getPaddingHeight() Returns the sum of the top and bottom padding. |
double | getPaddingWidth() Returns the sum of the top and bottom padding. |
String | getProperty(String name) Gets the value of the given property. |