Eplan Platform API
Eplan.EplApi.DataModel Namespace / Page Class / Properties Property
Example

In This Topic
    Properties Property (Page)
    In This Topic
    Property enabling access to internal properties of the Page object.
    Syntax
    public new PagePropertyList Properties {get;}
    public:
    new property PagePropertyList^ Properties {
       PagePropertyList^ get();
    }

    Property Value

    Eplan properties of the page.
    Exceptions
    ExceptionDescription
    Thrown when no new logical page can be added to the project.
    Example
    Page page = oProject.Pages[10];
    page.Properties.PAGE_REVISION_APPROVEDBY = "John";
    string strCounter = page.Properties.PAGE_COUNTER;
    See Also