DxWindowGetCloseState: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 3: Line 3:
Esta funcion obtiene el estado del boton de cerrado de una [[dxWindow]].
Esta funcion obtiene el estado del boton de cerrado de una [[dxWindow]].


<small>'''<span style="color:#ff0000; text-shadow:black 0em 0.1em 0.1em;">''Aviso: Esta es una función exportada por [[Modern-Library]]!''</span>'''</small>
==Sintaxis==
==Sintaxis==
<syntaxhighlight lang="lua">bool dxWindowGetCloseState(element element)</syntaxhighlight>
<syntaxhighlight lang="lua">bool dxWindowGetCloseState(element element)</syntaxhighlight>

Revision as of 00:02, 21 May 2022

Esta funcion obtiene el estado del boton de cerrado de una dxWindow.

Aviso: Esta es una función exportada por Modern-Library!

Sintaxis

bool dxWindowGetCloseState(element element)

Argumentos requeridos

  • element: La ventana la cual se obtendra el estado del boton de cerrado.

Ejemplo de Uso

loadstring(exports.dxlib:dxGetLibrary())()

win = dxWindow(251, 21, 250, 300, 'Window DEMO', true, true)

bindKey('k', 'down', 
  function()
     outputChatBox('El boton de cerrado esta '..(dxWindowGetCloseState( win ) and 'visible' or 'oculto'))
  end
)

Ver también

General Functions

Window

Button

CheckBox

Edit

GridList

Image

Label

List

ProgressBar

ScrollBar