Get/sets the value for a key.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntaxpublic Object this[
Object index
] { get; set; }Public Default Property Item (
index As Object
) As Object
Get
Set
public:
property Object^ default[Object^ index] {
Object^ get (Object^ index);
void set (Object^ index, Object^ value);
}Parameters
- index Object
-
The indexing key.
Property Value
Object
The key's value.
Remarks
Set/return the value for a key.
If a key does not exist, Nothing is returned.
Assigning to a key changes the value.
If the key does not exist, it is created.
The Text key is special.
It returns a nicely formatted string showing all the key/value pairs.
(Be warned that some values may not be shown correctly.)
See Also