COM object EvObject3D
EvApplication >EvFileCollection > EvFile > EvObjects3DCollection > EvObject3D
View the COM map and the COM summary. |
The EvObject3D object gives you the ability access information about 3D objects and to export 3D objects from an EV file.
The EvFile.Objects3D[] property lists all the 3D objects in an EV file and is an EvObjects3DCollection.
EvObject3D methods and properties:
|
Description |
Export(string FileName) SummaryExport this 3D object to the given file. Parameters
ReturnWhether successful. |
|
Export3dAnalysisByRegions(string FileName, EvScene) SummaryExport the 3D analysis by regions for a 3D object from the specified scene to the given file. The export operates on a specified 3D region class object displayed on a scene. Parameters
ReturnWhether successful. Example'Open the EV file Set EvApp = CreateObject("EchoviewCom.EvApplication") Set vEvFile = EvApp.OpenFile("YourEVFile.EV") 'Specify a 3D object Dim vEvObjectsCollection: Set vEvObjectsCollection = vEvFile.Objects3d Dim vEvObject: Set vEvObject = vEvObjectsCollection.FindByName("NameOfObjectFromScenePropertiesDialogBox") 'Specify a scene Dim vEvScenesCollection: Set vEvScenesCollection = vEvFile.Scenes Dim vEvScene: Set vEvScene = vEvScenesCollection.FindByName("NameOfScene") vEvObject.Export3dAnalysisByRegions "YourOutputFile.csv", vEvScene |
|
(read-only) string Name SummaryAccess the name of the 3D object. |
See also
Scripting with COM objects
COM object hierarchy
EvObjects3DCollection