INamedEntity.Key

Syntax

Key: Integer;

Description

The Key property returns the object key.

Example

The example under examination requires the Dic object of the IRdsDictionary type.

Sub User;

Var

Dic : IRdsDictionary;

Link : IRdsLink;

Begin

Link := Dic.Links.Item(0);

Debug.WriteLine(Link.Key.ToString);

End Sub User;

After executing the example an MDM dictionary connection key is displayed in the console window.

See also:

INamedEntity