CheckButton#

class ansys.scade.guitools.control.CheckButton(owner, text: str, x: int, y: int, w: int, h: int = c.CHECK_BUTTON_HEIGHT, **kwargs)#

Bases: scade.tool.suite.gui.widgets.CheckBox

Defines a check box control with a default height.

Parameters#

ownerAny

Owner of check button.

textstr

Text of check button.

xint

Horizontal position of the check button.

yint

Vertical position of the check button.

wint

Width of the check button.

hint

Height of the check button, default csts.CHECK_BUTTON_HEIGHT.

kwargsAny

Other parameters of scade.tool.suite.gui.widgets.CheckBox.

Initialize the check button with the given parameters.

Overview#

Import detail#

from ansys.scade.guitools.control import CheckButton

Attribute detail#

CheckButton.owner#