GefApplication.GetProjectEnvironment (method)

Gets the project environment for CimEdit/CimView.
Syntax: object.GetProjectEnvironment Project, SiteRoot
Parameters:
Project As BSTR* - The name of the default project.
SiteRoot As BSTR* - The path to locate the *.gef file and configuration for a project.
Description: Gets the project environment for CimEdit/CimView.

Examples

Sub Application_SetProjectEnvironment()
  Dim cimApp as Object
  Dim strProject as String
  Dim strPath as String
  Set cimApp as CreateObject("CimEdit")
  cimApp.GetProjectEnvironment strProject, strPath
End Sub