-
Notifications
You must be signed in to change notification settings - Fork 382
/
dBASEPlus_DarkTheme.xml
6155 lines (6154 loc) · 248 KB
/
dBASEPlus_DarkTheme.xml
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
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="Windows-1252" ?>
<!--Keywords, Functions, Methods and their syntax notation and descriptions
are copied from dBASE Plus's Help File.-->
<NotepadPlus>
<AutoComplete language="dBASEPlus">
<Environment ignoreCase="no" startFunc="(" stopFunc=")" paramSeparator="," terminal="" additionalWordChar =""/>
<KeyWord name="ALTER TABLE"/>
<KeyWord name="APPEND AUTOMEM"/>
<KeyWord name="APPEND FROM"/>
<KeyWord name="APPEND FROM ARRAY"/>
<KeyWord name="APPEND MEMO"/>
<KeyWord name="CLEAR ALL"/>
<KeyWord name="CLEAR AUTOMEM"/>
<KeyWord name="CLEAR FIELDS"/>
<KeyWord name="CLEAR MEMORY"/>
<KeyWord name="CLEAR PROGRAM"/>
<KeyWord name="CLOSE ALTERNATE"/>
<KeyWord name="CLOSE DATABASES"/>
<KeyWord name="CLOSE INDEXES"/>
<KeyWord name="CLOSE PRINTER"/>
<KeyWord name="CLOSE TABLES"/>
<KeyWord name="COPY BINARY"/>
<KeyWord name="COPY FILE"/>
<KeyWord name="COPY MEMO"/>
<KeyWord name="COPY STRUCTURE"/>
<KeyWord name="COPY STRUCTURE EXTENDED"/>
<KeyWord name="COPY TABLE"/>
<KeyWord name="COPY TO ARRAY"/>
<KeyWord name="CREATE INDEX"/>
<KeyWord name="CREATE SESSION"/>
<KeyWord name="CREATE TABLE"/>
<KeyWord name="CREATE FROM"/>
<KeyWord name="CREATE STRUCTURE EXTENDED"/>
<KeyWord name="DELETE FILE"/>
<KeyWord name="DELETE TABLE"/>
<KeyWord name="DELETE TAG"/>
<KeyWord name="DISPLAY FILES"/>
<KeyWord name="DO CASE"/>
<KeyWord name="DO WHILE"/>
<KeyWord name="DO UNTIL"/>
<KeyWord name="DROP INDEX"/>
<KeyWord name="DROP TABLE"/>
<KeyWord name="GROUP BY"/>
<KeyWord name="LIST FILES"/>
<KeyWord name="LOAD DLL"/>
<KeyWord name="ON ERROR"/>
<KeyWord name="ON NETERROR"/>
<KeyWord name="ON PAGE"/>
<KeyWord name="OPEN DATABASE"/>
<KeyWord name="ORDER BY"/>
<KeyWord name="PLAY SOUND"/>
<KeyWord name="RELEASE AUTOMEM"/>
<KeyWord name="RELEASE CALLBACK"/>
<KeyWord name="RELEASE DLL"/>
<KeyWord name="RELEASE OBJECT"/>
<KeyWord name="RENAME TABLE"/>
<KeyWord name="REPLACE AUTOMEM"/>
<KeyWord name="REPLACE BINARY"/>
<KeyWord name="REPLACE FROM ARRAY"/>
<KeyWord name="REPLACE MEMO"/>
<KeyWord name="REPLACE OLE"/>
<KeyWord name="RESTORE IMAGE"/>
<KeyWord name="SAVE TO"/>
<KeyWord name="SET ALTERNATE"/>
<KeyWord name="SET AUTOSAVE"/>
<KeyWord name="SET CENTURY"/>
<KeyWord name="SET CONSOLE"/>
<KeyWord name="SET CURRENCY"/>
<KeyWord name="SET DATABASE"/>
<KeyWord name="SET DATE"/>
<KeyWord name="SET DATE TO"/>
<KeyWord name="SET DBTYPE"/>
<KeyWord name="SET DECIMALS"/>
<KeyWord name="SET DELETED"/>
<KeyWord name="SET DIRECTORY"/>
<KeyWord name="SET ENCRYPTION"/>
<KeyWord name="SET EPOCH"/>
<KeyWord name="SET ERROR"/>
<KeyWord name="SET EXACT"/>
<KeyWord name="SET EXCLUSIVE"/>
<KeyWord name="SET FIELDS"/>
<KeyWord name="SET FILTER"/>
<KeyWord name="SET FULLPATH"/>
<KeyWord name="SET HEADINGS"/>
<KeyWord name="SET HELP"/>
<KeyWord name="SET HIGHPRECISION"/>
<KeyWord name="SET HOURS"/>
<KeyWord name="SET INDEX"/>
<KeyWord name="SET KEY TO"/>
<KeyWord name="SET LDCHECK"/>
<KeyWord name="SET LDCONVERT"/>
<KeyWord name="SET LOCK"/>
<KeyWord name="SET MARGIN"/>
<KeyWord name="SET MARK"/>
<KeyWord name="SET MEMOWIDTH"/>
<KeyWord name="SET NEAR"/>
<KeyWord name="SET ODOMETER"/>
<KeyWord name="SET ORDER"/>
<KeyWord name="SET PATH"/>
<KeyWord name="SET PCOL"/>
<KeyWord name="SET POINT"/>
<KeyWord name="SET PRECISION"/>
<KeyWord name="SET PRINTER"/>
<KeyWord name="SET PROW"/>
<KeyWord name="SET REFRESH"/>
<KeyWord name="SET RELATION"/>
<KeyWord name="SET REPROCESS"/>
<KeyWord name="SET SAFETY"/>
<KeyWord name="SET SEPARATOR"/>
<KeyWord name="SET SKIP"/>
<KeyWord name="SET SPACE"/>
<KeyWord name="SET TIME"/>
<KeyWord name="SET UNIQUE"/>
<KeyWord name="SET VIEW"/>
<KeyWord name="STORE AUTOMEM"/>
<KeyWord name="UPDATE ON"/>
<KeyWord name="alter table"/>
<KeyWord name="append automem"/>
<KeyWord name="append from"/>
<KeyWord name="append from array"/>
<KeyWord name="append memo"/>
<KeyWord name="clear all"/>
<KeyWord name="clear automem"/>
<KeyWord name="clear fields"/>
<KeyWord name="clear memory"/>
<KeyWord name="clear program"/>
<KeyWord name="close alternate"/>
<KeyWord name="close databases"/>
<KeyWord name="close indexes"/>
<KeyWord name="close printer"/>
<KeyWord name="close tables"/>
<KeyWord name="copy binary"/>
<KeyWord name="copy file"/>
<KeyWord name="copy memo"/>
<KeyWord name="copy structure"/>
<KeyWord name="copy structure extended"/>
<KeyWord name="copy table"/>
<KeyWord name="copy to array"/>
<KeyWord name="create index"/>
<KeyWord name="create session"/>
<KeyWord name="create table"/>
<KeyWord name="create from"/>
<KeyWord name="create structure extended"/>
<KeyWord name="delete file"/>
<KeyWord name="delete table"/>
<KeyWord name="delete tag"/>
<KeyWord name="display files"/>
<KeyWord name="do case"/>
<KeyWord name="do while"/>
<KeyWord name="do until"/>
<KeyWord name="drop index"/>
<KeyWord name="drop table"/>
<KeyWord name="group by"/>
<KeyWord name="list files"/>
<KeyWord name="load dll"/>
<KeyWord name="on error"/>
<KeyWord name="on neterror"/>
<KeyWord name="on page"/>
<KeyWord name="open database"/>
<KeyWord name="order by"/>
<KeyWord name="play sound"/>
<KeyWord name="release automem"/>
<KeyWord name="release callback"/>
<KeyWord name="release dll"/>
<KeyWord name="release object"/>
<KeyWord name="rename table"/>
<KeyWord name="replace automem"/>
<KeyWord name="replace binary"/>
<KeyWord name="replace from array"/>
<KeyWord name="replace memo"/>
<KeyWord name="replace ole"/>
<KeyWord name="restore image"/>
<KeyWord name="save to"/>
<KeyWord name="set alternate"/>
<KeyWord name="set autosave"/>
<KeyWord name="set century"/>
<KeyWord name="set console"/>
<KeyWord name="set currency"/>
<KeyWord name="set database"/>
<KeyWord name="set date"/>
<KeyWord name="set date to"/>
<KeyWord name="set dbtype"/>
<KeyWord name="set decimals"/>
<KeyWord name="set deleted"/>
<KeyWord name="set directory"/>
<KeyWord name="set encryption"/>
<KeyWord name="set epoch"/>
<KeyWord name="set error"/>
<KeyWord name="set exact"/>
<KeyWord name="set exclusive"/>
<KeyWord name="set fields"/>
<KeyWord name="set filter"/>
<KeyWord name="set fullpath"/>
<KeyWord name="set headings"/>
<KeyWord name="set help"/>
<KeyWord name="set highprecision"/>
<KeyWord name="set hours"/>
<KeyWord name="set index"/>
<KeyWord name="set key to"/>
<KeyWord name="set ldcheck"/>
<KeyWord name="set ldconvert"/>
<KeyWord name="set lock"/>
<KeyWord name="set margin"/>
<KeyWord name="set mark"/>
<KeyWord name="set memowidth"/>
<KeyWord name="set near"/>
<KeyWord name="set odometer"/>
<KeyWord name="set order"/>
<KeyWord name="set path"/>
<KeyWord name="set pcol"/>
<KeyWord name="set point"/>
<KeyWord name="set precision"/>
<KeyWord name="set printer"/>
<KeyWord name="set prow"/>
<KeyWord name="set refresh"/>
<KeyWord name="set relation"/>
<KeyWord name="set reprocess"/>
<KeyWord name="set safety"/>
<KeyWord name="set separator"/>
<KeyWord name="set skip"/>
<KeyWord name="set space"/>
<KeyWord name="set time"/>
<KeyWord name="set unique"/>
<KeyWord name="set view"/>
<KeyWord name="store automem"/>
<KeyWord name="update on"/>
<KeyWord name="ABS" func="yes">
<Overload retVal="{nVal}" descr="Math/Money -
Returns the absolute value of a specified number.">
<Param name="<expN>"/>
</Overload>
</KeyWord>
<KeyWord name="ACCESS" func="yes">
<Overload retVal="{accessLevelN}" descr="Miscellaneous Language Elements -
Returns the access level of the current user for DBF table security.">
</Overload>
</KeyWord>
<KeyWord name="ACOPY" func="yes">
<Overload retVal="{nVal}" descr="Arrays -
Copies elements from one array to another. Returns the number of elements copied.">
<Param name="<source array>" />
<Param name="<target array>" />
<Param name="[<starting element expN>"/>
<Param name="[<elements expN>"/>
<Param name="[<target element expN>]]]"/>
</Overload>
</KeyWord>
<KeyWord name="ACOS" func="yes">
<Overload retVal="{nVal}" descr="Math/Money -
Returns the inverse cosine (arccosine) of a number.">
<Param name="<value expN>"/>
</Overload>
</KeyWord>
<KeyWord name="ADEL" func="yes">
<Overload retVal="{nVal}" descr="Arrays -
Deletes an element from a one-dimensional array, or deletes a row or column of
elements from a two-dimensional array. Returns 1 if successful, an error if unsuccessful.">
<Param name="<array name>"/>
<Param name="<position expN>"/>
<Param name="[<row/column expN>])"/>
</Overload>
</KeyWord>
<KeyWord name="ADIR" func="yes">
<Overload retVal="{nVal}" descr="Arrays -
Stores to a declared array five characteristics of specified files: name, size, date stamp, time stamp,
and attribute(s). Returns the number of files whose characteristics are stored.">
<Param name="<array name>"/>
<Param name="[<filename skeleton expC>"/>
<Param name="[<file attribute list expC>]]"/>
</Overload>
</KeyWord>
<KeyWord name="ADIREXT" func="yes">
<Overload retVal="{nVal}" descr="Arrays -
On a Windows® 95/98/2000/NTsystem, stores to a declared array nine characteristics of specified files:
name, size, date stamp, time stamp, attribute(s), alias, creation date, creation time, and last access date.
Returns the number of files whose characteristics are stored.">
<Param name="<array name>"/>
<Param name="[<filename skeleton expC>"/>
<Param name="[<file attribute list expC>]]"/>
</Overload>
</KeyWord>
<KeyWord name="AELEMENT" func="yes">
<Overload retVal="{nVal}" descr="Arrays -
Returns the number of a specified element in a one- or two-dimensional array.">
<Param name="<array name>"/>
<Param name="<subscript1 expN>"/>
<Param name="[<subscript2 expN>]"/>
</Overload>
</KeyWord>
<KeyWord name="AFIELDS" func="yes">
<Overload retVal="{nVal}" descr="Arrays -
Stores the current table's structural information to a declared array and returns the number of fields
whose characteristics are stored.">
<Param name="<array name>"/>
</Overload>
</KeyWord>
<KeyWord name="AFILL" func="yes">
<Overload retVal="{nVal}" descr="Arrays -
Inserts a specified value into one or more locations in a declared array, and returns the number of elements inserted.">
<Param name="<array name>"/>
<Param name="<Var val>"/>
<Param name="[<start expN>"/>
<Param name="[<count expN>]]"/>
</Overload>
</KeyWord>
<KeyWord name="AGROW" func="yes">
<Overload retVal="{nVal}" descr="Arrays -
Adds an element, row, or column to an array and returns a numeric value representing the number of added elements.">
<Param name="<array name>"/>
<Param name="<expN>"/>
</Overload>
</KeyWord>
<KeyWord name="AINS" func="yes">
<Overload retVal="{retVal}" descr="Arrays -
Inserts an element with the value false into a one-dimensional array, or inserts a row or column
of elements with the value false into a two-dimensional array. Returns 1 if successful, an error if unsuccessful.">
<Param name="<array name>"/>
<Param name="<position expN>"/>
<Param name=" [<row/column expN>]"/>
</Overload>
</KeyWord>
<KeyWord name="ALEN" func="yes">
<Overload retVal="{retVal}" descr="Arrays -
Returns the number of elements, rows, or columns of an array.">
<Param name="<array>"/>
<Param name="[<expN>]"/>
</Overload>
</KeyWord>
<KeyWord name="ALIAS" func="yes">
<Overload retVal="{expC}" descr="Xbase -
Returns the alias name of the current or a specified work area.">
<Param name="[<alias>]"/>
</Overload>
</KeyWord>
<KeyWord name="ANSI" func="yes">
<Overload retVal="{retVal}" descr="Miscellaneous Language Elements -
Returns a character string that is the ANSI equivalent of a character expression
using the current global character set.">
<Param name="<expC>"/>
</Overload>
</KeyWord>
<KeyWord name="APPEND"/>
<KeyWord name="ARESIZE" func="yes">
<Overload retVal="{nVal}" descr="Arrays -
Increases or decreases the size of an array according to the specified dimensions
and returns a numeric value representing the number of elements in the modified array.">
<Param name="<array name>"/>
<Param name="<new rows expN>"/>
<Param name="[<new cols expN>"/>
<Param name="[<retain values expN>]]"/>
</Overload>
</KeyWord>
<KeyWord name="ARGCOUNT" func="yes">
<Overload retVal="{nVal}" descr="Core Language -
Returns the number of parameters passed to a routine.">
</Overload>
</KeyWord>
<KeyWord name="ARGVECTOR" func="yes">
<Overload retVal="{parameter value}" descr="Core Language -
Returns the specified parameter passed to a routine.">
<Param name="<parameter expN>"/>
</Overload>
</KeyWord>
<KeyWord name="ASC" func="yes">
<Overload retVal="{nVal}" descr="Strings -
Returns the numeric ASCII value of a specified character.">
<Param name="<expC>"/>
</Overload>
</KeyWord>
<KeyWord name="ASCAN" func="yes">
<Overload retVal="{nVal}" descr="Arrays -
Searches an array for an expression. Returns the number of the first element that matches
the expression if the search is successful, or zero if the search is unsuccessful.">
<Param name="<array name>"/>
<Param name="<exp>"/>
<Param name="[<starting element expN>"/>
<Param name="[<elements expN>]]"/>
</Overload>
</KeyWord>
<KeyWord name="ASIN" func="yes">
<Overload retVal="{nVal}" descr="Math/Money -
Returns the inverse sine (arcsine) of a number.">
<Param name="<expN>"/>
</Overload>
</KeyWord>
<KeyWord name="ASORT" func="yes">
<Overload retVal="{nVal}" descr="Arrays -
Sorts the elements in a one-dimensional array or the rows in a two-dimensional array, returning 1 if successful or an error if unsuccessful.">
<Param name="<array name>"/>
<Param name="[<starting element expN>"/>
<Param name="[<elements to sort expN>"/>
<Param name="[<sort order expN>]]]"/>
</Overload>
</KeyWord>
<KeyWord name="ASUBSCRIPT" func="yes">
<Overload retVal="{nVal}" descr="Arrays -
Returns the row number or the column number of a specified element in an array.">
<Param name="<array name>"/>
<Param name="<element expN>"/>
<Param name="<row/column expN>"/>
</Overload>
</KeyWord>
<KeyWord name="AT" func="yes">
<Overload retVal="{nVal}" descr="Strings -
Returns a number that represents the position of a string within another string.">
<Param name="<search expC>"/>
<Param name="<target expC>"/>
<Param name="[<nth occurrence expN>]"/>
</Overload>
</KeyWord>
<KeyWord name="ATAN" func="yes">
<Overload retVal="{nVal}" descr="Math/Money -
Returns the inverse tangent (arctangent) of a number.">
<Param name="<expN>"/>
</Overload>
</KeyWord>
<KeyWord name="ATN2" func="yes">
<Overload retVal="{nVal}" descr="Math/Money -
Returns the inverse tangent (arctangent) of a given point.">
<Param name="<sine expN>"/>
<Param name="<cosine expN>"/>
</Overload>
</KeyWord>
<KeyWord name="AVERAGE"/>
<KeyWord name="AVG" func="yes">
<Overload retVal="{nVal}" descr="LocalSQL -
AVG() returns the average value of a numeric column. ">
<Param name="<column_name>"/>
</Overload>
</KeyWord>
<KeyWord name="BEGINTRANS" func="yes">
<Overload retVal="{lVal}" descr="Xbase -
Begins transaction logging.">
<Param name="[<database name expC>"/>
<Param name="[<isolation level expN>]]"/>
</Overload>
</KeyWord>
<KeyWord name="BINTYPE" func="yes">
<Overload retVal="{nVal}" descr="Xbase -
Returns the predefined type number of a specified binary field.">
<Param name="[<field name>]"/>
</Overload>
</KeyWord>
<KeyWord name="BITAND" func="yes">
<Overload retVal="{nVal}" descr="Bitwise -
Performs a bitwise AND.">
<Param name="<expN1>"/>
<Param name="<expN2>"/>
</Overload>
</KeyWord>
<KeyWord name="BITLSHIFT" func="yes">
<Overload retVal="{nVal}" descr="Bitwise -
Shifts a number's bits to the left.">
<Param name="<int expN>"/>
<Param name="<shift expN>"/>
</Overload>
</KeyWord>
<KeyWord name="BITNOT" func="yes">
<Overload retVal="{nVal}" descr="Bitwise -
Inverts the bits in a number">
<Param name="<expN>"/>
</Overload>
</KeyWord>
<KeyWord name="BITOR" func="yes">
<Overload retVal="{nVal}" descr="Bitwise -
Performs a bitwise OR.">
<Param name="<expN1>"/>
<Param name="<expN2>"/>
</Overload>
</KeyWord>
<KeyWord name="BITRSHIFT" func="yes">
<Overload retVal="{nVal}" descr="Bitwise -
Shifts a number's bits to the right, maintaining sign.">
<Param name="<int expN>"/>
<Param name="<shift expN>"/>
</Overload>
</KeyWord>
<KeyWord name="BITSET" func="yes">
<Overload retVal="{nVal}" descr="Bitwise -
Checks if a specified bit in a numeric value is on.">
<Param name="<int expN>"/>
<Param name="<bit expN>"/>
</Overload>
</KeyWord>
<KeyWord name="BITXOR" func="yes">
<Overload retVal="{nVal}" descr="Bitwise -
Performs a bitwise exclusive OR.">
<Param name="<expN1>"/>
<Param name="<expN2>"/>
</Overload>
</KeyWord>
<KeyWord name="BITZRSHIFT" func="yes">
<Overload retVal="{nVal}" descr="Bitwise -
Shifts a number's bits to the right.">
<Param name="<int expN>"/>
<Param name="<shift expN>"/>
</Overload>
</KeyWord>
<KeyWord name="BLANK"/>
<KeyWord name="BOF" func="yes">
<Overload retVal="{lVal}" descr="Xbase -
Indicates if the record pointer in a table is at the beginning of the file.">
<Param name="[<alias>]"/>
</Overload>
</KeyWord>
<KeyWord name="BOOKMARK" func="yes">
<Overload retVal="{nVal}" descr="Xbase -
Returns a bookmark for the current record.">
<Param name="[<alias>]"/>
</Overload>
</KeyWord>
<KeyWord name="BROWSE"/>
<KeyWord name="CALCULATE"/>
<KeyWord name="CALLBACK"/>
<KeyWord name="CANCEL"/>
<KeyWord name="CASE"/>
<KeyWord name="CATCH"/>
<KeyWord name="CD"/>
<KeyWord name="CDOW" func="yes">
<Overload retVal="{expC}" descr="Date and Time -
Returns the name of the day of the week of a specified date.">
<Param name="<expD>"/>
</Overload>
</KeyWord>
<KeyWord name="CEILING" func="yes">
<Overload retVal="{nVal}" descr="Math/Money -
Returns the nearest integer that is greater than or equal to a specified number.">
<Param name="<expN>"/>
</Overload>
</KeyWord>
<KeyWord name="CENTER" func="yes">
<Overload retVal="{expC}" descr="Strings -
Returns a character string that contains a string centered in a line of specified length.">
<Param name="<expC>"/>
<Param name="[<length expN>"/>
<Param name="[<pad expC>]]"/>
</Overload>
</KeyWord>
<KeyWord name="CERROR" func="yes">
<Overload retVal="{nVal}" descr="Miscellaneous Language Elements -
Returns the number of the last compiler error.">
</Overload>
</KeyWord>
<KeyWord name="CHANGE" func="yes">
<Overload retVal="{lVal}" descr="Xbase -
Returns true if another user has changed a record since it was read from disk.">
<Param name="[<alias>]"/>
</Overload>
</KeyWord>
<KeyWord name="CHARSET" func="yes">
<Overload retVal="{expC}" descr="Miscellaneous Language Elements -
Returns the name of the character set the current table or a specified table is using.
If no table is open and you issue CHARSET( ) without an argument, it returns the global character set in use.">
<Param name="[<alias>]"/>
</Overload>
</KeyWord>
<KeyWord name="CHOOSEPRINTER" func="yes">
<Overload retVal="{lVal}" descr="Text Streaming -
Opens a printer setup dialog box. Returns false if you cancel out of the dialog,
true otherwise.Description, can be multi-line">
<Param name="[<title expC>]"/>
<Param name="[<expL>]"/>
</Overload>
</KeyWord>
<KeyWord name="CHR" func="yes">
<Overload retVal="{expC}" descr="Strings -
Returns the character equivalent of a specified ASCII value.">
<Param name="<expN>"/>
</Overload>
</KeyWord>
<KeyWord name="CLASS"/>
<KeyWord name="CLEAR"/>
<KeyWord name="CMONTH" func="yes">
<Overload retVal="{expC}" descr="Date and Time -
Returns the name of the month of a specified date.">
<Param name="<expD>"/>
</Overload>
</KeyWord>
<KeyWord name="COMMIT" func="yes">
<Overload retVal="{lVal}" descr="Xbase -
Clears the transaction log, committing all logged changes.">
<Param name="[<database name expC>]"/>
</Overload>
</KeyWord>
<KeyWord name="CONTINUE"/>
<KeyWord name="COPY"/>
<KeyWord name="COS" func="yes">
<Overload retVal="{nVal}" descr="Math/Money -
Returns the trigonometric cosine of an angle.">
<Param name="<expN>"/>
</Overload>
</KeyWord>
<KeyWord name="COUNT" func="yes">
<Overload retVal="{nVal}" descr="LocalSQL -
Count(),for counting the number of values in a column that match specified criteria">
<Param name="<column_name>"/>
</Overload>
<Overload retVal="{}" descr="Xbase Command - Counts the number of records that match specified conditions. See OLH.">
<Param name="[<scope>]"/>
<Param name="[FOR <condition 1>]"/>
<Param name="[WHILE <condition 2>]"/>
<Param name="[TO <memvar>]"/>
</Overload>
<Overload retVal="{}" descr="OOP - a method implemented differently depending on the object using it.
Usage: - <objRef>.count()">
</Overload>
</KeyWord>
<KeyWord name="CTOD" func="yes">
<Overload retVal="{dVal}" descr="Date and Time -
Interprets a specified character expression as a literal date.">
<Param name="<expC>"/>
</Overload>
</KeyWord>
<KeyWord name="CTODT" func="yes">
<Overload retVal="{dtVal}" descr="Date and Time -
'Character to DateTime' converts a literal DateTime string to a DateTime (DT) value.">
<Param name="<expC>"/>
</Overload>
</KeyWord>
<KeyWord name="CTOT" func="yes">
<Overload retVal="{tVal}" descr="Date and Time -
'Character to TIME'( ) converts a literal Time string to a Time value.">
<Param name="<expC>"/>
</Overload>
</KeyWord>
<KeyWord name="DATABASE" func="yes">
<Overload retVal="{expC}" descr="Xbase -
Returns the name of the current database from which tables are accessed.">
</Overload>
</KeyWord>
<KeyWord name="DATE" func="yes">
<Overload retVal="{dVal}" descr="Date and Time -
Returns the system date.">
</Overload>
</KeyWord>
<KeyWord name="DATETIME" func="yes">
<Overload retVal="{dtVal}" descr="Date and Time -
Returns a value representing the current date and time.">
</Overload>
</KeyWord>
<KeyWord name="DAY" func="yes">
<Overload retVal="{nVal}" descr="Date and Time -
Returns the numeric value of the day of the month for a specified date.">
<Param name="<expD>"/>
</Overload>
</KeyWord>
<KeyWord name="DBASE_SUPPRESS_STARTUP_DIALOGS"/>
<KeyWord name="DBERROR" func="yes">
<Overload retVal="{eVal}" descr="Miscellaneous Language Elements -
Returns the number of the last BDE error.">
</Overload>
</KeyWord>
<KeyWord name="DBF" func="yes">
<Overload retVal="{expC}" descr="Xbase -
Returns the name of a table open in the current or a specified work area.">
<Param name="[<alias>]"/>
</Overload>
</KeyWord>
<KeyWord name="DBMESSAGE" func="yes">
<Overload retVal="{eVal}" descr="Miscellaneous Language Elements -
Returns the error message of the last BDE error.">
</Overload>
</KeyWord>
<KeyWord name="DECLARE"/>
<KeyWord name="DEFINE"/>
<KeyWord name="DELETE"/>
<KeyWord name="DELETED" func="yes">
<Overload retVal="{lVal}" descr="Xbase -
Indicates if the current record is marked as deleted.">
<Param name="[<alias>]"/>
</Overload>
</KeyWord>
<KeyWord name="DESCENDING" func="yes">
<Overload retVal="{lVal}" descr="Xbase -
Indicates if a specified index is in descending order.">
<Param name="[<.mdx filename expC>]"/>
<Param name="[<index position expN>"/>
<Param name="[<alias>]]"/>
</Overload>
</KeyWord>
<KeyWord name="DIFFERENCE" func="yes">
<Overload retVal="{nVal}" descr="Strings -
Returns a number that represents the phonetic difference between two strings.">
<Param name="<expC1>"/>
<Param name="<expC2>"/>
</Overload>
</KeyWord>
<KeyWord name="DIR"/>
<KeyWord name="DISKSPACE" func="yes">
<Overload retVal="{nVal}" descr="Files and Operating System -
Returns the number of bytes available on the current or specified drive's disk.">
<Param name="[<drive expN>]"/>
</Overload>
</KeyWord>
<KeyWord name="DISPLAY"/>
<KeyWord name="DMY" func="yes">
<Overload retVal="{expC}" descr="Date and Time -
Returns a specified date as a character string in DD MONTH YY or DD MONTH YYYY format.">
<Param name="<expD>"/>
</Overload>
</KeyWord>
<KeyWord name="DO"/>
<KeyWord name="DOS"/>
<KeyWord name="DOW" func="yes">
<Overload retVal="{nVal}" descr="Date and Time -
Returns the day of the week corresponding to a specified date as a number from 1 to 7.">
<Param name="<expD>"/>
</Overload>
</KeyWord>
<KeyWord name="DTOC" func="yes">
<Overload retVal="{expC}" descr="Date and Time -
Converts a date into a literal date string.">
<Param name="<expD>"/>
</Overload>
</KeyWord>
<KeyWord name="DTODT" func="yes">
<Overload retVal="{dtVal}" descr="Date and Time -
'Date to DateTime' converts a date to a DateTime value (DT).">
<Param name="<expD>"/>
</Overload>
</KeyWord>
<KeyWord name="DTOR" func="yes">
<Overload retVal="{nVal}" descr="Math/Money -
Returns the radian value of an angle whose measurement is given in degrees.">
<Param name="<expN>"/>
</Overload>
</KeyWord>
<KeyWord name="DTOS" func="yes">
<Overload retVal="{expC}" descr="Date and Time -
Returns a specified date as a character string in YYYYMMDD format.">
<Param name="<expD>"/>
</Overload>
</KeyWord>
<KeyWord name="DTTOC" func="yes">
<Overload retVal="{expC}" descr="Date and Time -
'DateTime to Character' converts a DateTime value to a literal DateTime string.">
<Param name="<dtVar>"/>
</Overload>
</KeyWord>
<KeyWord name="DTTOD" func="yes">
<Overload retVal="{dVal}" descr="Date and Time -
'DateTime to Date' converts the date component of a DateTime value to a literal Date .">
<Param name="<dtVar>"/>
</Overload>
</KeyWord>
<KeyWord name="DTTOT" func="yes">
<Overload retVal="{tVal}" descr="Date and Time -
'DateTime to Time' converts the time component of a DateTime value to a Time value .">
<Param name="<dtVar>"/>
</Overload>
</KeyWord>
<KeyWord name="EDIT"/>
<KeyWord name="EJECT"/>
<KeyWord name="EJECTPAGE"/>
<KeyWord name="ELAPSED" func="yes">
<Overload retVal="{nVal}" descr="Date and Time -
Returns the number of seconds elapsed between two specified times.">
<Param name="<stop time expC>"/>
<Param name="<start time expC>"/>
<Param name="[<exp>]"/>
</Overload>
</KeyWord>
<KeyWord name="ELSE"/>
<KeyWord name="ELSEIF"/>
<KeyWord name="EMPTY" func="yes">
<Overload retVal="{lVal}" descr="Core Language -
Returns true if a specified expression is empty.">
<Param name="<exp>"/>
</Overload>
</KeyWord>
<KeyWord name="ENDFOR"/>
<KeyWord name="ENDIF"/>
<KeyWord name="ENDPRINTJOB"/>
<KeyWord name="ENDTRY"/>
<KeyWord name="ENUMERATE" func="yes">
<Overload retVal="{assocArray}" descr="Core Language -
Returns a listing of the member names of an object.">
<Param name="<oRef>"/>
</Overload>
</KeyWord>
<KeyWord name="EOF" func="yes">
<Overload retVal="{lVal}" descr="Xbase -
Indicates if the record pointer is at the end-of-file.">
<Param name="[<alias>]"/>
</Overload>
</KeyWord>
<KeyWord name="ERASE"/>
<KeyWord name="ERROR" func="yes">
<Overload retVal="{nVal}" descr="Miscellaneous Language Elements -
Returns the number of the most recent dBASE Plus error.">
</Overload>
</KeyWord>
<KeyWord name="EXIT"/>
<KeyWord name="EXP" func="yes">
<Overload retVal="{nVal}" descr="Math/Money -
Returns e raised to a specified power.">
<Param name="<expN>"/>
</Overload>
</KeyWord>
<KeyWord name="EXTERN"/>
<KeyWord name="EXTRACT" func="yes">
<Overload retVal="{retVal}" descr="LocalSQL -
Local SQL supports the EXTRACT( ) function for isolating a single numeric field
from a date/time field on retrieval using the following syntax: EXTRACT (<extract field> FROM <field name>)
See OLH for more information">
<Param name="[<extract field>]"/>
<Param name="[FROM <field name>]"/>
</Overload>
</KeyWord>
<KeyWord name="FACCESSDATE" func="yes">
<Overload retVal="{dVal}" descr="File Information Functions -
Returns the last date a file was opened.">
<Param name="<filename expC>"/>
</Overload>
</KeyWord>
<KeyWord name="FCLOSE" func="yes">
<Overload retVal="{lVal}" descr="Low-level File Functions -
Closes a file previously opened with FCREATE()">
<Param name="<filehandle>"/>
</Overload>
</KeyWord>
<KeyWord name="FCOUNT" func="yes">
<Overload retVal="{nVal}" descr="Xbase -
Returns the number of fields in a table.">
<Param name="<alias>"/>
</Overload>
</KeyWord>
<KeyWord name="FCREATE" func="yes">
<Overload retVal="{filehandle}" descr="Low-level File Functions -
Creates and opens a specified file.">
<Param name="<filename expC>"/>
<Param name=">[<access expC>]"/>
</Overload>
</KeyWord>
<KeyWord name="FCREATEDATE" func="yes">
<Overload retVal="{dVal}" descr="File Information Functions -
Returns the date a file was created.">
<Param name="<filename expC>"/>
</Overload>
</KeyWord>
<KeyWord name="FCREATETIME" func="yes">
<Overload retVal="{tVal}" descr="File Information Functions -
Returns the time a file was created.">
<Param name="<filename expC>"/>
</Overload>
</KeyWord>
<KeyWord name="FDATE" func="yes">
<Overload retVal="{dVal}" descr="File Information Functions -
Returns the date stamp for a file, the date the file was last modified.">
<Param name="<filename expC>"/>
</Overload>
</KeyWord>
<KeyWord name="FDECIMAL" func="yes">
<Overload retVal="{nVal}" descr="Xbase -
Returns the number of decimal places in a specified field of a table.">
<Param name="<field number expN>"/>
<Param name="[<alias>])"/>
</Overload>
</KeyWord>
<KeyWord name="FEOF" func="yes">
<Overload retVal="{lVal}" descr="Low-level File Functions -
Returns true if the file pointer is at the end of a file
previously opened with FCREATE() or FOPEN()">
<Param name="<filehandle>"/>
</Overload>
</KeyWord>
<KeyWord name="FERROR" func="yes">
<Overload retVal="{nVal}" descr="Low-level File Functions -
Returns the error number of the most recent byte-level input or output error,
or 0 if the most recent byte-level method was successful. Used in a TRY and CATCH block to get the error number. See OLH">
</Overload>
</KeyWord>
<KeyWord name="FFLUSH" func="yes">
<Overload retVal="{lVal}" descr="Low-level File Functions -
Writes to disk a file previously opened with
FCREATE() or FOPEN() without closing the file. Returns true if successful and false if unsuccessful.">
<Param name="<filehandle>"/>
</Overload>
</KeyWord>
<KeyWord name="FGETS" func="yes">
<Overload retVal="{expC}" descr="Low-level File Functions -
Returns a line of text from a file previously opened with FCREATE() or FOPEN().">
<Param name="<filehandle expN>"/>
<Param name="<characters expN>"/>
<Param name="<end-of-line expC>"/>
</Overload>
</KeyWord>
<KeyWord name="FIELD" func="yes">
<Overload retVal="{cVal}" descr="Xbase -
Returns the name of the field in a specified position of a table.">
<Param name="<field number expN>"/>
<Param name=" [<alias>]"/>
</Overload>
</KeyWord>
<KeyWord name="FILE" func="yes">
<Overload retVal="{lVal}" descr="Files and Operating System -
Tests for the existence of a file. Returns true if the file exists and false if it doesn't.
Both options need to be enclosed in quotes">
<Param name="<filename expC> | :<sourceAlias>:filename expC"/>
</Overload>
</KeyWord>
<KeyWord name="FINALLY"/>
<KeyWord name="FINDINSTANCE" func="yes">
<Overload retVal="{oRef}" descr="Core Language -
Returns an object of the specified class from the object heap.">
<Param name="<classname expC>"/>
<Param name="[<previous oRef>]"/>
</Overload>
</KeyWord>
<KeyWord name="FLDCOUNT" func="yes">
<Overload retVal="{nVal}" descr="Xbase -
Returns the number of fields in a table. Same as FCOUNT()">
<Param name="[<alias>]"/>
</Overload>
</KeyWord>
<KeyWord name="FLDLIST" func="yes">
<Overload retVal="{fieldList}" descr="Xbase -
Returns the fields and calculated field expressions of a SET FIELDS TO list.">
<Param name="[<field number expN>]"/>
</Overload>
</KeyWord>
<KeyWord name="FLENGTH" func="yes">
<Overload retVal="{nVal}" descr="Xbase -
Returns the length of the field in a specified position of a table.">
<Param name="<field number expN>"/>
<Param name=" [<alias>]"/>
</Overload>
</KeyWord>
<KeyWord name="FLOCK" func="yes">
<Overload retVal="{retVal}" descr="Xbase -
Locks a table.">
<Param name="[<alias>]"/>
</Overload>
</KeyWord>
<KeyWord name="FLOOR" func="yes">
<Overload retVal="{nVal}" descr="Math/Money -
Returns the nearest integer that is less than or equal to a specified number.">
<Param name="<expN>"/>
</Overload>
</KeyWord>
<KeyWord name="FLUSH"/>
<KeyWord name="FNAMEMAX" func="yes">
<Overload retVal="{nVal}" descr="Files and Operating System -
Returns the maximum allowable file-name length on a given drive or volume.
See OLH for more information.">
<Param name="[<filename expC>]"/>
</Overload>
</KeyWord>
<KeyWord name="FOPEN" func="yes">
<Overload retVal="{filehandle}" descr="Low-level File Functions -
Opens a specified file.">
<Param name="<filename expC>"/>
<Param name="<access expC>"/>
</Overload>
</KeyWord>
<KeyWord name="FOR" func="yes">
<Overload retVal="{stringVal}" descr="Xbase -
Returns the FOR clause of a specified index tag.">
<Param name="[<.mdx filename expC>]"/>
<Param name="[<index position expN>"/>
<Param name="[<alias>]]"/>
</Overload>
<Overload retVal="{}" descr="Language Definition - Control Statements - Part of a FOR/ENDFOR Loop construct.">
</Overload>
</KeyWord>
<KeyWord name="FOUND" func="yes">
<Overload retVal="{lVal}" descr="Xbase -
Indicates if the last-issued search command found a match.">
<Param name="[<alias>]"/>
</Overload>
</KeyWord>
<KeyWord name="FPUTS" func="yes">
<Overload retVal="{nVal}" descr="Low-level File Functions -
Writes a character string, and one or two end-of-line characters,
to a file previously opened with FCREATE() or FOPEN(). Returns the number of characters written.">
<Param name="<filehandle>"/>
<Param name="<string expC>"/>
<Param name="[<characters expN>"/>
<Param name="[<end-of-line expC>]]"/>
</Overload>
</KeyWord>
<KeyWord name="FREAD" func="yes">
<Overload retVal="{stringVal}" descr="Low-level File Functions -
Returns a specified number of characters
from a file previously opened with FCREATE() or FOPEN().">
<Param name="<filehandle>"/>
<Param name="<characters expN>"/>
</Overload>
</KeyWord>
<KeyWord name="FROM"/>
<KeyWord name="FSEEK" func="yes">
<Overload retVal="{newPosition}" descr="Low-level File Functions -
Moves the file pointer in a file previously opened with FCREATE() or FOPEN(),
and returns the new position of the file pointer.">
<Param name="<filehandle>"/>
<Param name="<offset expN>"/>
<Param name="[<position expN>]"/>
</Overload>
</KeyWord>
<KeyWord name="FSHORTNAME" func="yes">