type ICefComponent = interface(ICefBaseRefCounted)
Structure representing a snapshot of a component's state at the time of retrieval. To get updated information, retrieve a new cef_component_t object via ICefComponentUpdater.GetComponentById or GetComponents. The functions of this structure may be called on any thread.
UNKNOWN
<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_component_updater_capi.h">CEF source file: /include/capi/cef_component_updater_capi.h (cef_component_t))
| Public | function GetId: ustring; |
| Public | function GetName: ustring; |
| Public | function GetVersion: ustring; |
| Public | function GetState: TCefComponentState; |
| Public | function GetId: ustring; |
|
Returns the unique identifier for this component. Attributes
| |
| Public | function GetName: ustring; |
|
Returns the human-readable name of this component. Returns an NULL string if the component is not installed. | |
| Public | function GetVersion: ustring; |
|
Returns the version of this component as a string (e.g., "1.2.3.4"). Returns an NULL string if the component is not installed. | |
| Public | function GetState: TCefComponentState; |
|
Returns the state of this component at the time this object was created. A component is considered installed when its state is one of: CEF_COMPONENT_STATE_UPDATED, CEF_COMPONENT_STATE_UP_TO_DATE, or CEF_COMPONENT_STATE_RUN. | |