IRdsDictionary.IsBigDictionary

Syntax

IsBigDictionary: Boolean;

Description

The IsBigDictionary property determines whether the dictionary supports a large number of elements.

Comments

Available values:

Example

Executing the example requires that the repository contains an MDM repository with the RDS identifier. This repository should contain an MDM dictionary with the DIC identifier.

Add links to the Metabase, Rds system assemblies.

Sub UserProc;
Var
    mb: IMetabase;
    rdsKey: Integer;
    Dict: IRdsDictionary;
Begin
    mb := MetabaseClass.Active;
    rdsKey := mb.GetObjectKeyById("RDS");
    // Get dictionary
    Dict := mb.ItemByIdNamespace("DIC", rdsKey).Edit As IRdsDictionary;
    // Specify, that the dictionary supports working with a large number of elements
    If Not Dict.IsBigDictionary Then
        Dict.IsBigDictionary := True;
    End If;
    (Dict As IMetabaseObject).Save;
End Sub UserProc;

After executing the example the dictionary supports work with a large number of elements.

See also:

IRdsDictionary