type TCefContextMenuParamsRef = class(TCefBaseRefCountedRef, ICefContextMenuParams)
This item has no description.
function GetXCoord: Integer; |
|
function GetYCoord: Integer; |
|
function GetTypeFlags: TCefContextMenuTypeFlags; |
|
function GetLinkUrl: ustring; |
|
function GetUnfilteredLinkUrl: ustring; |
|
function GetSourceUrl: ustring; |
|
function HasImageContents: Boolean; |
|
function GetTitleText: ustring; |
|
function GetPageUrl: ustring; |
|
function GetFrameUrl: ustring; |
|
function GetFrameCharset: ustring; |
|
function GetMediaType: TCefContextMenuMediaType; |
|
function GetMediaStateFlags: TCefContextMenuMediaStateFlags; |
|
function GetSelectionText: ustring; |
|
function GetMisspelledWord: ustring; |
|
function GetDictionarySuggestions(const suggestions: TStringList): Boolean; |
|
function IsEditable: Boolean; |
|
function IsSpellCheckEnabled: Boolean; |
|
function GetEditStateFlags: TCefContextMenuEditStateFlags; |
|
function IsCustomMenu: Boolean; |
|
class function UnWrap(data: Pointer): ICefContextMenuParams; |
function GetXCoord: Integer; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.GetXCoord. Returns the X coordinate of the mouse where the context menu was invoked. Coords are relative to the associated RenderView's origin. |
function GetYCoord: Integer; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.GetYCoord. Returns the Y coordinate of the mouse where the context menu was invoked. Coords are relative to the associated RenderView's origin. |
function GetTypeFlags: TCefContextMenuTypeFlags; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.GetTypeFlags. Returns flags representing the type of node that the context menu was invoked on. |
function GetLinkUrl: ustring; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.GetLinkUrl. Returns the URL of the link, if any, that encloses the node that the context menu was invoked on. |
function GetUnfilteredLinkUrl: ustring; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.GetUnfilteredLinkUrl. Returns the link URL, if any, to be used ONLY for "copy link address". We don't validate this field in the frontend process. |
function GetSourceUrl: ustring; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.GetSourceUrl. Returns the source URL, if any, for the element that the context menu was invoked on. Example of elements with source URLs are img, audio, and video. |
function HasImageContents: Boolean; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.HasImageContents. Returns true (1) if the context menu was invoked on an image which has non-NULL contents. |
function GetTitleText: ustring; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.GetTitleText. Returns the title text or the alt text if the context menu was invoked on an image. |
function GetPageUrl: ustring; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.GetPageUrl. Returns the URL of the top level page that the context menu was invoked on. |
function GetFrameUrl: ustring; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.GetFrameUrl. Returns the URL of the subframe that the context menu was invoked on. |
function GetFrameCharset: ustring; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.GetFrameCharset. Returns the character encoding of the subframe that the context menu was invoked on. |
function GetMediaType: TCefContextMenuMediaType; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.GetMediaType. Returns the type of context node that the context menu was invoked on. |
function GetMediaStateFlags: TCefContextMenuMediaStateFlags; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.GetMediaStateFlags. Returns flags representing the actions supported by the media element, if any, that the context menu was invoked on. |
function GetSelectionText: ustring; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.GetSelectionText. Returns the text of the selection, if any, that the context menu was invoked on. |
function GetMisspelledWord: ustring; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.GetMisspelledWord. Returns the text of the misspelled word, if any, that the context menu was invoked on. |
function GetDictionarySuggestions(const suggestions: TStringList): Boolean; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.GetDictionarySuggestions. Returns true (1) if suggestions exist, false (0) otherwise. Fills in |suggestions| from the spell check service for the misspelled word if there is one. |
function IsEditable: Boolean; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.IsEditable. Returns true (1) if the context menu was invoked on an editable node. |
function IsSpellCheckEnabled: Boolean; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.IsSpellCheckEnabled. Returns true (1) if the context menu was invoked on an editable node where spell-check is enabled. |
function GetEditStateFlags: TCefContextMenuEditStateFlags; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.GetEditStateFlags. Returns flags representing the actions supported by the editable node, if any, that the context menu was invoked on. |
function IsCustomMenu: Boolean; |
|
This item has no description. Showing description inherited from ICefContextMenuParams.IsCustomMenu. Returns true (1) if the context menu contains items specified by the renderer process. |
class function UnWrap(data: Pointer): ICefContextMenuParams; |
|
This item has no description. |