Eplan Platform API
Eplan.EplApi.MasterData Namespace / MDPartsDatabase Class / UpdateScheme Method
Example

In This Topic
    UpdateScheme Method
    In This Topic
    Updates the scheme of the database.
    Syntax
    public void UpdateScheme()
    public:
    void UpdateScheme(); 
    Remarks
    If the scheme is already up to date, than nothing will be done.
    Example
    MDPartsDatabase database = partsManagement.OpenDatabase();
    if ( !database.IsSchemeUpToDate )
    {
     database.UpdateScheme();
    }
    See Also