IntelliCAD 11.1 Object Library | |
WindowChanged Event | |
See Also |
- vicWindowState
Document Object : WindowChanged Event |
Description
Syntax
Visual Basic |
---|
Public Event WindowChanged( _ ByVal vicWindowState As WindowState _ ) |
Parameters
- vicWindowState
Example
The following example illustrates using the WindowChanged event with an Application object. To use the WindowChanged event with a Document or Workspace object, you do not need to initialize the App variable.
Public WithEvents App As Application
Sub init()
'To receive and handle events from IntelliCAD, first initialize the App variable.
Set App = ThisWorkspace.Application
End Sub
'Event handler
Private Sub App_WindowChanged(WindowState)
' This example receives an Application WindowChanged event.
' This event occurs when a change is made to the state of an application, document, or workspace window.
' To fire this event:
' 1) Run init() function to initialize App variable.
' 2) Restore, minimize, or maximize a window.
MsgBox "The state of a window has changed."
End Sub