CheckChange
custom control event.fcmctrlcheckbox.SetCheck(self, checked)
[Fluid] [Override]
Override Changes:
CheckChange
event is triggered.Input | Type | Description |
---|---|---|
self |
FCMCtrlCheckbox |
|
checked |
number |
fcmctrlcheckbox.HandleCheckChange(control, last_check)
[Callback Template]
Input | Type | Description |
---|---|---|
control |
FCMCtrlCheckbox |
The control that was changed. |
last_check |
string |
The previous value of the control’s check state.. |
fcmctrlcheckbox.AddHandleCheckChange(self, callback)
[Fluid]
Adds a handler for when the value of the control’s check state changes. The event will fire when:
0
)Input | Type | Description |
---|---|---|
self |
FCMCtrlCheckbox |
|
callback |
function |
See HandleCheckChange for callback signature. |
fcmctrlcheckbox.RemoveHandleCheckChange(self, callback)
[Fluid]
Removes a handler added with AddHandleCheckChange
.
Input | Type | Description |
---|---|---|
self |
FCMCtrlCheckbox |
|
callback |
function |