| ||||||||||||||||||
SummaryFinds a specified, Unicode-encoded property and retrieves its value. | ||||||||||||||||||
SyntaxJSBool JS_GetUCProperty(JSContext *cx, JSObject *obj, const jschar *name, size_t namelen, jsval *vp);
| ||||||||||||||||||
DescriptionJS_GetUCProperty examines a specified JS object, obj , its scope and prototype links, for a property named name . namelen indicates the size, in bytes, of name . If the property is not defined on the object in its scope, or in its prototype links, vp is set to JSVAL_VOID .
If the property exists,
| ||||||||||||||||||
See Also
|