Name: String;
The Name property determines the name of the object.
In this example there supposed to be an object with ID Object that has the name for the Spanish language (Argentina) in repository.
Add a link to the Metabase system assembly.
Sub UserProc;
Var
Obj: IMetabaseObjectDescriptor;
NamesL: IMetabaseObjectNames;
NameLocale: IMetabaseObjectName;
Begin
Obj := MetabaseClass.Active.ItemById("Object").EditDescriptor;
NamesL := Obj.Names;
NameLocale := NamesL.FindByLocale(LocaleCodeID.Spanish_Argentina);
NameLocale.Name := "Escenario";
Obj.SaveDescriptor
End Sub UserProc;
The name for the Spanish language is changed for the object after executing this example.
See also: