DgsSetEnabled

From Multi Theft Auto: Wiki

This function enables/disables a DGS element. A disabled DGS element can't be used, gets a gray aspect and doesn't receive any events.

Syntax

bool dgsSetEnabled ( element dgsElement, bool enabled )

Required Arguments

  • dgsElement: the DGS element you wish to enable or disable
  • enabled: the new state

Returns

If the function succeeds it returns true, if it fails it returns false.

Example

Click to collapse [-]
Client
DGS = exports.dgs
function ChangeMyButtonEnabled ( )        
        if ( DGS:dgsGetEnabled ( MyButton ) == true ) then -- check if the element is enabled           
                DGS:dgsSetEnabled ( MyButton, false ) -- if it is, we disable it
        else              
                DGS:dgsSetEnabled ( MyButton, true ) -- if not, we make it enabled
        end
end

MyGuiWindow = DGS:dgsCreateWindow(254,206,478,306,"Awesome dgs Window",false) -- Your dgs window
MyButton = DGS:dgsCreateButton(0.477,0.8268,0.1946,0.0784,"Hello World!",true,MyGuiWindow) -- Creates a button in your dgs window

See Also

Multi Language Supports

Animation

3D Interface

3D Text

Arrow List

Browser

Button

Check Box

Combo Box

Edit

Ellipse Detect Area

Detect Area

Grid List

Image

Memo

Label

Progress Bar

Radio Button

Scroll Bar

Scroll Pane

Switch Button

Tab Panel

Window

Plugin

Media Browser

Rounded Rectangle

Color Picker

Blur Box

Effect 3D