NamingDelimiter: String;
The NamingDelimiter property determines a delimiter of attributes names.
The IMetaDictionary.AttributeNamings property returns a collection of attributes names.
Executing the example requires that the repository contains a time series database with the OBJ_FC identifier with configured time series names.
Sub Main;
Var
Mb: Imetabase;
Rubr: IRubricator;
F: IMetabaseObject;
Facts: IMetaDictionary;
Atts: IMetaAttributeNamings;
i: Integer;
Begin
Mb := MetabaseClass.Active;
Rubr := MB.ItemById("OBJ_FC").Edit As IRubricator;
F := (Rubr.Facts As IMetabaseObject).Edit;
Facts := F.Edit As IMetaDictionary;
Atts := Facts.AttributeNamings;
Atts.NamingDelimiter := "--";
(Facts As IMetabaseObject).Save;
End Sub Main;
After executing the example a standard delimiter of attributes names | (image on the left) is substituted with the character -- (image on the right):
See also: