type TCefCustomStringMultimap = class(TInterfacedObject, ICefStringMultimap)
CEF string multimaps are a set of key/value string pairs. More than one value can be assigned to a single key.
FHandle: TCefStringMultimap; |
function GetHandle: TCefStringMultimap; virtual; |
|
function GetSize: NativeUInt; virtual; |
|
function FindCount(const Key: ustring): NativeUInt; virtual; |
|
function GetEnumerate(const Key: ustring; ValueIndex: NativeUInt): ustring; virtual; |
|
function GetKey(Index: NativeUInt): ustring; virtual; |
|
function GetValue(Index: NativeUInt): ustring; virtual; |
|
function Append(const Key, Value: ustring) : boolean; virtual; |
|
procedure Clear; virtual; |
|
constructor Create; virtual; |
FHandle: TCefStringMultimap; |
|
This item has no description. |
function GetHandle: TCefStringMultimap; virtual; |
|
This item has no description. |
function GetSize: NativeUInt; virtual; |
|
Return the number of elements in the string multimap. |
function FindCount(const Key: ustring): NativeUInt; virtual; |
|
Return the number of values with the specified key. |
function GetEnumerate(const Key: ustring; ValueIndex: NativeUInt): ustring; virtual; |
|
Return the value_index-th value with the specified key. |
function GetKey(Index: NativeUInt): ustring; virtual; |
|
Return the key at the specified zero-based string multimap index. |
function GetValue(Index: NativeUInt): ustring; virtual; |
|
Return the value at the specified zero-based string multimap index. |
function Append(const Key, Value: ustring) : boolean; virtual; |
|
Append a new key/value pair at the end of the string multimap. |
procedure Clear; virtual; |
|
Clear the string multimap. |
constructor Create; virtual; |
|
This item has no description. |