DxGUI/dxGetVisible

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


You can use this function to get dxElement visiblity.

Syntax

dxElement  dxGetVisible (element dxElement)

Required Arguments

  • dxElement: A dxGUI element.

Returns

  • visiblity: dxGUI visiblity


Example

This example gets window visiblity.


local visiblity = dxGetVisible(dxWindow)
outputChatBox( tostring(visiblity) )

See Also

Back to dxGUI page