Triggered after the user switches to a different layout.
Supported platforms: Windows only
VBA:
object.LayoutSwitched(LayoutName)
Type: Document
An object expression that evaluates to a valid container object. In this case, the only valid container is a document.
Type: String; input to the handler
The name of the layout the user has switched to.
No events will be fired while a modal dialog is being displayed.
VBA:
Private Sub AcadDocument_LayoutSwitched(ByVal LayoutName As String)
    ' This example intercepts a drawing LayoutSwitched event.
    '
    ' This event is triggered when the user switches to a different
    ' drawing layout view.
    '
    ' To trigger this example event: Open a drawing and change its layout view
    '
    ' For example: Switch the drawing from Model view to Layout1 view
    ' Use the "LayoutName" variable to determine the which layout view we changed to
    MsgBox "The drawing layout was just changed to: " & LayoutName
End Sub
Visual LISP:
Not available