JSBuiltin 枚举

定义

指定内置 JScript 函数。 这些函数对应于内部 JScript 对象的静态方法。 此枚举的成员用于创建 JSFunctionAttribute 对象。

此 API 支持产品基础结构,不能在代码中直接使用。

public enum class JSBuiltin
public enum JSBuiltin
type JSBuiltin = 
Public Enum JSBuiltin
继承
JSBuiltin

字段

名称 说明
None 0

无方法。 这是默认值。

Array_concat 1

类的concat(Object, VsaEngine, Object[])静态ArrayPrototype方法。

Array_join 2

类的join(Object, Object)静态ArrayPrototype方法。

Array_pop 3

类的pop(Object)静态ArrayPrototype方法。

Array_push 4

类的push(Object, Object[])静态ArrayPrototype方法。

Array_reverse 5

类的reverse(Object)静态ArrayPrototype方法。

Array_shift 6

类的shift(Object)静态ArrayPrototype方法。

Array_slice 7

类的slice(Object, VsaEngine, Double, Object)静态ArrayPrototype方法。

Array_sort 8

类的sort(Object, Object)静态ArrayPrototype方法。

Array_splice 9

类的splice(Object, VsaEngine, Double, Double, Object[])静态ArrayPrototype方法。

Array_toLocaleString 10

类的toLocaleString(Object)静态ArrayPrototype方法。

Array_toString 11

类的toString(Object)静态ArrayPrototype方法。

Array_unshift 12

类的unshift(Object, Object[])静态ArrayPrototype方法。

Boolean_toString 13

类的toString(Object)静态BooleanPrototype方法。

Boolean_valueOf 14

类的valueOf(Object)静态BooleanPrototype方法。

Date_getDate 15

类的getDate(Object)静态DatePrototype方法。

Date_getDay 16

类的getDay(Object)静态DatePrototype方法。

Date_getFullYear 17

类的getFullYear(Object)静态DatePrototype方法。

Date_getHours 18

类的getHours(Object)静态DatePrototype方法。

Date_getMilliseconds 19

类的getMilliseconds(Object)静态DatePrototype方法。

Date_getMinutes 20

类的getMinutes(Object)静态DatePrototype方法。

Date_getMonth 21

类的getMonth(Object)静态DatePrototype方法。

Date_getSeconds 22

类的getSeconds(Object)静态DatePrototype方法。

Date_getTime 23

类的getTime(Object)静态DatePrototype方法。

Date_getTimezoneOffset 24

类的getTimezoneOffset(Object)静态DatePrototype方法。

Date_getUTCDate 25

类的getUTCDate(Object)静态DatePrototype方法。

Date_getUTCDay 26

类的getUTCDay(Object)静态DatePrototype方法。

Date_getUTCFullYear 27

类的getUTCFullYear(Object)静态DatePrototype方法。

Date_getUTCHours 28

类的getUTCHours(Object)静态DatePrototype方法。

Date_getUTCMilliseconds 29

类的getUTCMilliseconds(Object)静态DatePrototype方法。

Date_getUTCMinutes 30

类的getUTCMinutes(Object)静态DatePrototype方法。

Date_getUTCMonth 31

类的getUTCMonth(Object)静态DatePrototype方法。

Date_getUTCSeconds 32

类的getUTCSeconds(Object)静态DatePrototype方法。

Date_getVarDate 33

类的getVarDate(Object)静态DatePrototype方法。

Date_getYear 34

类的getYear(Object)静态DatePrototype方法。

Date_parse 35

类的parse(String)静态DateConstructor方法。

Date_setDate 36

类的setDate(Object, Double)静态DatePrototype方法。

Date_setFullYear 37

类的setFullYear(Object, Double, Object, Object)静态DatePrototype方法。

Date_setHours 38

类的setHours(Object, Double, Object, Object, Object)静态DatePrototype方法。

Date_setMinutes 39

类的setMinutes(Object, Double, Object, Object)静态DatePrototype方法。

Date_setMilliseconds 40

类的setMilliseconds(Object, Double)静态DatePrototype方法。

Date_setMonth 41

类的setMonth(Object, Double, Object)静态DatePrototype方法。

Date_setSeconds 42

类的setSeconds(Object, Double, Object)静态DatePrototype方法。

Date_setTime 43

类的setTime(Object, Double)静态DatePrototype方法。

Date_setUTCDate 44

类的setUTCDate(Object, Double)静态DatePrototype方法。

Date_setUTCFullYear 45

类的setUTCFullYear(Object, Double, Object, Object)静态DatePrototype方法。

Date_setUTCHours 46

类的setUTCHours(Object, Double, Object, Object, Object)静态DatePrototype方法。

Date_setUTCMinutes 47

