[This is preliminary documentation and is subject to change.]
The CefV8Value type exposes the following members.Properties
Name | Description | |
---|---|---|
HasException |
Returns true if the last method call resulted in an exception. This
attribute exists only in the scope of the current CEF value object.
| |
IsArray |
True if the value type is array.
| |
IsBool |
True if the value type is bool.
| |
IsDate |
True if the value type is Date.
| |
IsDouble |
True if the value type is double.
| |
IsFunction |
True if the value type is function.
| |
IsInt |
True if the value type is int.
| |
IsNull |
True if the value type is null.
| |
IsObject |
True if the value type is object.
| |
IsString |
True if the value type is string.
| |
IsUInt |
True if the value type is unsigned int.
| |
IsUndefined |
True if the value type is undefined.
| |
IsUserCreated |
OBJECT METHODS - These methods are only available on objects. Arrays and
functions are also objects. String- and integer-based keys can be used
interchangably with the framework converting between them as necessary.
Returns true if this is a user created object.
| |
IsValid |
Returns true if the underlying handle is valid and it can be accessed on
the current thread. Do not call any other methods if this method returns
false.
|
See Also