🎨CMenuColorPickerAttachment

CMenuColorPickerAttachment metatable.

:Name(): string

Returns widget's name.


Returns widget's parent.


Returns widget type.


:Open(): nil

Opens parent tabs.


:ForceLocalization(newText: string): nil

Not recommended for use due to its complexity

Changes text in the widget. The path to the widget is not affected. May be used for dynamic text customization or recolor.


:Visible(value: boolean): nil

Gets or sets visible state. Depends on argument.

Example

-- setter
widget:Visible(false)

:Visible(): boolean

Example

-- getter
local isVisible = widget:Visible()

:Disabled(value: boolean): nil

Gets or sets disabled state. Depends on argument.

Example

-- setter
widget:Disabled( false )

:Disabled(): boolean

Example

-- getter
local isDisabled = widget:Disabled()

:Get(): Color

Returns widget's value.


:Set(value: Color): nil

Sets widget's value.


:SetCallback(callback: fun(this: CMenuColorPickerAttachment):nil, forceCall [?]: boolean): nil

Multiple callbacks could be set.

Sets widget's on change callback.


:UnsetCallback(callback: fun(this: CMenuColorPickerAttachment):nil): nil

Removes widget's on change callback.

Last updated