API Help
Eplan.EplApi.EServices Namespace / SubProjectsCollection Class / Update Method
Example

In This Topic
    Update Method (SubProjectsCollection)
    In This Topic
    Updates project from subproject.
    Syntax
    public void Update( 
       SubProject pSubProject
    )
    public:
    void Update( 
       SubProject^ pSubProject
    ) 

    Parameters

    pSubProject
    Exceptions
    ExceptionDescription
    Thrown if subproject is in incorrect state and update is not possible.
    Thrown when parameter is null.
    Example
    Example of updating a master project with content of subproject
    //Update from second subproject
    oSubProjectsCollection.Update(oSubProjectsCollection[0]);
    
    
    
    See Also