WidgetDisabledProperty

Typeoperator
DictionaryLCB
LibraryLiveCode Builder
Syntax
the disabled of <mWidget>
Associationscom.livecode.widget
Summary

Manipulates the disabled property of a child widget

Parameters
NameTypeDescription
mWidget

The child widget object

Example
private variable mChild as Widget

public handler OnCreate() returns nothing
    put a new widget "com.livecode.widget.button" into mChild
    place mChild
    -- mChild is initially disabled
    set the disabled of mChild to true
end handler
RelatedExpression: MyDisabled
Description

Use the disabled property to control the disabled/enabled state of child widgets. The child widget can change its appearance and behavior based on the result of the 'MyDiabled|my disabled' expression.

Tagswidget