public PagePropertyList NameParts {get; set;}
public: property PagePropertyList^ NameParts { PagePropertyList^ get(); void set ( PagePropertyList^ value); }
public PagePropertyList NameParts {get; set;}
public: property PagePropertyList^ NameParts { PagePropertyList^ get(); void set ( PagePropertyList^ value); }
Exception | Description |
---|---|
Eplan.EplApi.Base.BaseException | Cannot set name of the page |
Page pg; PagePropertyList pagePropList = new PagePropertyList(); pagePropList.DESIGNATION_PLANT = "API_Test"; pagePropList.DESIGNATION_LOCATION = "New_Schematic"; pagePropList.PAGE_COUNTER = 002; pg.NameParts = pagePropList;