Eplan Platform API
EPLAN API / User Guide / API DataModel / API Pro Panel / InstallationSpace (layout space in GUI)
In This Topic
    InstallationSpace (layout space in GUI)
    In This Topic

    The  InstallationSpace  represents a 3-dimensional space where objects can be located. 

    It is also a root node for other 3D objects in the Layout spaces navigator. 

    The following example shows how to create an  InstallationSpace

    C#
    Copy Code
    InstallationSpace oInstallationSpace = new InstallationSpace();
    oInstallationSpace.Create(oProject, "InstallationSpace test");
    
     
    

     

    We can retrieve existing  InstallationSpaces  from a project this way: 

     

    C#
    Copy Code
    InstallationSpace[] arrInstallationSpace = oProject.InstallationSpaces;
    

     

    In the GUI it is called Layout space. It is independent of pages in a project.