type ICefStringMap = interface(IInterface)
Custom interface used to handle all the CEF functions related to CefStringMap.
function GetHandle: TCefStringMap; |
|
function GetSize: NativeUInt; |
|
function Find(const Key: ustring): ustring; |
|
function GetKey(Index: NativeUInt): ustring; |
|
function GetValue(Index: NativeUInt): ustring; |
|
function Append(const Key, Value: ustring) : boolean; |
|
procedure Clear; |
property Handle : TCefStringMap read GetHandle; |
|
property Size : NativeUInt read GetSize; |
|
property Key[index: NativeUInt]: ustring read GetKey; |
|
property Value[index: NativeUInt]: ustring read GetValue; |
function GetHandle: TCefStringMap; |
|
This item has no description. |
function GetSize: NativeUInt; |
|
This item has no description. |
function Find(const Key: ustring): ustring; |
|
This item has no description. |
function GetKey(Index: NativeUInt): ustring; |
|
This item has no description. |
function GetValue(Index: NativeUInt): ustring; |
|
This item has no description. |
function Append(const Key, Value: ustring) : boolean; |
|
This item has no description. |
procedure Clear; |
|
This item has no description. |
property Handle : TCefStringMap read GetHandle; |
|
This item has no description. |
property Size : NativeUInt read GetSize; |
|
This item has no description. |
property Key[index: NativeUInt]: ustring read GetKey; |
|
This item has no description. |
property Value[index: NativeUInt]: ustring read GetValue; |
|
This item has no description. |