Returns the active view.
Syntax: |
---|
DlxApp.GetActiveView() |
Return Value
Returns the object DlxView corresponding to the view. Call the IsValid() method to determine if the object is valid.
Example
Copy code | |
---|---|
if (DlxApp.GetActiveView().IsValid())
{
DlxApp.Trace("Active view: %s", DlxApp.GetActiveView().GetName());
}
|