forked from Aeraphe/excel-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.d.vb
547 lines (364 loc) · 5.86 KB
/
functions.d.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
'/*
'[Conversion Func]
'
'*/
Function Asc()
End Function
'/*
'[Conversion Func]
'Returns a String containing the character associated
'with the specified character code.
'
'Example:
'
'Dim MyChar
'MyChar = Chr(65) ' Returns A.
'MyChar = Chr(97) ' Returns a.
'MyChar = Chr(62) ' Returns >.
'MyChar = Chr(37) ' Returns %.
'*/
Function Chr()
End Function
'/*
'[Conversion Func]
'
'*/
Function Format()
End Function
'/*
'[Conversion Func]
'
'*/
Function Hex()
End Function
'/*
'[Conversion Func]
'
'*/
Function Oct()
End Function
'/*
'[Conversion Func]
'Returns a Variant (String) representation of a number.
'
'Example:
'Dim MyString
'MyString = Str(459) ' Returns " 459".
'MyString = Str(-459.65) ' Returns "-459.65".
'MyString = Str(459.001) ' Returns " 459.001".
'
'*/
Function Str() As Variant
End Function
'/*
'[Conversion Func]
'Returns the numbers contained in a string as
'a numeric value of appropriate type.
'
'Example:
'
'Dim MyValue
'MyValue = Val("2457") ' Returns 2457.
'MyValue = Val(" 2 45 7") ' Returns 2457.
'MyValue = Val("24 and 57") ' Returns 24.
'*/
Function Val(String)
End Function
Function CreateObject()
End Function
Function CurDir()
End Function
'/*
'Returns a Variant (Date) containing the current system date.
'
'Example
'
'Dim MyDate
'MyDate = Date ' MyDate contains the current system date.
'
'*/
Function Date()
End Function
Function DateDiff()
End Function
Function DatePart()
End Function
Function DateSerial()
End Function
Function Day()
End Function
Function DDB()
End Function
Function Dir()
End Function
Function DoEvents()
End Function
Function Environ()
End Function
Function EOF()
End Function
Function Error()
End Function
Function FileAttr()
End Function
Function FileDateTime()
End Function
Function FileLen()
End Function
Function Filter()
End Function
Function FormatCurrency()
End Function
Function FormatDateTime()
End Function
Function FormatNumber()
End Function
Function FormaPercent()
End Function
Function FreeFile()
End Function
Function FV()
End Function
Function GetAllSettings()
End Function
Function GetAttr()
End Function
Function GetObject()
End Function
Function GetSetting()
End Function
Function Hour()
End Function
Function IIf()
End Function
Function IMEStatus()
End Function
Function Input()
End Function
Function InputBox()
End Function
Function InStr()
End Function
Function InStrRev()
End Function
Function IPmt()
End Function
Function IRR()
End Function
Function IsArray()
End Function
Function IsDate()
End Function
'/*
'
'Returns a Boolean value indicating whether a variable has been initialized.
'
'*/
Function IsEmpty()
End Function
Function IsError()
End Function
Function IsMissing()
End Function
Function IsNull()
End Function
Function IsNumeric()
End Function
Function IsObject()
End Function
'/*
'Returns a string created by joining a number of substrings contained in an array.
'
'*/
Function Join()
End Function
Function LBound()
End Function
Function LCase()
End Function
Function Left()
End Function
Function Len()
End Function
Function Loc()
End Function
Function LOF()
End Function
Function LTrim()
End Function
Function RTrim()
End Function
Function Trim()
End Function
Function MacID()
End Function
Function MacScript()
End Function
'/*
'[Math Function]
'Returns a value of the same type that is passed to it specifying the absolute value of a number.
'
'*/
Function Abs()
End Function
'/*
'[Math Function]
'Returns a Double specifying the arctangent of a number.
'
'*/
Function Atn()
End Function
'/*
'[Math Function]
'
'*/
Function Cos()
End Function
'/*
'[Math Function]
'
'*/
Function Exp()
End Function
'/*
'[Math Function]
'
'*/
Function Int()
End Function
'/*
'[Math Function]
'
'*/
Function Fix()
End Function
'/*
'[Math Function]
'
'*/
Function Log()
End Function
'/*
'[Math Function]
'
'*/
Function Rnd()
End Function
'/*
'[Math Function]
'
'*/
Function Sgn()
End Function
'/*
'[Math Function]
'
'*/
Function Sin()
End Function
'/*
'[Math Function]
'
'*/
Function Sqr()
End Function
'/*
'[Math Function]
'
'*/
Function Tan()
End Function
Function Mid()
End Function
Function Minute()
End Function
Function MIRR()
End Function
Function Month()
End Function
Function MonthName()
End Function
'/*
'Displays a message in a dialog box, waits for the user to click a button,
'and returns an Integer indicating which button the user clicked.
'
'*/
Function MsgBox(prompt, [ buttons, ] [ title, ] [ helpfile, context ])
End Function
Function Now()
End Function
Function NPer()
End Function
Function NPV()
End Function
Function PPmt()
End Function
Function QBColor()
End Function
Function Rate()
End Function
'/*
'Returns a string, which is a substring of a string
'expression beginning at the start position (defaults to 1),
'in which a specified substring has been replaced with another
'substring a specified number of times.
'
'*/
Function Replace(expression, find, replace, [ start, [ count, [ compare ]]])
End Function
Function RGB()
End Function
Function Right()
End Function
Function Round()
End Function
Function Second()
End Function
Function Seek()
End Function
Function Shell()
End Function
Function SNL()
End Function
Function Space()
End Function
Function Spc()
End Function
Function Split()
End Function
Function StrComp()
End Function
Function StrConv()
End Function
Function String()
End Function
Function StrReverse()
End Function
Function Switch()
End Function
Function SYD()
End Function
Function Tab()
End Function
Function Time()
End Function
Function Timer()
End Function
Function TimeSerial()
End Function
Function TimeValue()
End Function
Function TypeName()
End Function
Function UBound()
End Function
Function Ucase()
End Function
Function VarType()
End Function
Function Weekday()
End Function
Function WeekdayName()
End Function
Function Year()
End Function