IsSpecial(Index: MetabaseSpecialObject): Boolean;
Index. Type of special repository object.
The IsSpecial property indicates whether the object belongs to special repository objects.
If the property is set to True, the current object is the special repository object. The type of special repository object is specified in the Index parameter.
Executing the example requires that the repository contains a map with the RUSSIA identifier.
Add a link to the Metabase system assembly.
Sub UserProc;
Var
MB: IMetabase;
Begin
MB := MetabaseClass.Active;
MB.ItemById("RUSSIA").IsSpecial(MetabaseSpecialObject.DefaultTopobase) := True;
End Sub UserProc;
After executing the example the RUSSIA map is set as a default map for the current repository.
See also: