RDSElementCard: RdsElementCardStyle;
In the RDSElementCard property it is possible to select type of MDM dictionary element card.
By default, the RdsElementCardStyle.Standart value is used.
Add links to the Fore, Metabase system assemblies.
Sub UserProc;
Var
Mb: IMetabase;
SP: ISharedParams;
Begin
// Get the current repository
Mb := MetabaseClass.Active;
// Set table view to display MDM dictionary element card in default settings
SP := Mb.SpecialObject(MetabaseSpecialObject.SharedParams).Edit As ISharedParams;
SP.DefaultBehaviour.RDSElementCard := RdsElementCardStyle.PropertyList;
(SP As IMetabaseObject).Save;
End Sub UserProc;
After executing the example, in default settings the table type to display MDM dictionary element card will be set.
See also: