IUserData
1. Definition
This interface makes it possible to store key-value pairs and read them back.
2. Methods
-
Assigns Value to the Key. In case Key had a value assigned already this value will be replaced
procedure SetValue(Key: string; Value: Variant)
-
Returns the value of Key. If Key doesn't exist the return value will be empty.
function GetValue(Key: string): Variant