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

UpdateScheme Method
Updates the scheme of the database.
Syntax
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