Public Methods
CreateEntityWrap | |
CreatePointInterface | |
CreateVectorInterface | |
DefineFunction | Adds a macro to the IntelliCAD command list, similar to (defun c:cmd) in LISP. |
GetInterfaceObject | Creates the object specified by the ProgID and returns its Dispatch interface pointer. |
Help | Displays help information. |
IsFunctionLoaded | Returns TRUE if the function is loaded and FALSE if not. |
ListSDS | Returns a list of the loaded SDS applications. |
LoadLISP | Loads a specified LISP application. |
LoadSDS | Loads a specified SDS application. |
Quit | Closes the drawing file and exits the application. |
RunCommand | Executes the command as if it were typed on the command line. |
RunScript | Runs a specified script file. |
UndefineFunction | Removes a previously defined VBA macro from the IntelliCAD command list. |
UnloadSDS | Unloads a specified SDS application. |
ZoomAll | Zooms to display all of the drawing. |
ZoomCenter | Zooms to a specified point and magnification. |
ZoomExtents | Zooms to the drawing extents. |
ZoomPickWindow | Zooms to an area defined by selecting two opposite points of a rectangle on the screen. |
ZoomWindow | Zooms to an area defined by two opposite points of a rectangle. |
Public Properties
ActiveDocument | Returns the active document object. |
ActiveWindow | Returns the active window object. |
Caption | Returns the text for the title bar of the application window. |
DefaultFilePath | Sets or returns the default path used for opening files. |
Documents | Returns the collection of document objects. |
FullName | Returns the full path of the application EXE. |
Height | Sets or returns the height of the application window. |
Library | Returns the library object. |
LocaleID | Returns a long value that contains the Locale identification of the user. |
Name | Returns the name of the application. |
Parent | Returns the parent of the object. |
Path | Returns the path of application's EXE. |
PlotManager | Returns the application's PlotManager that controls the plot settings. |
Preferences | Returns the Application level user Preferences object. |
ProcessID | Returns a unsigned long value that contains the Process identification. |
StatusBar | Sets or returns the text displayed in the status bar. |
VBE | Returns the Visual Basic for Applications editor object. |
Version | Returns the version of the application as a string. |
Visible | Sets or returns whether the main window is visible. |
Width | Sets or returns the width of the application window. |
WindowLeft | Sets or returns the distance between the left edge of the screen and the left edge of the application window. |
Windows | Returns the window collection object. |
WindowTop | Sets or returns the distance between the top of the screen and the top edge of the application window. |
Workspace | Returns the workspace object. |
Events
AddinRun | Occurs when the user has run an addin from the command line. |
AppActivate | Occurs when the application window is activated. |
AppDeactivate | Occurs when the application window is deactivated. |
aWindowTitleChanged | Occurs when window title is changed. |
BeforeExit | Occurs when the application starts to shut down. Returning False will terminate the shutdown. |
BeginCommand | Occurs when receives a command. |
BeginFileDrop | Occurs when a file is dropped on the application window. |
BeginLisp | Occurs when receives a request to evaluate a LISP expression. |
BeginModal | Occurs when a modal dialog is about to be displayed. |
BeginOpen | Occurs when receives a request to open drawing. |
BeginPlot | Occurs when receives a request to print drawing. |
BeginQuit | Occurs when the application starts to shut down. Returning True will terminate the shutdown. |
BeginSave | Occurs when receives a request to save the drawing. |
Close | Occurs when a drawing is about to be closed. |
EndCommand | Occurs when a command completed. |
EndLisp | Occurs when evaluating of a LISP expression completed. |
EndModal | Occurs when a modal dialog has been finished. |
EndOpen | Occurs after a drawing has been opened. |
EndPlot | Occurs when drawing has been sent to the printer. |
EndSave | Occurs when a request to save the drawing has been completed. |
Exit | Occurs when the application is about to exit. |
LispCanceled | Occurs when evaluating of a LISP expression canceled. |
New | Occurs when a new drawing has been created. |
NewDrawing | Occurs when a new drawing is about to be created. |
Open | Occurs after a drawing has been opened. |
Reinitialize | Occurs when the defined functions need to be reinitialized. |
Save | Occurs when a drawing is about to be saved. |
SysVarChanged | Occurs when the value of a system variable is changed. |
WindowChanged | Occurs when window state changed. |
WindowFocusChanged | Occurs when window receives or loses focus. |
WindowMovedOrResized | Occurs when window moved or resized. |