IMetabaseUpdate.SpecialObjectsNode

Syntax

SpecialObjectsNode: IMetabaseUpdateSpecialObjectsNode;

Description

The property is read-only.

The SpecialObjectsNode property returns the object, defining parameters of special objects updating.

Example

Executing the example requires the update file C:\Update.pef.

Sub Main;

Var

MB: IMetabase;

Update: IMetabaseUpdate;

SpecialObjNode: IMetabaseUpdateSpecialObjectsNode;

Begin

MB := MetabaseClass.Active;

Update := Mb.CreateUpdate;

Update.LoadFromFile("C:\Update.pef");

SpecialObjNode := Update.SpecialObjectsNode;

SpecialObjNode.ApplyObject(MetabaseSpecialObject.SharedParams) := True;

Update.SaveToFileNF("C:\Update.pefx");

End Sub Main;

After executing this example the special object, global variables, is added to the update loaded from the C:\Update.pef file. Then the update is saved.

See also:

IMetabaseUpdate