JSBuiltin Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the built-in JScript functions. These functions correspond to the static methods of the intrinsic JScript objects. The members of this enumeration are used to create JSFunctionAttribute objects.
This API supports the product infrastructure and is not intended to be used directly from your code.
public enum class JSBuiltin
public enum JSBuiltin
type JSBuiltin =
Public Enum JSBuiltin
- Inheritance
Fields
Name | Value | Description |
---|---|---|
None | 0 | No method. This is the default value. |
Array_concat | 1 | The static concat(Object, VsaEngine, Object[]) method of the ArrayPrototype class. |
Array_join | 2 | The static join(Object, Object) method of the ArrayPrototype class. |
Array_pop | 3 | The static pop(Object) method of the ArrayPrototype class. |
Array_push | 4 | The static push(Object, Object[]) method of the ArrayPrototype class. |
Array_reverse | 5 | The static reverse(Object) method of the ArrayPrototype class. |
Array_shift | 6 | The static shift(Object) method of the ArrayPrototype class. |
Array_slice | 7 | The static slice(Object, VsaEngine, Double, Object) method of the ArrayPrototype class. |
Array_sort | 8 | The static sort(Object, Object) method of the ArrayPrototype class. |
Array_splice | 9 | The static splice(Object, VsaEngine, Double, Double, Object[]) method of the ArrayPrototype class. |
Array_toLocaleString | 10 | The static toLocaleString(Object) method of the ArrayPrototype class. |
Array_toString | 11 | The static toString(Object) method of the ArrayPrototype class. |
Array_unshift | 12 | The static unshift(Object, Object[]) method of the ArrayPrototype class. |
Boolean_toString | 13 | The static toString(Object) method of the BooleanPrototype class. |
Boolean_valueOf | 14 | The static valueOf(Object) method of the BooleanPrototype class. |
Date_getDate | 15 | The static getDate(Object) method of the DatePrototype class. |
Date_getDay | 16 | The static getDay(Object) method of the DatePrototype class. |
Date_getFullYear | 17 | The static getFullYear(Object) method of the DatePrototype class. |
Date_getHours | 18 | The static getHours(Object) method of the DatePrototype class. |
Date_getMilliseconds | 19 | The static getMilliseconds(Object) method of the DatePrototype class. |
Date_getMinutes | 20 | The static getMinutes(Object) method of the DatePrototype class. |
Date_getMonth | 21 | The static getMonth(Object) method of the DatePrototype class. |
Date_getSeconds | 22 | The static getSeconds(Object) method of the DatePrototype class. |
Date_getTime | 23 | The static getTime(Object) method of the DatePrototype class. |
Date_getTimezoneOffset | 24 | The static getTimezoneOffset(Object) method of the DatePrototype class. |
Date_getUTCDate | 25 | The static getUTCDate(Object) method of the DatePrototype class. |
Date_getUTCDay | 26 | The static getUTCDay(Object) method of the DatePrototype class. |
Date_getUTCFullYear | 27 | The static getUTCFullYear(Object) method of the DatePrototype class. |
Date_getUTCHours | 28 | The static getUTCHours(Object) method of the DatePrototype class. |
Date_getUTCMilliseconds | 29 | The static getUTCMilliseconds(Object) method of the DatePrototype class. |
Date_getUTCMinutes | 30 | The static getUTCMinutes(Object) method of the DatePrototype class. |
Date_getUTCMonth | 31 | The static getUTCMonth(Object) method of the DatePrototype class. |
Date_getUTCSeconds | 32 | The static getUTCSeconds(Object) method of the DatePrototype class. |
Date_getVarDate | 33 | The static getVarDate(Object) method of the DatePrototype class. |
Date_getYear | 34 | The static getYear(Object) method of the DatePrototype class. |
Date_parse | 35 | The static parse(String) method of the DateConstructor class. |
Date_setDate | 36 | The static setDate(Object, Double) method of the DatePrototype class. |
Date_setFullYear | 37 | The static setFullYear(Object, Double, Object, Object) method of the DatePrototype class. |
Date_setHours | 38 | The static setHours(Object, Double, Object, Object, Object) method of the DatePrototype class. |
Date_setMinutes | 39 | The static setMinutes(Object, Double, Object, Object) method of the DatePrototype class. |
Date_setMilliseconds | 40 | The static setMilliseconds(Object, Double) method of the DatePrototype class. |
Date_setMonth | 41 | The static setMonth(Object, Double, Object) method of the DatePrototype class. |
Date_setSeconds | 42 | The static setSeconds(Object, Double, Object) method of the DatePrototype class. |
Date_setTime | 43 | The static setTime(Object, Double) method of the DatePrototype class. |
Date_setUTCDate | 44 | The static setUTCDate(Object, Double) method of the DatePrototype class. |
Date_setUTCFullYear | 45 | The static setUTCFullYear(Object, Double, Object, Object) method of the DatePrototype class. |
Date_setUTCHours | 46 | The static setUTCHours(Object, Double, Object, Object, Object) method of the DatePrototype class. |
Date_setUTCMinutes | 47 | The static setUTCMinutes(Object, Double, Object, Object) method of the DatePrototype class. |
Date_setUTCMilliseconds | 48 | The static setUTCMilliseconds(Object, Double) method of the DatePrototype class. |
Date_setUTCMonth | 49 | The static setUTCMonth(Object, Double, Object) method of the DatePrototype class. |
Date_setUTCSeconds | 50 | The static setUTCSeconds(Object, Double, Object) method of the DatePrototype class. |
Date_setYear | 51 | The static setYear(Object, Double) method of the DatePrototype class. |
Date_toDateString | 52 | The static toDateString(Object) method of the DatePrototype class. |
Date_toGMTString | 53 | The static toGMTString(Object) method of the DatePrototype class. |
Date_toLocaleDateString | 54 | The static toLocaleDateString(Object) method of the DatePrototype class. |
Date_toLocaleString | 55 | The static toLocaleString(Object) method of the DatePrototype class. |
Date_toLocaleTimeString | 56 | The static toLocaleTimeString(Object) method of the DatePrototype class. |
Date_toString | 57 | The static toString(Object) method of the DatePrototype class. |
Date_toTimeString | 58 | The static toTimeString(Object) method of the DatePrototype class. |
Date_toUTCString | 59 | The static toUTCString(Object) method of the DatePrototype class. |
Date_UTC | 60 | The static UTC(Object, Object, Object, Object, Object, Object, Object) method of the DateConstructor class. |
Date_valueOf | 61 | The static valueOf(Object) method of the DatePrototype class. |
Enumerator_atEnd | 62 | The static atEnd(Object) method of the EnumeratorPrototype class. |
Enumerator_item | 63 | The static item(Object) method of the EnumeratorPrototype class. |
Enumerator_moveFirst | 64 | The static moveFirst(Object) method of the EnumeratorPrototype class. |
Enumerator_moveNext | 65 | The static moveNext(Object) method of the EnumeratorPrototype class. |
Error_toString | 66 | The static toString(Object) method of the ErrorPrototype class. |
Function_apply | 67 | The static apply(Object, Object, Object) method of the FunctionPrototype class. |
Function_call | 68 | The static call(Object, Object, Object[]) method of the FunctionPrototype class. |
Function_toString | 69 | The static toString(Object) method of the FunctionPrototype class. |
Global_CollectGarbage | 70 | The static CollectGarbage() method of the GlobalObject class. |
Global_decodeURI | 71 | The static decodeURI(Object) method of the GlobalObject class. |
Global_decodeURIComponent | 72 | The static decodeURIComponent(Object) method of the GlobalObject class. |
Global_encodeURI | 73 | The static encodeURI(Object) method of the GlobalObject class. |
Global_encodeURIComponent | 74 | The static encodeURIComponent(Object) method of the GlobalObject class. |
Global_escape | 75 | The static escape(Object) method of the GlobalObject class. |
Global_eval | 76 | The static eval(Object) method of the GlobalObject class. |
Global_GetObject | 77 | The static GetObject(Object, Object) method of the GlobalObject class. |
Global_isNaN | 78 | The static isNaN(Object) method of the GlobalObject class. |
Global_isFinite | 79 | The static isFinite(Double) method of the GlobalObject class. |
Global_parseFloat | 80 | The static parseFloat(Object) method of the GlobalObject class. |
Global_parseInt | 81 | The static parseInt(Object, Object) method of the GlobalObject class. |
Global_ScriptEngine | 82 | The static ScriptEngine() method of the GlobalObject class. |
Global_ScriptEngineBuildVersion | 83 | The static ScriptEngineBuildVersion() method of the GlobalObject class. |
Global_ScriptEngineMajorVersion | 84 | The static ScriptEngineMajorVersion() method of the GlobalObject class. |
Global_ScriptEngineMinorVersion | 85 | The static ScriptEngineMinorVersion() method of the GlobalObject class. |
Global_unescape | 86 | The static unescape(Object) method of the GlobalObject class. |
Math_abs | 87 | The static abs(Double) method of the MathObject class. |
Math_acos | 88 | The static acos(Double) method of the MathObject class. |
Math_asin | 89 | The static asin(Double) method of the MathObject class. |
Math_atan | 90 | The static atan(Double) method of the MathObject class. |
Math_atan2 | 91 | The static atan2(Double, Double) method of the MathObject class. |
Math_ceil | 92 | The static ceil(Double) method of the MathObject class. |
Math_cos | 93 | The static cos(Double) method of the MathObject class. |
Math_exp | 94 | The static exp(Double) method of the MathObject class. |
Math_floor | 95 | The static floor(Double) method of the MathObject class. |
Math_log | 96 | The static log(Double) method of the MathObject class. |
Math_max | 97 | The static max(Object, Object, Object[]) method of the MathObject class. |
Math_min | 98 | The static min(Object, Object, Object[]) method of the MathObject class. |
Math_pow | 99 | The static pow(Double, Double) method of the MathObject class. |
Math_random | 100 | The static random() method of the MathObject class. |
Math_round | 101 | The static round(Double) method of the MathObject class. |
Math_sin | 102 | The static sin(Double) method of the MathObject class. |
Math_sqrt | 103 | The static sqrt(Double) method of the MathObject class. |
Math_tan | 104 | The static tan(Double) method of the MathObject class. |
Number_toExponential | 105 | The static toExponential(Object, Object) method of the NumberPrototype class. |
Number_toFixed | 106 | The static toFixed(Object, Double) method of the NumberPrototype class. |
Number_toLocaleString | 107 | The static toLocaleString(Object) method of the NumberPrototype class. |
Number_toPrecision | 108 | The static toPrecision(Object, Object) method of the NumberPrototype class. |
Number_toString | 109 | The static toString(Object, Object) method of the NumberPrototype class. |
Number_valueOf | 110 | The static valueOf(Object) method of the NumberPrototype class. |
Object_hasOwnProperty | 111 | The static hasOwnProperty(Object, Object) method of the ObjectPrototype class. |
Object_isPrototypeOf | 112 | The static isPrototypeOf(Object, Object) method of the ObjectPrototype class. |
Object_propertyIsEnumerable | 113 | The static propertyIsEnumerable(Object, Object) method of the ObjectPrototype class. |
Object_toLocaleString | 114 | The static toLocaleString(Object) method of the ObjectPrototype class. |
Object_toString | 115 | The static toString(Object) method of the ObjectPrototype class. |
Object_valueOf | 116 | The static valueOf(Object) method of the ObjectPrototype class. |
RegExp_compile | 117 | The static compile(Object, Object, Object) method of the RegExpPrototype class. |
RegExp_exec | 118 | The static exec(Object, Object) method of the RegExpPrototype class. |
RegExp_test | 119 | The static test(Object, Object) method of the RegExpPrototype class. |
RegExp_toString | 120 | The static toString(Object) method of the RegExpPrototype class. |
String_anchor | 121 | The static anchor(Object, Object) method of the StringPrototype class. |
String_big | 122 | The static big(Object) method of the StringPrototype class. |
String_blink | 123 | The static blink(Object) method of the StringPrototype class. |
String_bold | 124 | The static bold(Object) method of the StringPrototype class. |
String_charAt | 125 | The static charAt(Object, Double) method of the StringPrototype class. |
String_charCodeAt | 126 | The static charCodeAt(Object, Double) method of the StringPrototype class. |
String_concat | 127 | The static concat(Object, Object[]) method of the StringPrototype class. |
String_fixed | 128 | The static fixed(Object) method of the StringPrototype class. |
String_fontcolor | 129 | The static fontcolor(Object, Object) method of the StringPrototype class. |
String_fontsize | 130 | The static fontsize(Object, Object) method of the StringPrototype class. |
String_fromCharCode | 131 | The static fromCharCode(Object[]) method of the StringConstructor class. |
String_indexOf | 132 | The static indexOf(Object, Object, Double) method of the StringPrototype class. |
String_italics | 133 | The static italics(Object) method of the StringPrototype class. |
String_lastIndexOf | 134 | The static lastIndexOf(Object, Object, Double) method of the StringPrototype class. |
String_link | 135 | The static link(Object, Object) method of the StringPrototype class. |
String_localeCompare | 136 | The static localeCompare(Object, Object) method of the StringPrototype class. |
String_match | 137 | The static match(Object, VsaEngine, Object) method of the StringPrototype class. |
String_replace | 138 | The static replace(Object, Object, Object) method of the StringPrototype class. |
String_search | 139 | The static search(Object, VsaEngine, Object) method of the StringPrototype class. |
String_slice | 140 | The static slice(Object, Double, Object) method of the StringPrototype class. |
String_small | 141 | The static small(Object) method of the StringPrototype class. |
String_split | 142 | The static split(Object, VsaEngine, Object, Object) method of the StringPrototype class. |
String_strike | 143 | The static strike(Object) method of the StringPrototype class. |
String_sub | 144 | The static sub(Object) method of the StringPrototype class. |
String_substr | 145 | The static substr(Object, Double, Object) method of the StringPrototype class. |
String_substring | 146 | The static substring(Object, Double, Object) method of the StringPrototype class. |
String_sup | 147 | The static sup(Object) method of the StringPrototype class. |
String_toLocaleLowerCase | 148 | The static toLocaleLowerCase(Object) method of the StringPrototype class. |
String_toLocaleUpperCase | 149 | The static toLocaleUpperCase(Object) method of the StringPrototype class. |
String_toLowerCase | 150 | The static toLowerCase(Object) method of the StringPrototype class. |
String_toString | 151 | The static toString(Object) method of the StringPrototype class. |
String_toUpperCase | 152 | The static toUpperCase(Object) method of the StringPrototype class. |
String_valueOf | 153 | The static valueOf(Object) method of the StringPrototype class. |
VBArray_dimensions | 154 | The static dimensions(Object) method of the VBArrayPrototype class. |
VBArray_getItem | 155 | The static getItem(Object, Object[]) method of the VBArrayPrototype class. |
VBArray_lbound | 156 | The static lbound(Object, Object) method of the VBArrayPrototype class. |
VBArray_toArray | 157 | The static toArray(Object, VsaEngine) method of the VBArrayPrototype class. |
VBArray_ubound | 158 | The static ubound(Object, Object) method of the VBArrayPrototype class. |