类的setUTCMinutes(Object, Double, Object, Object)静态DatePrototype方法。

Date_setUTCMilliseconds 48

类的setUTCMilliseconds(Object, Double)静态DatePrototype方法。

Date_setUTCMonth 49

类的setUTCMonth(Object, Double, Object)静态DatePrototype方法。

Date_setUTCSeconds 50

类的setUTCSeconds(Object, Double, Object)静态DatePrototype方法。

Date_setYear 51

类的setYear(Object, Double)静态DatePrototype方法。

Date_toDateString 52

类的toDateString(Object)静态DatePrototype方法。

Date_toGMTString 53

类的toGMTString(Object)静态DatePrototype方法。

Date_toLocaleDateString 54

类的toLocaleDateString(Object)静态DatePrototype方法。

Date_toLocaleString 55

类的toLocaleString(Object)静态DatePrototype方法。

Date_toLocaleTimeString 56

类的toLocaleTimeString(Object)静态DatePrototype方法。

Date_toString 57

类的toString(Object)静态DatePrototype方法。

Date_toTimeString 58

类的toTimeString(Object)静态DatePrototype方法。

Date_toUTCString 59

类的toUTCString(Object)静态DatePrototype方法。

Date_UTC 60

类的UTC(Object, Object, Object, Object, Object, Object, Object)静态DateConstructor方法。

Date_valueOf 61

类的valueOf(Object)静态DatePrototype方法。

Enumerator_atEnd 62

类的atEnd(Object)静态EnumeratorPrototype方法。

Enumerator_item 63

类的item(Object)静态EnumeratorPrototype方法。

Enumerator_moveFirst 64

类的moveFirst(Object)静态EnumeratorPrototype方法。

Enumerator_moveNext 65

类的moveNext(Object)静态EnumeratorPrototype方法。

Error_toString 66

类的toString(Object)静态ErrorPrototype方法。

Function_apply 67

类的apply(Object, Object, Object)静态FunctionPrototype方法。

Function_call 68

类的call(Object, Object, Object[])静态FunctionPrototype方法。

Function_toString 69

类的toString(Object)静态FunctionPrototype方法。

Global_CollectGarbage 70

类的CollectGarbage()静态GlobalObject方法。

Global_decodeURI 71

类的decodeURI(Object)静态GlobalObject方法。

Global_decodeURIComponent 72

类的decodeURIComponent(Object)静态GlobalObject方法。

Global_encodeURI 73

类的encodeURI(Object)静态GlobalObject方法。

Global_encodeURIComponent 74

类的encodeURIComponent(Object)静态GlobalObject方法。

Global_escape 75

类的escape(Object)静态GlobalObject方法。

Global_eval 76

类的eval(Object)静态GlobalObject方法。

Global_GetObject 77

类的GetObject(Object, Object)静态GlobalObject方法。

Global_isNaN 78

类的isNaN(Object)静态GlobalObject方法。

Global_isFinite 79

类的isFinite(Double)静态GlobalObject方法。

Global_parseFloat 80

类的parseFloat(Object)静态GlobalObject方法。

Global_parseInt 81

类的parseInt(Object, Object)静态GlobalObject方法。

Global_ScriptEngine 82

类的ScriptEngine()静态GlobalObject方法。

Global_ScriptEngineBuildVersion 83

类的ScriptEngineBuildVersion()静态GlobalObject方法。

Global_ScriptEngineMajorVersion 84

类的ScriptEngineMajorVersion()静态GlobalObject方法。

Global_ScriptEngineMinorVersion 85

类的ScriptEngineMinorVersion()静态GlobalObject方法。

Global_unescape 86

类的unescape(Object)静态GlobalObject方法。

Math_abs 87

类的abs(Double)静态MathObject方法。

Math_acos 88

类的acos(Double)静态MathObject方法。

Math_asin 89

类的asin(Double)静态MathObject方法。

Math_atan 90

类的atan(Double)静态MathObject方法。

Math_atan2 91

类的atan2(Double, Double)静态MathObject方法。

Math_ceil 92

类的ceil(Double)静态MathObject方法。

Math_cos 93

类的cos(Double)静态MathObject方法。

Math_exp 94

类的exp(Double)静态MathObject方法。

Math_floor 95

类的floor(Double)静态MathObject方法。

Math_log 96

类的log(Double)静态MathObject方法。

Math_max 97

类的max(Object, Object, Object[])静态MathObject方法。

Math_min 98

类的min(Object, Object, Object[])静态MathObject方法。

Math_pow 99

类的pow(Double, Double)静态MathObject方法。

Math_random 100

类的random()静态MathObject方法。

Math_round 101

类的round(Double)静态MathObject方法。

Math_sin 102

类的sin(Double)静态MathObject方法。

Math_sqrt 103

