🎨CMenuColorPickerAttachment
CMenuColorPickerAttachment metatable.
:Name(): string
string
Returns widget's name.
Returns widget's parent.
:Type(): Enum.WidgetType
Enum.WidgetType
Returns widget type.
:Open(): nil
nil
Opens parent tabs.
:ForceLocalization(newText: string
): nil
string
): nil
Not recommended for use due to its complexity
newText
string
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
boolean
): nil
value
boolean
Gets or sets visible state. Depends on argument.
Example
:Visible(): boolean
boolean
Example
:Disabled(value: boolean
): nil
boolean
): nil
value
boolean
Gets or sets disabled state. Depends on argument.
Example
:Disabled(): boolean
boolean
Example
:Get(): Color
Color
Returns widget's value.
:Set(value: Color
): nil
Color
): nil
value
Sets widget's value.
:SetCallback(callback: fun(this: CMenuColorPickerAttachment):nil
, forceCall [?]
: boolean
): nil
fun(this: CMenuColorPickerAttachment):nil
, forceCall [?]
: boolean
): nil
Multiple callbacks could be set.
callback
fun(this: CMenuColorPickerAttachment):nil
function to be called on widget change.
forceCall [?]
boolean
true if you want to call callback on widget creation. (default: false)
Sets widget's on change callback.
:UnsetCallback(callback: fun(this: CMenuColorPickerAttachment):nil
): nil
fun(this: CMenuColorPickerAttachment):nil
): nil
callback
fun(this: CMenuColorPickerAttachment):nil
function to be removed from widget's callbacks.
Removes widget's on change callback.
Last updated