Page 1 of 1

Hiding object?

Posted: 13 Apr 2017, 11:36
by agvs
Hi,
After making objects (line, circle), Can I hide them as Xml?(Not delete them)
Let me know.
Thanks,

Re: Hiding object?

Posted: 13 Apr 2017, 22:18
by support
Hello,

You may create a hidden layer, and then place entities on this layer after creating. The following XML code creates a hidden layer.

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<cadsofttools version="2"> 
  <add>
    <cstSectionTables Name="TABLES">
      <SubEntities>               
        <cstTable Name="LAYER">
          <SubEntities>
            <cstLayer name="HiddenLayer" Visible="False"/>
          </SubEntities>                                                  
        </cstTable>
      </SubEntities>
    </cstSectionTables>
  </add>                                                                 
</cadsofttools>
Mikhail