类的sqrt(Double)静态MathObject方法。

Math_tan 104

类的tan(Double)静态MathObject方法。

Number_toExponential 105

类的toExponential(Object, Object)静态NumberPrototype方法。

Number_toFixed 106

类的toFixed(Object, Double)静态NumberPrototype方法。

Number_toLocaleString 107

类的toLocaleString(Object)静态NumberPrototype方法。

Number_toPrecision 108

类的toPrecision(Object, Object)静态NumberPrototype方法。

Number_toString 109

类的toString(Object, Object)静态NumberPrototype方法。

Number_valueOf 110

类的valueOf(Object)静态NumberPrototype方法。

Object_hasOwnProperty 111

类的hasOwnProperty(Object, Object)静态ObjectPrototype方法。

Object_isPrototypeOf 112

类的isPrototypeOf(Object, Object)静态ObjectPrototype方法。

Object_propertyIsEnumerable 113

类的propertyIsEnumerable(Object, Object)静态ObjectPrototype方法。

Object_toLocaleString 114

类的toLocaleString(Object)静态ObjectPrototype方法。

Object_toString 115

类的toString(Object)静态ObjectPrototype方法。

Object_valueOf 116

类的valueOf(Object)静态ObjectPrototype方法。

RegExp_compile 117

类的compile(Object, Object, Object)静态RegExpPrototype方法。

RegExp_exec 118

类的exec(Object, Object)静态RegExpPrototype方法。

RegExp_test 119

类的test(Object, Object)静态RegExpPrototype方法。

RegExp_toString 120

类的toString(Object)静态RegExpPrototype方法。

String_anchor 121

类的anchor(Object, Object)静态StringPrototype方法。

String_big 122

类的big(Object)静态StringPrototype方法。

123

类的blink(Object)静态StringPrototype方法。

String_bold 124

类的bold(Object)静态StringPrototype方法。

String_charAt 125

类的charAt(Object, Double)静态StringPrototype方法。

String_charCodeAt 126

类的charCodeAt(Object, Double)静态StringPrototype方法。

String_concat 127

类的concat(Object, Object[])静态StringPrototype方法。

String_fixed 128

类的fixed(Object)静态StringPrototype方法。

String_fontcolor 129

类的fontcolor(Object, Object)静态StringPrototype方法。

String_fontsize 130

类的fontsize(Object, Object)静态StringPrototype方法。

String_fromCharCode 131

类的fromCharCode(Object[])静态StringConstructor方法。

String_indexOf 132

类的indexOf(Object, Object, Double)静态StringPrototype方法。

String_italics 133

类的italics(Object)静态StringPrototype方法。

String_lastIndexOf 134

类的lastIndexOf(Object, Object, Double)静态StringPrototype方法。

135

类的link(Object, Object)静态StringPrototype方法。

String_localeCompare 136

类的localeCompare(Object, Object)静态StringPrototype方法。

String_match 137

类的match(Object, VsaEngine, Object)静态StringPrototype方法。

String_replace 138

类的replace(Object, Object, Object)静态StringPrototype方法。

139

类的search(Object, VsaEngine, Object)静态StringPrototype方法。

String_slice 140

类的slice(Object, Double, Object)静态StringPrototype方法。

String_small 141

类的small(Object)静态StringPrototype方法。

String_split 142

类的split(Object, VsaEngine, Object, Object)静态StringPrototype方法。

String_strike 143

类的strike(Object)静态StringPrototype方法。

String_sub 144

类的sub(Object)静态StringPrototype方法。

String_substr 145

类的substr(Object, Double, Object)静态StringPrototype方法。

String_substring 146

类的substring(Object, Double, Object)静态StringPrototype方法。

String_sup 147

类的sup(Object)静态StringPrototype方法。

String_toLocaleLowerCase 148

类的toLocaleLowerCase(Object)静态StringPrototype方法。

String_toLocaleUpperCase 149

类的toLocaleUpperCase(Object)静态StringPrototype方法。

String_toLowerCase 150

类的toLowerCase(Object)静态StringPrototype方法。

String_toString 151

类的toString(Object)静态StringPrototype方法。

String_toUpperCase 152

类的toUpperCase(Object)静态StringPrototype方法。

String_valueOf 153

类的valueOf(Object)静态StringPrototype方法。

VBArray_dimensions 154

类的dimensions(Object)静态VBArrayPrototype方法。

VBArray_getItem 155

类的getItem(Object, Object[])静态VBArrayPrototype方法。

VBArray_lbound 156

类的lbound(Object, Object)静态VBArrayPrototype方法。

VBArray_toArray 157

类的toArray(Object, VsaEngine)静态VBArrayPrototype方法。

VBArray_ubound 158

类的ubound(Object, Object)静态VBArrayPrototype方法。

适用于