DgsIsMoveHandled: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (little correction)
m (DGS OOP Syntax changing)
 
Line 9: Line 9:
bool dgsIsMoveHandled( element dgsElement )
bool dgsIsMoveHandled( element dgsElement )
</syntaxhighlight>
</syntaxhighlight>
{{DGS/OOP||DGSElement:isMoveHandled}}
{{DGS/OOP|
    Method = DGSElement:isMoveHandled
}}


===Required Arguments===  
===Required Arguments===  

Latest revision as of 22:54, 3 May 2021

This function checks whether the move handler is added to the dgs element.

Note: You can not check the built-in move handler of dgs window.

Syntax

bool dgsIsMoveHandled( element dgsElement )

DGS OOP Syntax Help! I don't understand this!

Method: DGSElement:isMoveHandled(...)

Required Arguments

  • dgsElement: The dgs element you want to check.

Returns

Returns true if the dgs element has already had a move handler, false otherwise

Example

DGS = exports.dgs
local button = DGS:dgsCreateButton(0.2,0.2,0.2,0.1,"test",true)
DGS:dgsAddMoveHandler(button,0,0,1,1)
local state = DGS:dgsIsMoveHandled(button)
outputChatBox( tostring(state) )

See Also

General Functions

General Events