image class
A control that can display an image.
Methods¶
__init__() ¶
__init__(
content=None,
label=None,
on_action=None,
width="300px",
height=None,
active=True,
id=None,
properties=None,
class_name=None,
hover_text=None,
) -> None
Create a new image
element.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
content |
Union[path,URL,file,ReadableBuffer]
|
The image source.
|
None
|
label |
str
|
The label for this image. |
None
|
on_action |
Union[str, Callable]
|
A function or the name of a function that is triggered when the user clicks on the image.
|
None
|
width |
Union[str, int, float]
|
The width of this image control, in CSS units. |
300px
|
height |
Union[str, int, float]
|
The height of this image control, in CSS units. |
None
|
active |
bool
|
Indicates if this component is active. |
True
|
id |
str
|
The identifier that is assigned to the rendered HTML component. |
None
|
properties |
dict[str, Any]
|
Bound to a dictionary that contains additional properties for this element. |
None
|
class_name |
str
|
The list of CSS class names that are associated with the generated HTML Element. |
None
|
hover_text |
str
|
The information that is displayed when the user hovers over this element. |
None
|