Activate Method

IntelliCAD 11.1 Object Library
Activate Method
See Also 
Document Object : Activate Method

Description

Activates the first window associated with the document.

Syntax

Visual Basic
Public Sub Activate() 

Example

Private Sub ActivateExample()

' The following example successively activates each open drawing.

     For Each doc In Application.Documents

          doc.Activate

          MsgBox "The following document is active: " & doc.Name

     Next doc

End Sub

See Also

© 2022 IntelliCAD Technology Consortium. All Rights Reserved.