DgsSwitchButtonGetState: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "==Syntax== <syntaxhighlight lang="lua"> bool dgsSwitchButtonGetState( element switchButton ) </syntaxhighlight> ===Required Arguments=== *'''switchButton:''' Switch you wa...")
 
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Client function}}
__NOTOC__
This function gets the state of switch button.
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
Line 8: Line 12:


===Returns===
===Returns===
Returns a bool of the [[dgs-dxswitchbutton|Switch Button]].
A bool indicates the state of [[dgs-dxswitchbutton|Switch Button]].


==Example==  
==Example==  
Line 18: Line 22:
end)
end)
</syntaxhighlight>
</syntaxhighlight>
==See Also==
{{DGSFUNCTIONS}}

Latest revision as of 15:00, 22 April 2020

This function gets the state of switch button.

Syntax

bool dgsSwitchButtonGetState( element switchButton )

Required Arguments

  • switchButton: Switch you want to get the state from.

Returns

A bool indicates the state of Switch Button.

Example

DGS = exports.dgs
button = DGS:dgsCreateSwitchButton( 0.7, 0.1, 0.2, 0.1, "On", "Off", true, true )
addEventHandler ( "onDgsMouseClickDown", button, function()
        outputChatBox ( "The switch turns "..(DGS:dgsSwitchButtonGetState(source) and "on" or "off"))
end)

See Also

Custom Cursor Functions

Multi Language Supports

Animation

3D Element

3D Interface

3D Line

3D Image

3D Text

Browser

Button

Check Box

Combo Box

Custom Renderer

Edit

Detect Area

Drag'N Drop

Grid List

Image

Memo

Menu

Label

Layout

Line

Progress Bar

Radio Button

Scale Pane

Scroll Bar

Scroll Pane

Selector

Style

Switch Button

Tab Panel

Window

Basic Shape Plugins

Circle

Quadrilateral

Rounded Rectangle

Other Plugins

Blur Box

Canvas

Chart

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Screen Source

SVG

Tooltips