DxWindowGetCloseState

From Multi Theft Auto: Wiki
Revision as of 04:11, 11 May 2022 by ClawSuit (talk | contribs) (Created page with "__NOTOC__ {{Client Function}} Esta funcion obtiene el estado del boton de cerrado de una dxWindow. ==Sintaxis== <syntaxhighlight lang="lua">bool dxWindowGetCloseState(element element)</syntaxhighlight> ===Argumentos requeridos=== * '''element''': La ventana la cual se obtendra el estado del boton de cerrado. ==Ejemplo de Uso== <syntaxhighlight lang="lua"> loadstring(exports.dxlib:dxGetLibrary())() --creamos una ventana win = dxWindow(251, 21, 250, 300, 'Window DEM...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

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())()
--creamos una ventana
win = dxWindow(251, 21, 250, 300, 'Window DEMO', true, true)

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

Ver también

General Functions

Window

Button

CheckBox

Edit

GridList

Image

Label

List

ProgressBar

ScrollBar