|
|
|
|
|
|
|
getElement(self)
Get the DOM element associated with the UIObject, if any |
source code
|
|
|
|
|
|
|
|
|
getStylePrimaryName(self)
Return with the first className if there are multiples |
source code
|
|
|
getStyleAttribute(self,
attribute)
can be called with two forms: getStyleAttribute(self, attr) - returns
value getStyleAttribute(self, (attr1,attr2,...)) - returns dictionary
of attr:value pairs |
source code
|
|
|
|
|
setElement(self,
element)
Set the DOM element associated with the UIObject. |
source code
|
|
|
|
|
|
|
setPixelSize(self,
width,
height)
Set the width and height of the element associated with this UIObject
in pixels. |
source code
|
|
|
setSize(self,
width,
height)
Set the width and height of the element associated with this
UIObject. |
source code
|
|
|
|
|
|
|
|
|
removeStyleDependentName(self,
styleSuffix)
Remove a dependent style name by specifying the style name's suffix. |
source code
|
|
|
setStyleName(self,
element,
style=None,
add=True)
When called with a single argument, this replaces all the CSS classes
associated with this UIObject's element with the given parameter. |
source code
|
|
|
setStyleAttribute(self,
attribute,
value=None)
can be called with two forms: single attr: setStyleAttribute(self,
attr, value) multi attr: setStyleAttribute(self, {attr1:val1,
attr2:val2, ... |
source code
|
|
|
|
|
|
|
|
|
sinkEvents(self,
eventBitsToAdd)
Request that the given events be delivered to the event handler for
this element. |
source code
|
|
|
|
|
isVisible(self,
element=None)
XXX DEPRECATED - use getVisible |
source code
|
|
|
getVisible(self,
element=None)
Determine whether this element is currently visible, by checking the
CSS property 'display' |
source code
|
|
|
|
|
|
Inherited from Applier :
applyValues ,
retrieveValues ,
setDefaults ,
setElementProperties ,
updateInstance
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|