height property
int
get
height
Element property height.
Implementation
int get height {
String? attrHeight = getAttribute(HEIGHT);
if (attrHeight != null) {
return attributeToProperty<int>(attrHeight);
} else {
return _ELEMENT_DEFAULT_HEIGHT_IN_PIXEL;
}
}
set
height
(int value)
Implementation
set height(int value) {
_setDimensions(null, value);
}