IntelliCAD 11.1 Object Library | |
LoadSDS Method | |
See Also |
- ApplicationName
- A string variable representing the name of the SDS application.
Application Object : LoadSDS Method |
Description
Loads a specified SDS application.
Syntax
Visual Basic |
---|
Public Sub LoadSDS( _ ByVal ApplicationName As String _ ) |
Parameters
- ApplicationName
- A string variable representing the name of the SDS application.
Example
This example demonstrates how to use the LoadApplication method to load an SDS or LISP application.
Private Sub LoadApplicationExample()
Dim myObject As Application
' Load a file called mylispfl.lsp
Application.LoadApplication mylispfl
End Sub