dxWindowGetCloseState(element)
Argumentos requeridos
- element: dxWindow
- Ejemplo de uso
loadstring( exports.dxLibrary: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 )