@magic-xpa/utils 4.1201.0-dev4121.306 → 4.1201.0-dev4121.308
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/fesm2022/magic-xpa-utils.mjs +23 -2
- package/fesm2022/magic-xpa-utils.mjs.map +1 -1
- package/package.json +6 -6
- package/types/magic-xpa-utils.d.ts +2847 -0
- package/index.d.ts +0 -29
- package/src/Base64.d.ts +0 -17
- package/src/ChoiceUtils.d.ts +0 -5
- package/src/Constants.d.ts +0 -71
- package/src/DateTimeUtils.d.ts +0 -5
- package/src/DateUtil.d.ts +0 -6
- package/src/InternalInterface.d.ts +0 -337
- package/src/JSON_Utils.d.ts +0 -3
- package/src/Logger.d.ts +0 -49
- package/src/MagicConstants.d.ts +0 -9
- package/src/Misc.d.ts +0 -13
- package/src/MsgInterface.d.ts +0 -180
- package/src/PICInterface.d.ts +0 -50
- package/src/PlatformUtils.d.ts +0 -5
- package/src/Queue.d.ts +0 -9
- package/src/Randomizer.d.ts +0 -14
- package/src/RequestInfo.d.ts +0 -15
- package/src/Rtf.d.ts +0 -152
- package/src/StorageAttribute.d.ts +0 -14
- package/src/StrUtil.d.ts +0 -46
- package/src/SyncExecutionHelper.d.ts +0 -7
- package/src/UtilDateJpn.d.ts +0 -19
- package/src/UtilImeJpn.d.ts +0 -9
- package/src/UtilStrByteMode.d.ts +0 -27
- package/src/XMLConstants.d.ts +0 -170
- package/src/Xml/XmlParser.d.ts +0 -34
- package/src/enums.d.ts +0 -1564
|
@@ -0,0 +1,2847 @@
|
|
|
1
|
+
import { Encoding, StringBuilder, DateTime, List, Exception, StackTrace } from '@magic-xpa/mscorelib';
|
|
2
|
+
|
|
3
|
+
declare class Base64 {
|
|
4
|
+
private static _base64EncMap;
|
|
5
|
+
private static _base64DecMap;
|
|
6
|
+
static encode(str: string): string;
|
|
7
|
+
static encode(str: string, isUseEnvCharset: boolean, encoding: Encoding): string;
|
|
8
|
+
private static encode_1;
|
|
9
|
+
private static encodeBytes;
|
|
10
|
+
static decode(str: string): string;
|
|
11
|
+
static decode(str: string, encoding: Encoding): string;
|
|
12
|
+
private static decode_1;
|
|
13
|
+
private static decodeBytes;
|
|
14
|
+
static decodeToHex(str: string): string;
|
|
15
|
+
static decodeToByte(str: string): Uint8Array;
|
|
16
|
+
private static initializeEncMap;
|
|
17
|
+
private static initializeDecMap;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
declare class ChoiceUtils {
|
|
21
|
+
static GetDisplayListFromString(choiceDispStr: string, removeAccelerators: boolean, shouldMakePrintable: boolean, shouldTrimOptions: boolean): string[];
|
|
22
|
+
static RemoveAcclCharFromOptions(OptionStr: StringBuilder): string;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
declare class Constants {
|
|
26
|
+
static readonly NULL_ARITH_NULLIFY: string;
|
|
27
|
+
static readonly NULL_ARITH_USE_DEF: string;
|
|
28
|
+
static readonly SELPRG_MODE_BEFORE: string;
|
|
29
|
+
static readonly SELPRG_MODE_AFTER: string;
|
|
30
|
+
static readonly SELPRG_MODE_PROMPT: string;
|
|
31
|
+
static readonly MOVE_UNIT_TABLE: string;
|
|
32
|
+
static readonly MOVE_UNIT_PAGE: string;
|
|
33
|
+
static readonly MOVE_UNIT_ROW: string;
|
|
34
|
+
static readonly MOVE_UNIT_TREE_NODE: string;
|
|
35
|
+
static readonly MOVE_DIRECTION_NONE: string;
|
|
36
|
+
static readonly MOVE_DIRECTION_BEGIN: string;
|
|
37
|
+
static readonly MOVE_DIRECTION_PREV: string;
|
|
38
|
+
static readonly MOVE_DIRECTION_NEXT: string;
|
|
39
|
+
static readonly MOVE_DIRECTION_END: string;
|
|
40
|
+
static readonly MOVE_DIRECTION_PARENT: string;
|
|
41
|
+
static readonly MOVE_DIRECTION_FIRST_SON: string;
|
|
42
|
+
static readonly MOVE_DIRECTION_NEXT_SIBLING: string;
|
|
43
|
+
static readonly MOVE_DIRECTION_PREV_SIBLING: string;
|
|
44
|
+
static readonly TASK_REFRESH_FORM: string;
|
|
45
|
+
static readonly TASK_REFRESH_TABLE: string;
|
|
46
|
+
static readonly TASK_REFRESH_TREE_AND_FORM: string;
|
|
47
|
+
static readonly TASK_REFRESH_CURR_REC: string;
|
|
48
|
+
static readonly TASK_REFRESH_NONE: string;
|
|
49
|
+
static readonly TASK_MODE_QUERY: string;
|
|
50
|
+
static readonly TASK_MODE_MODIFY: string;
|
|
51
|
+
static readonly TASK_MODE_CREATE: string;
|
|
52
|
+
static readonly TASK_MODE_DELETE: string;
|
|
53
|
+
static readonly TASK_MODE_NONE = " ";
|
|
54
|
+
static readonly TASK_LEVEL_NONE: string;
|
|
55
|
+
static readonly TASK_LEVEL_TASK: string;
|
|
56
|
+
static readonly TASK_LEVEL_RECORD: string;
|
|
57
|
+
static readonly TASK_LEVEL_CONTROL: string;
|
|
58
|
+
static readonly MG_DATAVIEW_FIRST_RECORD: number;
|
|
59
|
+
static readonly MG_DATAVIEW_LAST_RECORD: number;
|
|
60
|
+
static readonly ACT_STT_TBL_SCREEN_MODE: number;
|
|
61
|
+
static readonly ACT_STT_TBL_LEFT_TO_RIGHT: number;
|
|
62
|
+
static readonly ACT_STT_TBL_SCREEN_TOP: number;
|
|
63
|
+
static readonly ACT_STT_TBL_SCREEN_END: number;
|
|
64
|
+
static readonly ACT_STT_TBL_ROW_START: number;
|
|
65
|
+
static readonly ACT_STT_TBL_ROW_END: number;
|
|
66
|
+
static readonly ACT_STT_EDT_LEFT_TO_RIGHT: number;
|
|
67
|
+
static readonly ACT_STT_EDT_FORM_TOP: number;
|
|
68
|
+
static readonly ACT_STT_EDT_FORM_END: number;
|
|
69
|
+
static readonly ACT_STT_EDT_LINE_START: number;
|
|
70
|
+
static readonly ACT_STT_EDT_LINE_END: number;
|
|
71
|
+
static readonly ACT_STT_EDT_EDITING: number;
|
|
72
|
+
static readonly ACT_STT_TREE_PARK: number;
|
|
73
|
+
static readonly ACT_STT_TREE_EDITING: number;
|
|
74
|
+
static readonly ForwardSlashWebUsage: string;
|
|
75
|
+
static readonly HTTP_PROTOCOL: string;
|
|
76
|
+
static readonly HTTPS_PROTOCOL: string;
|
|
77
|
+
static readonly FILE_PROTOCOL: string;
|
|
78
|
+
static readonly MG_GUI_THREAD: string;
|
|
79
|
+
static readonly MG_WORK_THREAD: string;
|
|
80
|
+
static readonly MG_TIMER_THREAD: string;
|
|
81
|
+
static readonly ConfigurationFilePropertyName: string;
|
|
82
|
+
static readonly WinPropText: string;
|
|
83
|
+
static readonly WinPropLayer: string;
|
|
84
|
+
static readonly WinPropX1: string;
|
|
85
|
+
static readonly WinPropX2: string;
|
|
86
|
+
static readonly WinPropY1: string;
|
|
87
|
+
static readonly WinPropY2: string;
|
|
88
|
+
static readonly WinPropIsTransparent: string;
|
|
89
|
+
static readonly WinPropName: string;
|
|
90
|
+
static readonly WinPropVisible: string;
|
|
91
|
+
static readonly WinPropVisibleLayerList: string;
|
|
92
|
+
static readonly TabOrderPropertyTermination: string;
|
|
93
|
+
static readonly SByteMaxValue = 127;
|
|
94
|
+
constructor();
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
declare class DateTimeUtils {
|
|
98
|
+
private static int2str;
|
|
99
|
+
static ToString(dateTime: DateTime, format: string, logger: any): string;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
declare class DateUtil {
|
|
103
|
+
private static readonly _localMonths;
|
|
104
|
+
private static readonly _localDays;
|
|
105
|
+
static getLocalMonths(names: string): string[];
|
|
106
|
+
static getLocalDays(names: string): string[];
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
declare enum Logger_MessageDirection {
|
|
110
|
+
MessageLeaving = 0,
|
|
111
|
+
MessageEntering = 1
|
|
112
|
+
}
|
|
113
|
+
declare enum Logger_LogLevels {
|
|
114
|
+
None = 0,
|
|
115
|
+
RequestInfo = 1,
|
|
116
|
+
Server = 2,
|
|
117
|
+
ServerMessages = 3,
|
|
118
|
+
Support = 4,
|
|
119
|
+
Gui = 5,
|
|
120
|
+
Development = 6,
|
|
121
|
+
Basic = 7
|
|
122
|
+
}
|
|
123
|
+
declare enum Priority {
|
|
124
|
+
LOWEST = 1,
|
|
125
|
+
LOW = 2,
|
|
126
|
+
HIGH = 3
|
|
127
|
+
}
|
|
128
|
+
declare enum TableBehaviour {
|
|
129
|
+
LimitedItems = 1,
|
|
130
|
+
UnlimitedItems = 2
|
|
131
|
+
}
|
|
132
|
+
declare enum HttpStatusCode {
|
|
133
|
+
Unused = 0
|
|
134
|
+
}
|
|
135
|
+
declare enum MgControlType {
|
|
136
|
+
CTRL_TYPE_NONE = "0",
|
|
137
|
+
CTRL_TYPE_BUTTON = "B",
|
|
138
|
+
CTRL_TYPE_CHECKBOX = "C",
|
|
139
|
+
CTRL_TYPE_RADIO = "R",
|
|
140
|
+
CTRL_TYPE_COMBO = "D",
|
|
141
|
+
CTRL_TYPE_LIST = "E",
|
|
142
|
+
CTRL_TYPE_TEXT = "T",
|
|
143
|
+
CTRL_TYPE_GROUP = "G",
|
|
144
|
+
CTRL_TYPE_TAB = "J",
|
|
145
|
+
CTRL_TYPE_TABLE = "A",
|
|
146
|
+
CTRL_TYPE_COLUMN = "K",
|
|
147
|
+
CTRL_TYPE_LABEL = "L",
|
|
148
|
+
CTRL_TYPE_IMAGE = "I",
|
|
149
|
+
CTRL_TYPE_SUBFORM = "F",
|
|
150
|
+
CTRL_TYPE_BROWSER = "W",
|
|
151
|
+
CTRL_TYPE_STATUS_BAR = "1",
|
|
152
|
+
CTRL_TYPE_SB_LABEL = "2",
|
|
153
|
+
CTRL_TYPE_SB_IMAGE = "3",
|
|
154
|
+
CTRL_TYPE_FRAME_SET = "P",
|
|
155
|
+
CTRL_TYPE_CONTAINER = "Q",
|
|
156
|
+
CTRL_TYPE_FRAME_FORM = "U",
|
|
157
|
+
CTRL_TYPE_LINE = "X"
|
|
158
|
+
}
|
|
159
|
+
declare enum DitType {
|
|
160
|
+
None = 1,
|
|
161
|
+
Edit = 2,
|
|
162
|
+
Button = 3,
|
|
163
|
+
Combobox = 4,
|
|
164
|
+
Listbox = 5,
|
|
165
|
+
Radiobox = 6,
|
|
166
|
+
Tab = 7,
|
|
167
|
+
Checkbox = 8,
|
|
168
|
+
Image = 9,
|
|
169
|
+
Static = 10,
|
|
170
|
+
Line = 11,
|
|
171
|
+
Group = 12,
|
|
172
|
+
Table = 13,
|
|
173
|
+
Slider = 14,
|
|
174
|
+
Ole = 15,
|
|
175
|
+
Hotspot = 16,
|
|
176
|
+
StaticTable = 17,
|
|
177
|
+
Sound = 18,
|
|
178
|
+
Html = 19,
|
|
179
|
+
Java = 20,
|
|
180
|
+
Activex = 21,
|
|
181
|
+
Frame = 22,
|
|
182
|
+
Subform = 23,
|
|
183
|
+
Hypertext = 24,
|
|
184
|
+
Browser = 25,
|
|
185
|
+
Opaque = 26
|
|
186
|
+
}
|
|
187
|
+
declare enum BorderType {
|
|
188
|
+
Thin = 1,
|
|
189
|
+
Thick = 2,
|
|
190
|
+
NoBorder = 3
|
|
191
|
+
}
|
|
192
|
+
declare enum GradientStyle {
|
|
193
|
+
None = 1,
|
|
194
|
+
Horizontal = 2,
|
|
195
|
+
HorizontalSymmetric = 3,
|
|
196
|
+
HorizontalWide = 4,
|
|
197
|
+
Vertical = 5,
|
|
198
|
+
VerticalSymmetric = 6,
|
|
199
|
+
VerticalWide = 7,
|
|
200
|
+
DiagonalLeft = 8,
|
|
201
|
+
DiagonalLeftSymmetric = 9,
|
|
202
|
+
DiagonalRight = 10,
|
|
203
|
+
DiagonalRightSymmetric = 11,
|
|
204
|
+
CornerTopLeft = 12,
|
|
205
|
+
CornerTopRight = 13,
|
|
206
|
+
CornerBottomLeft = 14,
|
|
207
|
+
CornerBottomRight = 15,
|
|
208
|
+
Center = 16
|
|
209
|
+
}
|
|
210
|
+
declare enum AlignmentTypeHori {
|
|
211
|
+
Left = 1,
|
|
212
|
+
Center = 2,
|
|
213
|
+
Right = 3
|
|
214
|
+
}
|
|
215
|
+
declare enum TabbingOrderType {
|
|
216
|
+
Automatically = 1,
|
|
217
|
+
Manual = 2
|
|
218
|
+
}
|
|
219
|
+
declare enum AllowedDirectionType {
|
|
220
|
+
Both = 1,
|
|
221
|
+
Foreword = 2,
|
|
222
|
+
Backward = 3
|
|
223
|
+
}
|
|
224
|
+
declare enum AlignmentTypeVert {
|
|
225
|
+
Top = 1,
|
|
226
|
+
Center = 2,
|
|
227
|
+
Bottom = 3
|
|
228
|
+
}
|
|
229
|
+
declare enum HtmlAlignmentType {
|
|
230
|
+
TextVertTop = 1,
|
|
231
|
+
TextVertCenter = 2,
|
|
232
|
+
TextVertBottom = 3,
|
|
233
|
+
TextHoriLeft = 4,
|
|
234
|
+
TextHoriRight = 5
|
|
235
|
+
}
|
|
236
|
+
declare enum SideType {
|
|
237
|
+
Top = 1,
|
|
238
|
+
Right = 2,
|
|
239
|
+
Bottom = 3,
|
|
240
|
+
Left = 4
|
|
241
|
+
}
|
|
242
|
+
declare enum SelprgMode {
|
|
243
|
+
Before = "B",
|
|
244
|
+
After = "A",
|
|
245
|
+
Prompt = "P"
|
|
246
|
+
}
|
|
247
|
+
declare enum WinCptn {
|
|
248
|
+
Half = 1,
|
|
249
|
+
On = 2,
|
|
250
|
+
Off = 3
|
|
251
|
+
}
|
|
252
|
+
declare enum WinHtmlType {
|
|
253
|
+
Get = 1,
|
|
254
|
+
Post = 2,
|
|
255
|
+
Link = 3
|
|
256
|
+
}
|
|
257
|
+
declare enum WinUom {
|
|
258
|
+
Dlg = 1,
|
|
259
|
+
Mm = 2,
|
|
260
|
+
Inch = 3,
|
|
261
|
+
Pix = 4
|
|
262
|
+
}
|
|
263
|
+
declare enum ControlStyle {
|
|
264
|
+
TwoD = 1,
|
|
265
|
+
ThreeD = 2,
|
|
266
|
+
ThreeDSunken = 3,
|
|
267
|
+
Windows3d = 4,
|
|
268
|
+
Windows = 5,
|
|
269
|
+
Emboss = 6,
|
|
270
|
+
NoBorder = 7
|
|
271
|
+
}
|
|
272
|
+
declare enum CtrlLineType {
|
|
273
|
+
Normal = 1,
|
|
274
|
+
Dash = 2,
|
|
275
|
+
Dot = 3,
|
|
276
|
+
Dashdot = 4,
|
|
277
|
+
Dashdotdot = 5
|
|
278
|
+
}
|
|
279
|
+
declare enum CtrlTextType {
|
|
280
|
+
Default = 1,
|
|
281
|
+
Bullet = 2,
|
|
282
|
+
Number = 3
|
|
283
|
+
}
|
|
284
|
+
declare enum CtrlLineDirection {
|
|
285
|
+
Asc = 1,
|
|
286
|
+
Des = 2
|
|
287
|
+
}
|
|
288
|
+
declare enum CtrlOleDisplayType {
|
|
289
|
+
Icon = 1,
|
|
290
|
+
Content = 2,
|
|
291
|
+
Any = 3
|
|
292
|
+
}
|
|
293
|
+
declare enum CtrlOleStoreType {
|
|
294
|
+
Link = 1,
|
|
295
|
+
Embeded = 2,
|
|
296
|
+
Any = 3
|
|
297
|
+
}
|
|
298
|
+
declare enum CtrlButtonType {
|
|
299
|
+
Submit = 1,
|
|
300
|
+
Clear = 2,
|
|
301
|
+
Default = 3
|
|
302
|
+
}
|
|
303
|
+
declare enum CtrlImageStyle {
|
|
304
|
+
Tiled = 1,
|
|
305
|
+
Copied = 2,
|
|
306
|
+
ScaleFit = 3,
|
|
307
|
+
ScaleFill = 4,
|
|
308
|
+
Distorted = 5
|
|
309
|
+
}
|
|
310
|
+
declare enum TabControlTabsWidth {
|
|
311
|
+
FitToText = 1,
|
|
312
|
+
Fixed = 2,
|
|
313
|
+
FillToRight = 3,
|
|
314
|
+
FixedInLine = 4
|
|
315
|
+
}
|
|
316
|
+
declare enum CheckboxMainStyle {
|
|
317
|
+
None = 0,
|
|
318
|
+
Box = 1,
|
|
319
|
+
Button = 2,
|
|
320
|
+
Switch = 3
|
|
321
|
+
}
|
|
322
|
+
declare enum RbAppearance {
|
|
323
|
+
None = 0,
|
|
324
|
+
Radio = 1,
|
|
325
|
+
Button = 2
|
|
326
|
+
}
|
|
327
|
+
declare enum HelpCommand {
|
|
328
|
+
Context = 1,
|
|
329
|
+
Contents = 2,
|
|
330
|
+
Setcontents = 3,
|
|
331
|
+
Contextpopup = 4,
|
|
332
|
+
Key = 5,
|
|
333
|
+
Command = 6,
|
|
334
|
+
Forcefile = 7,
|
|
335
|
+
Helponhelp = 8,
|
|
336
|
+
Quit = 9
|
|
337
|
+
}
|
|
338
|
+
declare enum FormExpandType {
|
|
339
|
+
None = 1,
|
|
340
|
+
OnePage = 2,
|
|
341
|
+
MultiPage = 3
|
|
342
|
+
}
|
|
343
|
+
declare enum DitAttribute {
|
|
344
|
+
Alpha = 1,
|
|
345
|
+
Unicode = 2,
|
|
346
|
+
Numeric = 3,
|
|
347
|
+
Boolean = 4,
|
|
348
|
+
Date = 5,
|
|
349
|
+
Time = 6,
|
|
350
|
+
Memo = 7,
|
|
351
|
+
Blob = 8
|
|
352
|
+
}
|
|
353
|
+
declare enum DspInterface {
|
|
354
|
+
Text = 1,
|
|
355
|
+
Gui = 2,
|
|
356
|
+
Html = 3,
|
|
357
|
+
Java = 4,
|
|
358
|
+
Frame = 5,
|
|
359
|
+
Merge = 6,
|
|
360
|
+
Webonline = 7,
|
|
361
|
+
Browser = 8
|
|
362
|
+
}
|
|
363
|
+
declare enum PrgExecPlace {
|
|
364
|
+
Before = 1,
|
|
365
|
+
After = 2,
|
|
366
|
+
Prompt = 3
|
|
367
|
+
}
|
|
368
|
+
declare enum SliderType {
|
|
369
|
+
Vertical = 1,
|
|
370
|
+
Horizontal = 2
|
|
371
|
+
}
|
|
372
|
+
declare enum CtrlButtonTypeGui {
|
|
373
|
+
None = 0,
|
|
374
|
+
Push = 1,
|
|
375
|
+
Image = 2,
|
|
376
|
+
Hypertext = 3,
|
|
377
|
+
TextOnImage = 4
|
|
378
|
+
}
|
|
379
|
+
declare enum ImageEffects {
|
|
380
|
+
Normal = 1,
|
|
381
|
+
WipeDown = 2,
|
|
382
|
+
WipeUp = 3,
|
|
383
|
+
WipeRight = 4,
|
|
384
|
+
WipeLeft = 5,
|
|
385
|
+
Pixel = 6,
|
|
386
|
+
SmallBox = 7,
|
|
387
|
+
MediumBox = 8,
|
|
388
|
+
LargeBox = 9,
|
|
389
|
+
Hline = 10,
|
|
390
|
+
Vline = 11,
|
|
391
|
+
Vmiddle = 12,
|
|
392
|
+
Hmiddle = 13,
|
|
393
|
+
Hinterlace = 14,
|
|
394
|
+
Vinterlace = 15,
|
|
395
|
+
OutToIn = 16,
|
|
396
|
+
InToOut = 17,
|
|
397
|
+
OtiInterlace1 = 18,
|
|
398
|
+
ItoInterlace2 = 19,
|
|
399
|
+
SpiralIn3 = 20,
|
|
400
|
+
SpiralOut4 = 21
|
|
401
|
+
}
|
|
402
|
+
declare enum CtrlHotspotType {
|
|
403
|
+
Square = 1,
|
|
404
|
+
Circle = 2
|
|
405
|
+
}
|
|
406
|
+
declare enum SubformType {
|
|
407
|
+
Program = 1,
|
|
408
|
+
Subtask = 2,
|
|
409
|
+
Form = 3,
|
|
410
|
+
None = 4
|
|
411
|
+
}
|
|
412
|
+
declare enum DatabaseDefinitionType {
|
|
413
|
+
String = 1,
|
|
414
|
+
Normal = 2
|
|
415
|
+
}
|
|
416
|
+
declare enum DatabaseOperations {
|
|
417
|
+
Insert = 1,
|
|
418
|
+
Update = 2,
|
|
419
|
+
Delete = 3,
|
|
420
|
+
Where = 4,
|
|
421
|
+
None = 5
|
|
422
|
+
}
|
|
423
|
+
declare enum DataTranslation {
|
|
424
|
+
Ansi = 1,
|
|
425
|
+
Oem = 2,
|
|
426
|
+
Unicode = 3
|
|
427
|
+
}
|
|
428
|
+
declare enum WindowPosition {
|
|
429
|
+
Customized = 1,
|
|
430
|
+
DefaultBounds = 2,
|
|
431
|
+
CenteredToParent = 3,
|
|
432
|
+
CenteredToMagic = 4,
|
|
433
|
+
CenteredToDesktop = 5,
|
|
434
|
+
DefaultLocation = 6,
|
|
435
|
+
CenteredToWindow = 7
|
|
436
|
+
}
|
|
437
|
+
declare enum FldStyle {
|
|
438
|
+
None = 1,
|
|
439
|
+
Activex = 2,
|
|
440
|
+
Ole = 3,
|
|
441
|
+
Vector = 4,
|
|
442
|
+
Dotnet = 5
|
|
443
|
+
}
|
|
444
|
+
declare enum FieldComType {
|
|
445
|
+
Obj = 1,
|
|
446
|
+
Ref = 2
|
|
447
|
+
}
|
|
448
|
+
declare enum ListboxSelectionMode {
|
|
449
|
+
Single = 1,
|
|
450
|
+
Multiple = 2
|
|
451
|
+
}
|
|
452
|
+
declare enum SplitWindowType {
|
|
453
|
+
None = 1,
|
|
454
|
+
Vertical = 2,
|
|
455
|
+
Horizontal = 3
|
|
456
|
+
}
|
|
457
|
+
declare enum SplitPrimaryDisplay {
|
|
458
|
+
Default = 1,
|
|
459
|
+
Left = 2,
|
|
460
|
+
Right = 3,
|
|
461
|
+
Top = 4,
|
|
462
|
+
Bottom = 5
|
|
463
|
+
}
|
|
464
|
+
declare enum AutoFit {
|
|
465
|
+
None = 1,
|
|
466
|
+
AsControl = 2,
|
|
467
|
+
AsCalledForm = 3
|
|
468
|
+
}
|
|
469
|
+
declare enum WindowType {
|
|
470
|
+
Default = 1,
|
|
471
|
+
Sdi = 2,
|
|
472
|
+
ChildWindow = 3,
|
|
473
|
+
SplitterChildWindow = 4,
|
|
474
|
+
Floating = 5,
|
|
475
|
+
Modal = 6,
|
|
476
|
+
ApplicationModal = 7,
|
|
477
|
+
Tool = 8,
|
|
478
|
+
FitToMdi = 9,
|
|
479
|
+
MdiChild = 10,
|
|
480
|
+
MdiFrame = 11,
|
|
481
|
+
Overlay = 12,
|
|
482
|
+
LogonApplicationWindow = "a",
|
|
483
|
+
TkDockChild = "b"
|
|
484
|
+
}
|
|
485
|
+
declare enum StartupMode {
|
|
486
|
+
Default = 1,
|
|
487
|
+
Maximize = 2,
|
|
488
|
+
Minimize = 3
|
|
489
|
+
}
|
|
490
|
+
declare enum ColumnUpdateStyle {
|
|
491
|
+
Absolute = 1,
|
|
492
|
+
Differential = 2,
|
|
493
|
+
AsTable = 3
|
|
494
|
+
}
|
|
495
|
+
declare enum CallUdpConvention {
|
|
496
|
+
C = "C",
|
|
497
|
+
Standard = "S",
|
|
498
|
+
Fast = "F"
|
|
499
|
+
}
|
|
500
|
+
declare enum CallUDPType {
|
|
501
|
+
Background = "B",
|
|
502
|
+
GUI = "G"
|
|
503
|
+
}
|
|
504
|
+
declare enum VerifyMode {
|
|
505
|
+
Error = "E",
|
|
506
|
+
Warning = "W",
|
|
507
|
+
Revert = "R"
|
|
508
|
+
}
|
|
509
|
+
declare enum VerifyDisplay {
|
|
510
|
+
Box = "B",
|
|
511
|
+
Status = "S",
|
|
512
|
+
None = "N"
|
|
513
|
+
}
|
|
514
|
+
declare enum VerifyImage {
|
|
515
|
+
Exclamation = "E",
|
|
516
|
+
Critical = "C",
|
|
517
|
+
Question = "Q",
|
|
518
|
+
Information = "I",
|
|
519
|
+
None = "N"
|
|
520
|
+
}
|
|
521
|
+
declare enum VerifyButtons {
|
|
522
|
+
Ok = "O",
|
|
523
|
+
OkCancel = "K",
|
|
524
|
+
AbortRetryIgnore = "A",
|
|
525
|
+
YesNoCancel = "Y",
|
|
526
|
+
YesNo = "N",
|
|
527
|
+
RetryCancel = "R"
|
|
528
|
+
}
|
|
529
|
+
declare enum CallComOption {
|
|
530
|
+
Method = 1,
|
|
531
|
+
GetProp = 2,
|
|
532
|
+
SetProp = 3
|
|
533
|
+
}
|
|
534
|
+
declare enum CallWsStyle {
|
|
535
|
+
Rpc = 1,
|
|
536
|
+
Document = 2
|
|
537
|
+
}
|
|
538
|
+
declare enum CallOsShow {
|
|
539
|
+
Hide = 1,
|
|
540
|
+
Normal = 2,
|
|
541
|
+
Maximize = 3,
|
|
542
|
+
Minimize = 4
|
|
543
|
+
}
|
|
544
|
+
declare enum LogicUnit {
|
|
545
|
+
Remark = 1,
|
|
546
|
+
Task = 2,
|
|
547
|
+
Group = 3,
|
|
548
|
+
Record = 4,
|
|
549
|
+
Variable = 5,
|
|
550
|
+
Control = 6,
|
|
551
|
+
Event = 7,
|
|
552
|
+
Function = 8,
|
|
553
|
+
SeqFlow = 9
|
|
554
|
+
}
|
|
555
|
+
declare enum LogicLevel {
|
|
556
|
+
Prefix = "P",
|
|
557
|
+
Suffix = "S",
|
|
558
|
+
Verification = "V",
|
|
559
|
+
Change = "C"
|
|
560
|
+
}
|
|
561
|
+
declare enum BrkScope {
|
|
562
|
+
Task = "T",
|
|
563
|
+
Subtree = "S",
|
|
564
|
+
Global = "G"
|
|
565
|
+
}
|
|
566
|
+
declare enum LDir {
|
|
567
|
+
Default = "A",
|
|
568
|
+
Reversed = "D"
|
|
569
|
+
}
|
|
570
|
+
declare enum Order {
|
|
571
|
+
Ascending = "A",
|
|
572
|
+
Descending = "D"
|
|
573
|
+
}
|
|
574
|
+
declare enum LnkEval_Cond {
|
|
575
|
+
Record = "R",
|
|
576
|
+
Task = "T"
|
|
577
|
+
}
|
|
578
|
+
declare enum Access {
|
|
579
|
+
NoAccess = " ",
|
|
580
|
+
Read = "R",
|
|
581
|
+
Write = "W"
|
|
582
|
+
}
|
|
583
|
+
declare enum DbShare {
|
|
584
|
+
NoShare = " ",
|
|
585
|
+
Write = "W",
|
|
586
|
+
Read = "R",
|
|
587
|
+
None = "N"
|
|
588
|
+
}
|
|
589
|
+
declare enum DbOpen {
|
|
590
|
+
Normal = "N",
|
|
591
|
+
Fast = "F",
|
|
592
|
+
Damaged = "D",
|
|
593
|
+
Reindex = "R"
|
|
594
|
+
}
|
|
595
|
+
declare enum DbDelUpdMode {
|
|
596
|
+
Position = "P",
|
|
597
|
+
PositionAndSelectedFields = "S",
|
|
598
|
+
PositionAndUpdatedFields = "U",
|
|
599
|
+
AsTable = "T",
|
|
600
|
+
None = "N"
|
|
601
|
+
}
|
|
602
|
+
declare enum RaiseAt {
|
|
603
|
+
Container = 1,
|
|
604
|
+
TaskInFocus = 2
|
|
605
|
+
}
|
|
606
|
+
declare enum EngineDirect {
|
|
607
|
+
None = " ",
|
|
608
|
+
AbortTask = "A",
|
|
609
|
+
Rollback = "B",
|
|
610
|
+
AutoRetry = "R",
|
|
611
|
+
UserRetry = "U",
|
|
612
|
+
Ignore = "I",
|
|
613
|
+
AsStrategy = "S",
|
|
614
|
+
Continue = "C"
|
|
615
|
+
}
|
|
616
|
+
declare enum FlowDirection {
|
|
617
|
+
Forward = "F",
|
|
618
|
+
Backward = "B",
|
|
619
|
+
Combined = "C"
|
|
620
|
+
}
|
|
621
|
+
declare enum FlwMode {
|
|
622
|
+
Fast = "F",
|
|
623
|
+
Step = "S",
|
|
624
|
+
Combine = "B",
|
|
625
|
+
Before = "J",
|
|
626
|
+
After = "Z"
|
|
627
|
+
}
|
|
628
|
+
declare enum BottomPositionInterval {
|
|
629
|
+
NoneRowHeight = 1,
|
|
630
|
+
RowHeight = 2
|
|
631
|
+
}
|
|
632
|
+
declare enum ExecOn {
|
|
633
|
+
None = 0,
|
|
634
|
+
Optimized = 1,
|
|
635
|
+
Client = 2,
|
|
636
|
+
Server = 3
|
|
637
|
+
}
|
|
638
|
+
declare enum Storage {
|
|
639
|
+
AlphaString = 1,
|
|
640
|
+
AlphaLstring = 2,
|
|
641
|
+
AlphaZtring = 3,
|
|
642
|
+
NumericSigned = 4,
|
|
643
|
+
NumericUnsigned = 5,
|
|
644
|
+
NumericFloat = 6,
|
|
645
|
+
NumericFloatMs = 7,
|
|
646
|
+
NumericFloatDec = 8,
|
|
647
|
+
NumericPackedDec = 9,
|
|
648
|
+
NumericNumeric = 10,
|
|
649
|
+
NumericCharDec = 11,
|
|
650
|
+
NumericString = 12,
|
|
651
|
+
NumericMagic = 13,
|
|
652
|
+
NumericCisam = 14,
|
|
653
|
+
BooleanInteger = 15,
|
|
654
|
+
BooleanDbase = 16,
|
|
655
|
+
DateInteger = 17,
|
|
656
|
+
DateInteger1901 = 18,
|
|
657
|
+
DateString = 19,
|
|
658
|
+
DateYymd = 20,
|
|
659
|
+
DateMagic = 21,
|
|
660
|
+
DateMagic1901 = 22,
|
|
661
|
+
TimeInteger = 23,
|
|
662
|
+
TimeString = 24,
|
|
663
|
+
TimeHmsh = 25,
|
|
664
|
+
TimeMagic = 26,
|
|
665
|
+
MemoString = 27,
|
|
666
|
+
MemoMagic = 28,
|
|
667
|
+
Blob = 29,
|
|
668
|
+
NumericExtFloat = 30,
|
|
669
|
+
UnicodeString = 31,
|
|
670
|
+
UnicodeZstring = 32,
|
|
671
|
+
AnsiBlob = 33,
|
|
672
|
+
UnicodeBlob = 34
|
|
673
|
+
}
|
|
674
|
+
declare enum StorageAttributeType {
|
|
675
|
+
Alpha = "A",
|
|
676
|
+
Numeric = "N",
|
|
677
|
+
Boolean = "B",
|
|
678
|
+
Date = "D",
|
|
679
|
+
Time = "T",
|
|
680
|
+
Blob = "O",
|
|
681
|
+
Unicode = "U",
|
|
682
|
+
String = "S",
|
|
683
|
+
BlobOle = "L",
|
|
684
|
+
BlobActiveX = "X",
|
|
685
|
+
BlobVector = "V",
|
|
686
|
+
BlobDotNet = "E",
|
|
687
|
+
BlobJava = "J",
|
|
688
|
+
None = " "
|
|
689
|
+
}
|
|
690
|
+
declare enum BrkLevel {
|
|
691
|
+
Task = "T",
|
|
692
|
+
Group = "G",
|
|
693
|
+
All = "A",
|
|
694
|
+
Record = "R",
|
|
695
|
+
Control = "C",
|
|
696
|
+
Handler = "H",
|
|
697
|
+
MainProgram = "M",
|
|
698
|
+
Variable = "V",
|
|
699
|
+
Function = "F",
|
|
700
|
+
Remark = "K",
|
|
701
|
+
RM_Compat = "M",
|
|
702
|
+
SubForm = "U",
|
|
703
|
+
Event = "E",
|
|
704
|
+
OPStatOnChange = "O"
|
|
705
|
+
}
|
|
706
|
+
declare enum MediaOrientation {
|
|
707
|
+
Portrait = "P",
|
|
708
|
+
Landscape = "L"
|
|
709
|
+
}
|
|
710
|
+
declare enum MediaFormat {
|
|
711
|
+
Page = "P",
|
|
712
|
+
Line = "L",
|
|
713
|
+
None = "N"
|
|
714
|
+
}
|
|
715
|
+
declare enum CharacterSet {
|
|
716
|
+
Ansi = 0,
|
|
717
|
+
Oem = 1,
|
|
718
|
+
Unicode = 3,
|
|
719
|
+
Utf8 = 4
|
|
720
|
+
}
|
|
721
|
+
declare enum MediaAccess {
|
|
722
|
+
Read = "R",
|
|
723
|
+
Write = "W",
|
|
724
|
+
Append = "A",
|
|
725
|
+
Direct = "D",
|
|
726
|
+
AppendFlush = "F",
|
|
727
|
+
Create = "C"
|
|
728
|
+
}
|
|
729
|
+
declare enum PaperSize {
|
|
730
|
+
Default = "D",
|
|
731
|
+
Letter = "L",
|
|
732
|
+
A4 = "A",
|
|
733
|
+
Folio = "F",
|
|
734
|
+
Quarto = "Q",
|
|
735
|
+
Tabloid = "T",
|
|
736
|
+
Ledger = "R",
|
|
737
|
+
Legal_8_14 = "G",
|
|
738
|
+
Statement = "S",
|
|
739
|
+
Executive_7_10 = "X",
|
|
740
|
+
A3 = "3",
|
|
741
|
+
A5 = "5",
|
|
742
|
+
Note = "N",
|
|
743
|
+
Envelope_3_8 = "E",
|
|
744
|
+
B4 = "B",
|
|
745
|
+
B5_v = "V",
|
|
746
|
+
UserDefined = "U",
|
|
747
|
+
B5 = "W",
|
|
748
|
+
C5 = "C",
|
|
749
|
+
Legal = "g",
|
|
750
|
+
Multipurpose = "M",
|
|
751
|
+
Executive = "x",
|
|
752
|
+
EnvelopeB4 = "v",
|
|
753
|
+
EnvelopeB5 = "p",
|
|
754
|
+
EnvelopeC6 = "6",
|
|
755
|
+
EnvelopeDL = "o",
|
|
756
|
+
EnvelopeMonarch = "h",
|
|
757
|
+
Envelope9 = "9",
|
|
758
|
+
Envelope10 = "0",
|
|
759
|
+
Envelope11 = "1"
|
|
760
|
+
}
|
|
761
|
+
declare enum PaperSizePdfDisabled {
|
|
762
|
+
Default = "D",
|
|
763
|
+
Letter = "L",
|
|
764
|
+
A4 = "A",
|
|
765
|
+
Folio = "F",
|
|
766
|
+
Quarto = "Q",
|
|
767
|
+
Tabloid = "T",
|
|
768
|
+
Ledger = "R",
|
|
769
|
+
Legal_8_14 = "G",
|
|
770
|
+
Statement = "S",
|
|
771
|
+
Executive_7_10 = "X",
|
|
772
|
+
A3 = "3",
|
|
773
|
+
A5 = "5",
|
|
774
|
+
Note = "N",
|
|
775
|
+
Envelope_3_8 = "E",
|
|
776
|
+
B4 = "B",
|
|
777
|
+
B5_v = "V"
|
|
778
|
+
}
|
|
779
|
+
declare enum PaperSizePdfEnabled {
|
|
780
|
+
Default = "D",
|
|
781
|
+
UserDefined = "U",
|
|
782
|
+
Letter = "L",
|
|
783
|
+
A4 = "A",
|
|
784
|
+
A3 = "3",
|
|
785
|
+
Legal = "g",
|
|
786
|
+
B5 = "B",
|
|
787
|
+
C5 = "C",
|
|
788
|
+
Multipurpose = "M",
|
|
789
|
+
B4 = "4",
|
|
790
|
+
A5 = "5",
|
|
791
|
+
Folio = "F",
|
|
792
|
+
Executive = "x",
|
|
793
|
+
EnvelopeB4 = "v",
|
|
794
|
+
EnvelopeB5 = "p",
|
|
795
|
+
EnvelopeC6 = "6",
|
|
796
|
+
EnvelopeDL = "o",
|
|
797
|
+
EnvelopeMonarch = "h",
|
|
798
|
+
Envelope9 = "9",
|
|
799
|
+
Envelope10 = "0",
|
|
800
|
+
Envelope11 = "1"
|
|
801
|
+
}
|
|
802
|
+
declare enum Area {
|
|
803
|
+
Detail = "N",
|
|
804
|
+
Header = "H",
|
|
805
|
+
Footer = "F",
|
|
806
|
+
PageHeader = "P",
|
|
807
|
+
PageFooter = "G"
|
|
808
|
+
}
|
|
809
|
+
declare enum DisplayTextType {
|
|
810
|
+
Edit = 0,
|
|
811
|
+
Query = 1
|
|
812
|
+
}
|
|
813
|
+
declare enum LogicHeaderType {
|
|
814
|
+
None = " ",
|
|
815
|
+
Remark = "K",
|
|
816
|
+
Task = "T",
|
|
817
|
+
Function = "F",
|
|
818
|
+
Handler = "H",
|
|
819
|
+
Record = "R",
|
|
820
|
+
Variable = "V",
|
|
821
|
+
Control = "C",
|
|
822
|
+
Group = "G",
|
|
823
|
+
All = "A",
|
|
824
|
+
MainProgram = "P",
|
|
825
|
+
RecordCompat = "M",
|
|
826
|
+
SubForm = "U",
|
|
827
|
+
Event = "E"
|
|
828
|
+
}
|
|
829
|
+
declare enum LogicOperationType {
|
|
830
|
+
None = "x",
|
|
831
|
+
Remark = " ",
|
|
832
|
+
Update = "U",
|
|
833
|
+
Call = "C",
|
|
834
|
+
Invoke = "I",
|
|
835
|
+
RaiseEvent = "R",
|
|
836
|
+
Evaluate = "A",
|
|
837
|
+
Block = "B",
|
|
838
|
+
Verify = "E",
|
|
839
|
+
Form = "F",
|
|
840
|
+
Variable = "V"
|
|
841
|
+
}
|
|
842
|
+
declare enum Opr {
|
|
843
|
+
Remark = 0,
|
|
844
|
+
SelFld = 1,
|
|
845
|
+
Stop = 2,
|
|
846
|
+
BeginLink = 3,
|
|
847
|
+
EndLink = 4,
|
|
848
|
+
BeginBlock = 5,
|
|
849
|
+
EndBlock = 6,
|
|
850
|
+
Call = 7,
|
|
851
|
+
EvaluateExpression = 8,
|
|
852
|
+
UpdateFld = 9,
|
|
853
|
+
WriteFile = 10,
|
|
854
|
+
ReadFile = 11,
|
|
855
|
+
DataviewSrc = 12,
|
|
856
|
+
UserExit = 13,
|
|
857
|
+
RaiseEvent = 14
|
|
858
|
+
}
|
|
859
|
+
declare enum DataViewHeaderType {
|
|
860
|
+
None = " ",
|
|
861
|
+
Remark = "R",
|
|
862
|
+
Declare = "D",
|
|
863
|
+
MainSource = "M",
|
|
864
|
+
DirectSQL = "Q",
|
|
865
|
+
LinkQuery = "L",
|
|
866
|
+
LinkWrite = "W",
|
|
867
|
+
LinkCreate = "C",
|
|
868
|
+
LinkIJoin = "I",
|
|
869
|
+
LinkOJoin = "O",
|
|
870
|
+
EndLink = "E"
|
|
871
|
+
}
|
|
872
|
+
declare enum DataViewOperationType {
|
|
873
|
+
Remark = " ",
|
|
874
|
+
Column = "C",
|
|
875
|
+
Virtual = "V",
|
|
876
|
+
Parameter = "P",
|
|
877
|
+
LinkedColumn = "L"
|
|
878
|
+
}
|
|
879
|
+
declare enum LoadedValues {
|
|
880
|
+
None = 0,
|
|
881
|
+
HeaderOnly = 1,
|
|
882
|
+
Failed = 2,
|
|
883
|
+
Full = 3
|
|
884
|
+
}
|
|
885
|
+
declare enum YesNoValues {
|
|
886
|
+
Yes = 1,
|
|
887
|
+
No = 0
|
|
888
|
+
}
|
|
889
|
+
declare enum TrueFalseValues {
|
|
890
|
+
True = 1,
|
|
891
|
+
False = 0
|
|
892
|
+
}
|
|
893
|
+
declare enum HelpType {
|
|
894
|
+
Internal = "I",
|
|
895
|
+
Prompt = "P",
|
|
896
|
+
Windows = "W",
|
|
897
|
+
Tooltip = "T",
|
|
898
|
+
URL = "U"
|
|
899
|
+
}
|
|
900
|
+
declare enum NullArithmetic {
|
|
901
|
+
Nullify = 0,
|
|
902
|
+
UseDefault = 1
|
|
903
|
+
}
|
|
904
|
+
declare enum ModelClass {
|
|
905
|
+
Help = "A",
|
|
906
|
+
Field = "B",
|
|
907
|
+
Browser = "C",
|
|
908
|
+
GUI0 = "D",
|
|
909
|
+
GUI1 = "E",
|
|
910
|
+
TextBased = "F",
|
|
911
|
+
Frameset = "G",
|
|
912
|
+
Merge = "H",
|
|
913
|
+
RCDisplay = "I",
|
|
914
|
+
RCFrame = "J",
|
|
915
|
+
GuiFrame = "K"
|
|
916
|
+
}
|
|
917
|
+
declare enum CompTypes {
|
|
918
|
+
Magicxpa = "U",
|
|
919
|
+
DotNet = "D"
|
|
920
|
+
}
|
|
921
|
+
declare enum TaskFlow {
|
|
922
|
+
Undefined = "U",
|
|
923
|
+
Online = "O",
|
|
924
|
+
Batch = "B",
|
|
925
|
+
Browser = "R",
|
|
926
|
+
RichClient = "C"
|
|
927
|
+
}
|
|
928
|
+
declare enum RemarkType {
|
|
929
|
+
RegularOperation = 0,
|
|
930
|
+
Dataviewheader = 1,
|
|
931
|
+
TaskLogic = 2
|
|
932
|
+
}
|
|
933
|
+
declare enum VeeMode {
|
|
934
|
+
None = " ",
|
|
935
|
+
Parameter = "P",
|
|
936
|
+
Virtual = "V",
|
|
937
|
+
Real = "R",
|
|
938
|
+
Column = "C",
|
|
939
|
+
LinkCol = "L"
|
|
940
|
+
}
|
|
941
|
+
declare enum VeeDiffUpdate {
|
|
942
|
+
AsTable = "T",
|
|
943
|
+
Absolute = "N",
|
|
944
|
+
Differential = "Y",
|
|
945
|
+
None = 0
|
|
946
|
+
}
|
|
947
|
+
declare enum VeePartOfDataview {
|
|
948
|
+
Undefined = "U"
|
|
949
|
+
}
|
|
950
|
+
declare enum DataviewType {
|
|
951
|
+
MainTable = "M",
|
|
952
|
+
DSQL = "Q",
|
|
953
|
+
Declaration = "D"
|
|
954
|
+
}
|
|
955
|
+
declare enum TabbingCycleType {
|
|
956
|
+
RemainInCurrentRecord = "R",
|
|
957
|
+
MoveToNextRecord = "N",
|
|
958
|
+
MoveToParentTask = "P"
|
|
959
|
+
}
|
|
960
|
+
declare enum LockingStrategy {
|
|
961
|
+
Immediate = "I",
|
|
962
|
+
OnModify = "O",
|
|
963
|
+
AfterModify = "A",
|
|
964
|
+
BeforeUpdate = "B",
|
|
965
|
+
Minimum = "M"
|
|
966
|
+
}
|
|
967
|
+
declare enum TransBegin {
|
|
968
|
+
Update = "U",
|
|
969
|
+
Prefix = "P",
|
|
970
|
+
Suffix = "S",
|
|
971
|
+
OnLock = "L",
|
|
972
|
+
None = "N",
|
|
973
|
+
BeforeTask = "T",
|
|
974
|
+
Group = "G"
|
|
975
|
+
}
|
|
976
|
+
declare enum ErrStrategy {
|
|
977
|
+
Recover = "R",
|
|
978
|
+
Abort = "A"
|
|
979
|
+
}
|
|
980
|
+
declare enum CacheStrategy {
|
|
981
|
+
Pos = "P",
|
|
982
|
+
PosData = "D",
|
|
983
|
+
None = "N",
|
|
984
|
+
AsTable = "T"
|
|
985
|
+
}
|
|
986
|
+
declare enum ExeState {
|
|
987
|
+
Prefix = "P",
|
|
988
|
+
Suffix = "S",
|
|
989
|
+
Update = "U",
|
|
990
|
+
Main = "M",
|
|
991
|
+
Before = "B",
|
|
992
|
+
AfterOnChange = "O",
|
|
993
|
+
Verify = "V",
|
|
994
|
+
Change = "C"
|
|
995
|
+
}
|
|
996
|
+
declare enum TransMode {
|
|
997
|
+
Deferred = "D",
|
|
998
|
+
NestedDeffered = "N",
|
|
999
|
+
Physical = "P",
|
|
1000
|
+
WithinActiveTrans = "W",
|
|
1001
|
+
None = "O"
|
|
1002
|
+
}
|
|
1003
|
+
declare enum PositionUsage {
|
|
1004
|
+
RangeOn = "O",
|
|
1005
|
+
RangeFrom = "F",
|
|
1006
|
+
Locate = "L"
|
|
1007
|
+
}
|
|
1008
|
+
declare enum LnkMode {
|
|
1009
|
+
Query = "R",
|
|
1010
|
+
Write = "W",
|
|
1011
|
+
Create = "A",
|
|
1012
|
+
IJoin = "J",
|
|
1013
|
+
OJoin = "O"
|
|
1014
|
+
}
|
|
1015
|
+
declare enum InitialMode {
|
|
1016
|
+
Modify = "M",
|
|
1017
|
+
Create = "C",
|
|
1018
|
+
Delete = "D",
|
|
1019
|
+
Query = "E",
|
|
1020
|
+
AsParent = "P",
|
|
1021
|
+
Locate = "L",
|
|
1022
|
+
Range = "R",
|
|
1023
|
+
Key = "K",
|
|
1024
|
+
Sort = "S",
|
|
1025
|
+
Files = "O",
|
|
1026
|
+
Options = "N",
|
|
1027
|
+
ByExp = "B"
|
|
1028
|
+
}
|
|
1029
|
+
declare enum KeyMode {
|
|
1030
|
+
Normal = "N",
|
|
1031
|
+
Insert = "I",
|
|
1032
|
+
Append = "A"
|
|
1033
|
+
}
|
|
1034
|
+
declare enum BoxDir {
|
|
1035
|
+
Vertical = "V",
|
|
1036
|
+
Horizontal = "H"
|
|
1037
|
+
}
|
|
1038
|
+
declare enum EndMode {
|
|
1039
|
+
Before = "B",
|
|
1040
|
+
After = "A",
|
|
1041
|
+
Immediate = "I"
|
|
1042
|
+
}
|
|
1043
|
+
declare enum UniqueTskSort {
|
|
1044
|
+
AccordingToIndex = "A",
|
|
1045
|
+
Unique = "U"
|
|
1046
|
+
}
|
|
1047
|
+
declare enum BrkType {
|
|
1048
|
+
Prefix = "P",
|
|
1049
|
+
Suffix = "S",
|
|
1050
|
+
Main = "M",
|
|
1051
|
+
User = "U",
|
|
1052
|
+
Error = "E",
|
|
1053
|
+
Verify = "V",
|
|
1054
|
+
ChoiceChange = "C"
|
|
1055
|
+
}
|
|
1056
|
+
declare enum ErrorClassific {
|
|
1057
|
+
Any = 0,
|
|
1058
|
+
RecLocked = 1,
|
|
1059
|
+
DupKey = 2,
|
|
1060
|
+
ConstrFail = 3,
|
|
1061
|
+
TriggerFail = 4,
|
|
1062
|
+
RecUpdated = 5,
|
|
1063
|
+
RowsAffected = 6,
|
|
1064
|
+
UpdateFail = 7,
|
|
1065
|
+
Unmapped = 8,
|
|
1066
|
+
ExecSql = 9,
|
|
1067
|
+
BadSqlCmd = 10,
|
|
1068
|
+
BadIni = 11,
|
|
1069
|
+
BaName = 12,
|
|
1070
|
+
Damaged = 13,
|
|
1071
|
+
Unlocked = 14,
|
|
1072
|
+
BadOpen = 15,
|
|
1073
|
+
BadClose = 16,
|
|
1074
|
+
RsrcLocked = 17,
|
|
1075
|
+
RecLockedNoBuf = 18,
|
|
1076
|
+
NoDef = 19,
|
|
1077
|
+
RecLockedNow = 20,
|
|
1078
|
+
WrnRetry = 21,
|
|
1079
|
+
RecLockedMagic = 22,
|
|
1080
|
+
ReadOnly = 23,
|
|
1081
|
+
WrnCreated = 24,
|
|
1082
|
+
Capacity = 25,
|
|
1083
|
+
TransCommit = 26,
|
|
1084
|
+
TransOpen = 27,
|
|
1085
|
+
TransAbort = 28,
|
|
1086
|
+
BadDef = 29,
|
|
1087
|
+
InvalidOwnr = 30,
|
|
1088
|
+
ClrOwnrFail = 31,
|
|
1089
|
+
AlterTbl = 32,
|
|
1090
|
+
SortTbl = 33,
|
|
1091
|
+
CanotRemove = 34,
|
|
1092
|
+
CanotRename = 35,
|
|
1093
|
+
WrnLogActive = 36,
|
|
1094
|
+
TargetFileExist = 37,
|
|
1095
|
+
FileIsView = 38,
|
|
1096
|
+
CanotCopy = 39,
|
|
1097
|
+
Stop = 40,
|
|
1098
|
+
StrBadName = 41,
|
|
1099
|
+
InsertIntoAll = 42,
|
|
1100
|
+
BadQry = 43,
|
|
1101
|
+
FilterAfterInsert = 44,
|
|
1102
|
+
GetUserPwdDst = 45,
|
|
1103
|
+
WrnCacheTooBig = 46,
|
|
1104
|
+
LostRec = 47,
|
|
1105
|
+
FileLocked = 48,
|
|
1106
|
+
MaxConnEx = 49,
|
|
1107
|
+
Deadlock = 50,
|
|
1108
|
+
BadCreate = 51,
|
|
1109
|
+
FilNotExist = 52,
|
|
1110
|
+
Unused = 53,
|
|
1111
|
+
IdxCreateFail = 54,
|
|
1112
|
+
ConnectFail = 55,
|
|
1113
|
+
Fatal = 56,
|
|
1114
|
+
InsertFail = 57,
|
|
1115
|
+
DeleteFail = 58,
|
|
1116
|
+
InErrorZone = 59,
|
|
1117
|
+
NoRec = 60,
|
|
1118
|
+
NotExist = 61,
|
|
1119
|
+
GetUserPwd = 62,
|
|
1120
|
+
WrnCancel = 63,
|
|
1121
|
+
NotSupportedFunc = 64,
|
|
1122
|
+
ModifyWithinTrans = 65,
|
|
1123
|
+
LoginPwd = 66,
|
|
1124
|
+
None = 67
|
|
1125
|
+
}
|
|
1126
|
+
declare enum ComponentItemType {
|
|
1127
|
+
Models = 0,
|
|
1128
|
+
DataSources = 1,
|
|
1129
|
+
Programs = 2,
|
|
1130
|
+
Helps = 3,
|
|
1131
|
+
Rights = 4,
|
|
1132
|
+
Events = 5,
|
|
1133
|
+
Functions = 6
|
|
1134
|
+
}
|
|
1135
|
+
declare enum FieldComAlloc {
|
|
1136
|
+
Auto = 1,
|
|
1137
|
+
None = 2
|
|
1138
|
+
}
|
|
1139
|
+
declare enum BlobContent {
|
|
1140
|
+
Unknown = "0",
|
|
1141
|
+
Ansi = "1",
|
|
1142
|
+
Unicode = "2",
|
|
1143
|
+
Binary = "3"
|
|
1144
|
+
}
|
|
1145
|
+
declare enum DBHRowIdentifier {
|
|
1146
|
+
RowId = "R",
|
|
1147
|
+
Default = "D",
|
|
1148
|
+
UniqueKey = "U"
|
|
1149
|
+
}
|
|
1150
|
+
declare enum UseSQLCursor {
|
|
1151
|
+
Yes = "Y",
|
|
1152
|
+
No = "N",
|
|
1153
|
+
Default = "D"
|
|
1154
|
+
}
|
|
1155
|
+
declare enum DBHCache {
|
|
1156
|
+
Pos = "P",
|
|
1157
|
+
PosData = "D",
|
|
1158
|
+
None = "N",
|
|
1159
|
+
AsTable = "T"
|
|
1160
|
+
}
|
|
1161
|
+
declare enum Resident {
|
|
1162
|
+
No = "N",
|
|
1163
|
+
Immediate = "I",
|
|
1164
|
+
OnDemand = "D",
|
|
1165
|
+
ImmediateAndClient = "C",
|
|
1166
|
+
ImmediateAndBrowser = "B"
|
|
1167
|
+
}
|
|
1168
|
+
declare enum CheckExist {
|
|
1169
|
+
CheckYes = "Y",
|
|
1170
|
+
CheckNo = "N",
|
|
1171
|
+
CheckDB = "D"
|
|
1172
|
+
}
|
|
1173
|
+
declare enum ValType {
|
|
1174
|
+
ZString = 1,
|
|
1175
|
+
MagicNum = 2,
|
|
1176
|
+
Boolean = 3,
|
|
1177
|
+
UString = 4
|
|
1178
|
+
}
|
|
1179
|
+
declare enum FldStorage {
|
|
1180
|
+
AlphaString = 1,
|
|
1181
|
+
AlphaLString = 2,
|
|
1182
|
+
AlphaZString = 3,
|
|
1183
|
+
NumericSigned = 4,
|
|
1184
|
+
NumericUnsigned = 5,
|
|
1185
|
+
NumericFloat = 6,
|
|
1186
|
+
NumericFloatMS = 7,
|
|
1187
|
+
NumericFloatDec = 8,
|
|
1188
|
+
NumericPackedDec = 9,
|
|
1189
|
+
NumericNumeric = 10,
|
|
1190
|
+
NumericCharDec = 11,
|
|
1191
|
+
NumericString = 12,
|
|
1192
|
+
NumericMagic = 13,
|
|
1193
|
+
NumericCisam = 14,
|
|
1194
|
+
NumericExtFloat = 30,
|
|
1195
|
+
BooleanInteger = 15,
|
|
1196
|
+
BooleanDBase = 16,
|
|
1197
|
+
DateInteger = 17,
|
|
1198
|
+
DateInteger1901 = 18,
|
|
1199
|
+
DateString = 19,
|
|
1200
|
+
DateYYMD = 20,
|
|
1201
|
+
DateMagic = 21,
|
|
1202
|
+
DateMagic1901 = 22,
|
|
1203
|
+
TimeInteger = 23,
|
|
1204
|
+
TimeString = 24,
|
|
1205
|
+
TimeHMSH = 25,
|
|
1206
|
+
TimeMagic = 26,
|
|
1207
|
+
MemoString = 27,
|
|
1208
|
+
MemoMagic = 28,
|
|
1209
|
+
Blob = 29,
|
|
1210
|
+
UnicodeString = 31,
|
|
1211
|
+
UnicodeZString = 32,
|
|
1212
|
+
AnsiBlob = 33,
|
|
1213
|
+
UnicodeBlob = 34
|
|
1214
|
+
}
|
|
1215
|
+
declare enum DriverDB {
|
|
1216
|
+
Btrv = 0,
|
|
1217
|
+
Prevesive2000 = 1,
|
|
1218
|
+
RMS = 2,
|
|
1219
|
+
MySQL = 3,
|
|
1220
|
+
DBase = 4,
|
|
1221
|
+
Cache = 5,
|
|
1222
|
+
DB2AS400 = 6,
|
|
1223
|
+
FoxBase = 7,
|
|
1224
|
+
Clipper = 8,
|
|
1225
|
+
SyBase = 9,
|
|
1226
|
+
Cics = 12,
|
|
1227
|
+
Oracle = 13,
|
|
1228
|
+
Informix = 14,
|
|
1229
|
+
Ingres = 15,
|
|
1230
|
+
AS400 = 16,
|
|
1231
|
+
DB2 = 18,
|
|
1232
|
+
Odbc = 19,
|
|
1233
|
+
MS6 = 20,
|
|
1234
|
+
Memory = 21,
|
|
1235
|
+
RMCOB = 22
|
|
1236
|
+
}
|
|
1237
|
+
declare enum ExportType {
|
|
1238
|
+
EntireProject = "A",
|
|
1239
|
+
Models = "E",
|
|
1240
|
+
DataSources = "F",
|
|
1241
|
+
Programs = "P",
|
|
1242
|
+
Helps = "H",
|
|
1243
|
+
Rights = "R",
|
|
1244
|
+
Menus = "M",
|
|
1245
|
+
CompositeResources = "O",
|
|
1246
|
+
ApplicationProperties = "C"
|
|
1247
|
+
}
|
|
1248
|
+
declare enum TriggerType {
|
|
1249
|
+
System = "S",
|
|
1250
|
+
Timer = "T",
|
|
1251
|
+
Expression = "E",
|
|
1252
|
+
Internal = "I",
|
|
1253
|
+
None = "N",
|
|
1254
|
+
Component = "C",
|
|
1255
|
+
User = "U",
|
|
1256
|
+
Error = "R",
|
|
1257
|
+
ComEvent = "X",
|
|
1258
|
+
DotNetEvent = "D",
|
|
1259
|
+
PublicUserEvent = "P",
|
|
1260
|
+
UserFunc = "F"
|
|
1261
|
+
}
|
|
1262
|
+
declare enum ItemMasks {
|
|
1263
|
+
Undefined = 0,
|
|
1264
|
+
ActiveInClient = 1,
|
|
1265
|
+
MagicSqlFunc = 4,
|
|
1266
|
+
CacheAlways = 8,
|
|
1267
|
+
CacheSometimes = 16,
|
|
1268
|
+
RtSearchExecAllowed = " ",
|
|
1269
|
+
ArgAttrAsResult = "@",
|
|
1270
|
+
CalcResAttr = 128,
|
|
1271
|
+
PossibleReentrance = 256,
|
|
1272
|
+
ForceClientExecBrowserClient = 512,
|
|
1273
|
+
ForceServerExecBrowserClient = 1024,
|
|
1274
|
+
FuncNotSupportedBrowserClient = 2048,
|
|
1275
|
+
ForceClientExecRichClient = 4096,
|
|
1276
|
+
ForceServerExecRichClient = 8192,
|
|
1277
|
+
FuncNotSupportedRichClient = 16384,
|
|
1278
|
+
FuncNotSupportedOnlineBatch = 32768,
|
|
1279
|
+
ForceMixExecRichClient = 65536,
|
|
1280
|
+
ForceUnknownExecRichClient = 131072
|
|
1281
|
+
}
|
|
1282
|
+
declare enum UpdateMode {
|
|
1283
|
+
Incremental = "I",
|
|
1284
|
+
Normal = "N"
|
|
1285
|
+
}
|
|
1286
|
+
declare enum BlockTypes {
|
|
1287
|
+
If = "I",
|
|
1288
|
+
Else = "E",
|
|
1289
|
+
EndBlock = "N",
|
|
1290
|
+
Loop = "L"
|
|
1291
|
+
}
|
|
1292
|
+
declare enum FormOperationType {
|
|
1293
|
+
Input = "I",
|
|
1294
|
+
Output = "O"
|
|
1295
|
+
}
|
|
1296
|
+
declare enum FormPage {
|
|
1297
|
+
Skip = "S",
|
|
1298
|
+
Auto = "A",
|
|
1299
|
+
Top = "T"
|
|
1300
|
+
}
|
|
1301
|
+
declare enum FormDelimiter {
|
|
1302
|
+
Column = "C",
|
|
1303
|
+
Single = "S",
|
|
1304
|
+
Double = "D"
|
|
1305
|
+
}
|
|
1306
|
+
declare enum CallOperationMode {
|
|
1307
|
+
Program = "P",
|
|
1308
|
+
SubTask = "T",
|
|
1309
|
+
ByExp = "E",
|
|
1310
|
+
ByName = "B",
|
|
1311
|
+
Remote = "R",
|
|
1312
|
+
Com = "C",
|
|
1313
|
+
OsCommand = "O",
|
|
1314
|
+
UDP = "U",
|
|
1315
|
+
WebS = "W",
|
|
1316
|
+
WebSLite = "L",
|
|
1317
|
+
DotNet = 46
|
|
1318
|
+
}
|
|
1319
|
+
declare enum RowType {
|
|
1320
|
+
Header = 1,
|
|
1321
|
+
Operation = 2
|
|
1322
|
+
}
|
|
1323
|
+
declare enum ForceExit {
|
|
1324
|
+
None = "N",
|
|
1325
|
+
Control = "C",
|
|
1326
|
+
PreRecordUpdate = "R",
|
|
1327
|
+
PostRecordUpdate = "P",
|
|
1328
|
+
Ignore = "I",
|
|
1329
|
+
Editing = "E"
|
|
1330
|
+
}
|
|
1331
|
+
declare enum MediaType {
|
|
1332
|
+
None = "N",
|
|
1333
|
+
GraphicalPrinter = "G",
|
|
1334
|
+
Printer = "P",
|
|
1335
|
+
Console = "C",
|
|
1336
|
+
File = "F",
|
|
1337
|
+
Requester = "R",
|
|
1338
|
+
XMLDirect = "D",
|
|
1339
|
+
Variable = "V"
|
|
1340
|
+
}
|
|
1341
|
+
declare enum OSType {
|
|
1342
|
+
Android = "A",
|
|
1343
|
+
IOS = "I"
|
|
1344
|
+
}
|
|
1345
|
+
declare enum APGMode {
|
|
1346
|
+
Execute = "E",
|
|
1347
|
+
Generate = "G"
|
|
1348
|
+
}
|
|
1349
|
+
declare enum APGOption {
|
|
1350
|
+
Browse = "B",
|
|
1351
|
+
Export = "E",
|
|
1352
|
+
Import = "I",
|
|
1353
|
+
Print = "P",
|
|
1354
|
+
Browser = "R",
|
|
1355
|
+
RichClient = "H"
|
|
1356
|
+
}
|
|
1357
|
+
declare enum APGDisplayMode {
|
|
1358
|
+
Line = "L",
|
|
1359
|
+
Screen = "S",
|
|
1360
|
+
None = "N"
|
|
1361
|
+
}
|
|
1362
|
+
declare enum APGFormSize {
|
|
1363
|
+
AsModel = "M",
|
|
1364
|
+
AsContent = "C",
|
|
1365
|
+
AsContentWithinMDI = "D"
|
|
1366
|
+
}
|
|
1367
|
+
declare enum APGType {
|
|
1368
|
+
Single = "S",
|
|
1369
|
+
Multiple = "M",
|
|
1370
|
+
Program = "P"
|
|
1371
|
+
}
|
|
1372
|
+
declare enum APGInvokedFrom {
|
|
1373
|
+
TablesRepository = 1,
|
|
1374
|
+
ProgramsRepository = 2
|
|
1375
|
+
}
|
|
1376
|
+
declare enum MgModelType {
|
|
1377
|
+
Model = "M",
|
|
1378
|
+
Var = "V"
|
|
1379
|
+
}
|
|
1380
|
+
declare enum CallbackType {
|
|
1381
|
+
ProgressBar = 0,
|
|
1382
|
+
Import = 1,
|
|
1383
|
+
FormEditor = 2,
|
|
1384
|
+
CollectionChanges = 3
|
|
1385
|
+
}
|
|
1386
|
+
declare enum Axis {
|
|
1387
|
+
X = 0,
|
|
1388
|
+
Y = 1
|
|
1389
|
+
}
|
|
1390
|
+
declare enum ModelAttrHelp {
|
|
1391
|
+
Internal = "A",
|
|
1392
|
+
Windows = "B"
|
|
1393
|
+
}
|
|
1394
|
+
declare enum ModelAttrField {
|
|
1395
|
+
Alpha = "A",
|
|
1396
|
+
Numeric = "C",
|
|
1397
|
+
Unicode = "B",
|
|
1398
|
+
Logical = "D",
|
|
1399
|
+
Date = "E",
|
|
1400
|
+
Time = "F",
|
|
1401
|
+
Blob = "G",
|
|
1402
|
+
OLE = "H",
|
|
1403
|
+
ActiveX = "I",
|
|
1404
|
+
Vector = "J",
|
|
1405
|
+
DotNet = "K"
|
|
1406
|
+
}
|
|
1407
|
+
declare enum ModelAttrGui0 {
|
|
1408
|
+
Form = "A",
|
|
1409
|
+
Edit = "B",
|
|
1410
|
+
Static = "C",
|
|
1411
|
+
Button = "D",
|
|
1412
|
+
Check = "E",
|
|
1413
|
+
Radio = "F",
|
|
1414
|
+
Tab = "G",
|
|
1415
|
+
List = "H",
|
|
1416
|
+
Combo = "I",
|
|
1417
|
+
Line = "J",
|
|
1418
|
+
Slider = "K",
|
|
1419
|
+
Table = "L",
|
|
1420
|
+
Column = "M",
|
|
1421
|
+
Image = "N",
|
|
1422
|
+
Ole = "O",
|
|
1423
|
+
Redit = "P",
|
|
1424
|
+
Activex = "R",
|
|
1425
|
+
Subform = "S",
|
|
1426
|
+
Browser = "O"
|
|
1427
|
+
}
|
|
1428
|
+
declare enum ModelAttrGui1 {
|
|
1429
|
+
Form = "A",
|
|
1430
|
+
Edit = "B",
|
|
1431
|
+
Static = "C",
|
|
1432
|
+
Line = "D",
|
|
1433
|
+
Table = "E",
|
|
1434
|
+
Column = "F",
|
|
1435
|
+
Image = "G",
|
|
1436
|
+
Redit = "H"
|
|
1437
|
+
}
|
|
1438
|
+
declare enum ModelAttrText {
|
|
1439
|
+
Form = "A",
|
|
1440
|
+
Edit = "B",
|
|
1441
|
+
Static = "C",
|
|
1442
|
+
Line = "D"
|
|
1443
|
+
}
|
|
1444
|
+
declare enum ModelAttrRichClient {
|
|
1445
|
+
Form = "A",
|
|
1446
|
+
Edit = "B",
|
|
1447
|
+
Label = "C",
|
|
1448
|
+
Button = "D",
|
|
1449
|
+
Check = "E",
|
|
1450
|
+
Radio = "F",
|
|
1451
|
+
Tab = "G",
|
|
1452
|
+
List = "H",
|
|
1453
|
+
Combo = "I",
|
|
1454
|
+
Group = "J",
|
|
1455
|
+
Table = "K",
|
|
1456
|
+
Column = "L",
|
|
1457
|
+
Image = "M",
|
|
1458
|
+
Subform = "N",
|
|
1459
|
+
Browser = "O",
|
|
1460
|
+
Line = "Q"
|
|
1461
|
+
}
|
|
1462
|
+
declare enum ModelAttrFramesetForm {
|
|
1463
|
+
Form = "A",
|
|
1464
|
+
Frame = "B"
|
|
1465
|
+
}
|
|
1466
|
+
declare enum ModelAttRichClientFrameSet {
|
|
1467
|
+
Form = "A",
|
|
1468
|
+
Frame = "B"
|
|
1469
|
+
}
|
|
1470
|
+
declare enum ModelAttrBrowser {
|
|
1471
|
+
Form = "A",
|
|
1472
|
+
Edit = "B",
|
|
1473
|
+
Static = "C",
|
|
1474
|
+
Button = "D",
|
|
1475
|
+
Check = "E",
|
|
1476
|
+
Radio = "F",
|
|
1477
|
+
List = "G",
|
|
1478
|
+
Combo = "H",
|
|
1479
|
+
Table = "I",
|
|
1480
|
+
Image = "J",
|
|
1481
|
+
Subform = "K",
|
|
1482
|
+
Iframe = "L",
|
|
1483
|
+
Opaque = "M"
|
|
1484
|
+
}
|
|
1485
|
+
declare enum ModelAttGuiFrame {
|
|
1486
|
+
Form = "A",
|
|
1487
|
+
Frame = "B"
|
|
1488
|
+
}
|
|
1489
|
+
declare enum ModelAttMerge {
|
|
1490
|
+
Form = "A"
|
|
1491
|
+
}
|
|
1492
|
+
declare enum DbhKeyMode {
|
|
1493
|
+
Unique = "S",
|
|
1494
|
+
NonUnique = "N"
|
|
1495
|
+
}
|
|
1496
|
+
declare enum DbhKeyDirection {
|
|
1497
|
+
OneWay = "A",
|
|
1498
|
+
TwoWay = "B"
|
|
1499
|
+
}
|
|
1500
|
+
declare enum DbhKeyRangeMode {
|
|
1501
|
+
Quick = "Q",
|
|
1502
|
+
Full = "F"
|
|
1503
|
+
}
|
|
1504
|
+
declare enum DbhKeyIndexType {
|
|
1505
|
+
Real = "R",
|
|
1506
|
+
Virtual = "V"
|
|
1507
|
+
}
|
|
1508
|
+
declare enum DbhSegmentDirection {
|
|
1509
|
+
Ascending = "A",
|
|
1510
|
+
Descending = "D"
|
|
1511
|
+
}
|
|
1512
|
+
declare enum ChoiceControlStyle {
|
|
1513
|
+
ListBox = 1,
|
|
1514
|
+
ComboBox = 2,
|
|
1515
|
+
Tab = 3,
|
|
1516
|
+
RadioButton = 4
|
|
1517
|
+
}
|
|
1518
|
+
declare enum Recursion {
|
|
1519
|
+
None = 0,
|
|
1520
|
+
First = 1,
|
|
1521
|
+
Second = 2,
|
|
1522
|
+
FirstOpen = 3
|
|
1523
|
+
}
|
|
1524
|
+
declare enum ViewSelectType {
|
|
1525
|
+
IncludeInView = 0,
|
|
1526
|
+
ExcludeFromView = 1
|
|
1527
|
+
}
|
|
1528
|
+
declare enum RangeMode {
|
|
1529
|
+
From = "F",
|
|
1530
|
+
To = "T",
|
|
1531
|
+
Equal = "E"
|
|
1532
|
+
}
|
|
1533
|
+
declare enum TableType {
|
|
1534
|
+
Table = "T",
|
|
1535
|
+
View = "V",
|
|
1536
|
+
Undefined = "U"
|
|
1537
|
+
}
|
|
1538
|
+
declare enum DatabaseDataType {
|
|
1539
|
+
XmlDataSource = "X",
|
|
1540
|
+
DatabaseDataSource = "D"
|
|
1541
|
+
}
|
|
1542
|
+
declare enum LogicHeaderAction {
|
|
1543
|
+
None = 0,
|
|
1544
|
+
CreateVariableChangeParameters = 1,
|
|
1545
|
+
DeleteVariableChangeParameters = 2,
|
|
1546
|
+
ReplaceVariableChangeParameters = 3,
|
|
1547
|
+
CreateEventParameters = 4
|
|
1548
|
+
}
|
|
1549
|
+
declare enum DatabaseFilters {
|
|
1550
|
+
EnvironmentDatabaseAll = "A",
|
|
1551
|
+
EnvironmentDatabaseSql = "S",
|
|
1552
|
+
EnvironmentDatabaseCanLoadDefinition = "D",
|
|
1553
|
+
EnvironmentDatabaseIsam = "I",
|
|
1554
|
+
EnvironmentDatabaseXmlOnly = "X",
|
|
1555
|
+
EnvironmentDatabaseOnly = "O",
|
|
1556
|
+
EnvironmentDatabaseCanLoadDefinitionAndXml = "G"
|
|
1557
|
+
}
|
|
1558
|
+
declare enum FieldViewModelType {
|
|
1559
|
+
DataSource = 0,
|
|
1560
|
+
DataView = 1,
|
|
1561
|
+
Logic = 2
|
|
1562
|
+
}
|
|
1563
|
+
declare enum SourceContextType {
|
|
1564
|
+
CurrentContext = "C",
|
|
1565
|
+
MainContext = "M"
|
|
1566
|
+
}
|
|
1567
|
+
declare enum ViewRefreshMode {
|
|
1568
|
+
None = 0,
|
|
1569
|
+
CurrentLocation = 1,
|
|
1570
|
+
UseTaskLocate = 2,
|
|
1571
|
+
FirstRecord = 3
|
|
1572
|
+
}
|
|
1573
|
+
declare enum LineManipulationType {
|
|
1574
|
+
None = 0,
|
|
1575
|
+
RepeatEntries = 1,
|
|
1576
|
+
MoveEntries = 2,
|
|
1577
|
+
OverwriteCurrent = 3
|
|
1578
|
+
}
|
|
1579
|
+
declare enum DataViewOutputType {
|
|
1580
|
+
Xml = "X",
|
|
1581
|
+
ClientFile = "C"
|
|
1582
|
+
}
|
|
1583
|
+
declare enum UndoRedoAction {
|
|
1584
|
+
Undo = 0,
|
|
1585
|
+
Redo = 1
|
|
1586
|
+
}
|
|
1587
|
+
declare enum OrientationLock {
|
|
1588
|
+
No = 1,
|
|
1589
|
+
Portrait = 2,
|
|
1590
|
+
Landscape = 3
|
|
1591
|
+
}
|
|
1592
|
+
declare enum EnterAnimation {
|
|
1593
|
+
Default = 1,
|
|
1594
|
+
Left = 2,
|
|
1595
|
+
Right = 3,
|
|
1596
|
+
Top = 4,
|
|
1597
|
+
Bottom = 5,
|
|
1598
|
+
Flip = 6,
|
|
1599
|
+
Fade = 7,
|
|
1600
|
+
None = 8
|
|
1601
|
+
}
|
|
1602
|
+
declare enum ExitAnimation {
|
|
1603
|
+
Default = 1,
|
|
1604
|
+
Left = 2,
|
|
1605
|
+
Right = 3,
|
|
1606
|
+
Top = 4,
|
|
1607
|
+
Bottom = 5,
|
|
1608
|
+
Flip = 6,
|
|
1609
|
+
Fade = 7,
|
|
1610
|
+
None = 8
|
|
1611
|
+
}
|
|
1612
|
+
declare enum KeyboardTypes {
|
|
1613
|
+
Default = 1,
|
|
1614
|
+
Numeric = 2,
|
|
1615
|
+
URL = 3,
|
|
1616
|
+
NumberPad = 4,
|
|
1617
|
+
PhonePad = 5,
|
|
1618
|
+
NamePhonePad = 6,
|
|
1619
|
+
Email = 7
|
|
1620
|
+
}
|
|
1621
|
+
declare enum KeyboardReturnKeys {
|
|
1622
|
+
Default = 1,
|
|
1623
|
+
Go = 2,
|
|
1624
|
+
Next = 3,
|
|
1625
|
+
Previous = 4,
|
|
1626
|
+
Search = 5,
|
|
1627
|
+
Done = 6
|
|
1628
|
+
}
|
|
1629
|
+
declare enum OpenEditDialog {
|
|
1630
|
+
Default = 1,
|
|
1631
|
+
Yes = 2,
|
|
1632
|
+
No = 3
|
|
1633
|
+
}
|
|
1634
|
+
declare enum FrameLayoutTypes {
|
|
1635
|
+
TwoFramesHorizontal = 7901,
|
|
1636
|
+
TwoFramesVertical = 7902,
|
|
1637
|
+
ThreeFramesBottom = 7903,
|
|
1638
|
+
ThreeFramesRight = 7904,
|
|
1639
|
+
ThreeFramesTop = 7905,
|
|
1640
|
+
ThreeFramesLeft = 7906
|
|
1641
|
+
}
|
|
1642
|
+
declare enum LineDirection {
|
|
1643
|
+
Horizontal = 0,
|
|
1644
|
+
Vertical = 1,
|
|
1645
|
+
NESW = 2,
|
|
1646
|
+
NWSE = 3
|
|
1647
|
+
}
|
|
1648
|
+
declare enum ScrollBarThumbType {
|
|
1649
|
+
Incremental = 1,
|
|
1650
|
+
Absolute = 2
|
|
1651
|
+
}
|
|
1652
|
+
declare enum StorageAttribute {
|
|
1653
|
+
NONE = " ",
|
|
1654
|
+
ALPHA = "A",
|
|
1655
|
+
NUMERIC = "N",
|
|
1656
|
+
DATE = "D",
|
|
1657
|
+
TIME = "T",
|
|
1658
|
+
BOOLEAN = "B",
|
|
1659
|
+
MEMO = "M",
|
|
1660
|
+
BLOB = "O",
|
|
1661
|
+
BLOB_VECTOR = "V",
|
|
1662
|
+
UNICODE = "U",
|
|
1663
|
+
SKIP = "0",
|
|
1664
|
+
DOTNET = "E"
|
|
1665
|
+
}
|
|
1666
|
+
declare enum NotifyCollectionChangedAction {
|
|
1667
|
+
Add = 0,
|
|
1668
|
+
Remove = 1,
|
|
1669
|
+
Replace = 2,
|
|
1670
|
+
Move = 3,
|
|
1671
|
+
Reset = 4
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
declare class InternalInterface {
|
|
1675
|
+
static readonly MG_ACT_NONE: number;
|
|
1676
|
+
static readonly MG_ACT_CHAR: number;
|
|
1677
|
+
static readonly MG_ACT_OLE2: number;
|
|
1678
|
+
static readonly MG_ACT_EDT_MARKPRVCH: number;
|
|
1679
|
+
static readonly MG_ACT_EDT_MARKNXTCH: number;
|
|
1680
|
+
static readonly MG_ACT_EDT_MARKTOBEG: number;
|
|
1681
|
+
static readonly MG_ACT_EDT_MARKTOEND: number;
|
|
1682
|
+
static readonly MG_ACT_MENU_BAR: number;
|
|
1683
|
+
static readonly MG_ACT_EDT_BEGFLD: number;
|
|
1684
|
+
static readonly MG_ACT_EDT_ENDFLD: number;
|
|
1685
|
+
static readonly MG_ACT_CUT: number;
|
|
1686
|
+
static readonly MG_ACT_CLOSE: number;
|
|
1687
|
+
static readonly MG_ACT_EXIT: number;
|
|
1688
|
+
static readonly MG_ACT_DISPLAY_REFRESH: number;
|
|
1689
|
+
static readonly MG_ACT_RESTORE_DEFAULTS: number;
|
|
1690
|
+
static readonly MG_ACT_BUTTON: number;
|
|
1691
|
+
static readonly MG_ACT_JUMP_TO_ROW: number;
|
|
1692
|
+
static readonly MG_ACT_COMMUNICATIONS: number;
|
|
1693
|
+
static readonly MG_ACT_OPEN_APPLICATION: number;
|
|
1694
|
+
static readonly MG_ACT_ACT_CLOSE_APPL: number;
|
|
1695
|
+
static readonly MG_ACT_TOOLKIT_RUNTIME: number;
|
|
1696
|
+
static readonly MG_ACT_KEYBOARD_MAPPING: number;
|
|
1697
|
+
static readonly MG_ACT_SHELL_TO_OS: number;
|
|
1698
|
+
static readonly MG_ACT_EXIT_SYSTEM: number;
|
|
1699
|
+
static readonly MG_ACT_RTO_MODIFY: number;
|
|
1700
|
+
static readonly MG_ACT_RTO_CREATE: number;
|
|
1701
|
+
static readonly MG_ACT_RTO_QUERY: number;
|
|
1702
|
+
static readonly MG_ACT_CANCEL: number;
|
|
1703
|
+
static readonly MG_ACT_ZOOM: number;
|
|
1704
|
+
static readonly MG_ACT_DELLINE: number;
|
|
1705
|
+
static readonly MG_ACT_CRELINE: number;
|
|
1706
|
+
static readonly MG_ACT_REPEAT_ENTRY: number;
|
|
1707
|
+
static readonly MG_ACT_MOVE_ENTRY: number;
|
|
1708
|
+
static readonly MG_ACT_OVERWRITE_ENTRY: number;
|
|
1709
|
+
static readonly MG_ACT_SELECT: number;
|
|
1710
|
+
static readonly MG_ACT_EDT_PRVCHAR: number;
|
|
1711
|
+
static readonly MG_ACT_EDT_NXTCHAR: number;
|
|
1712
|
+
static readonly MG_ACT_EDT_PRVTAB: number;
|
|
1713
|
+
static readonly MG_ACT_EDT_NXTTAB: number;
|
|
1714
|
+
static readonly MG_ACT_EDT_PRVWORD: number;
|
|
1715
|
+
static readonly MG_ACT_EDT_NXTWORD: number;
|
|
1716
|
+
static readonly MG_ACT_EDT_PRVLINE: number;
|
|
1717
|
+
static readonly MG_ACT_EDT_NXTLINE: number;
|
|
1718
|
+
static readonly MG_ACT_EDT_PRVPAGE: number;
|
|
1719
|
+
static readonly MG_ACT_EDT_NXTPAGE: number;
|
|
1720
|
+
static readonly MG_ACT_EDT_BEGLINE: number;
|
|
1721
|
+
static readonly MG_ACT_EDT_ENDLINE: number;
|
|
1722
|
+
static readonly MG_ACT_EDT_BEGPAGE: number;
|
|
1723
|
+
static readonly MG_ACT_EDT_ENDPAGE: number;
|
|
1724
|
+
static readonly MG_ACT_EDT_BEGFORM: number;
|
|
1725
|
+
static readonly MG_ACT_EDT_ENDFORM: number;
|
|
1726
|
+
static readonly MG_ACT_EDT_DELCURCH: number;
|
|
1727
|
+
static readonly MG_ACT_EDT_DELPRVCH: number;
|
|
1728
|
+
static readonly MG_ACT_EDT_BEGNXTLINE: number;
|
|
1729
|
+
static readonly MG_ACT_TBL_PRVFLD: number;
|
|
1730
|
+
static readonly MG_ACT_TBL_NXTFLD: number;
|
|
1731
|
+
static readonly MG_ACT_TBL_PRVLINE: number;
|
|
1732
|
+
static readonly MG_ACT_TBL_NXTLINE: number;
|
|
1733
|
+
static readonly MG_ACT_TBL_PRVPAGE: number;
|
|
1734
|
+
static readonly MG_ACT_TBL_NXTPAGE: number;
|
|
1735
|
+
static readonly MG_ACT_TBL_BEGLINE: number;
|
|
1736
|
+
static readonly MG_ACT_TBL_ENDLINE: number;
|
|
1737
|
+
static readonly MG_ACT_TBL_BEGPAGE: number;
|
|
1738
|
+
static readonly MG_ACT_TBL_ENDPAGE: number;
|
|
1739
|
+
static readonly MG_ACT_TBL_BEGTBL: number;
|
|
1740
|
+
static readonly MG_ACT_TBL_ENDTBL: number;
|
|
1741
|
+
static readonly MG_ACT_TAB_NEXT: number;
|
|
1742
|
+
static readonly MG_ACT_RT_COPYFLD: number;
|
|
1743
|
+
static readonly MG_ACT_ENVIRONMENT: number;
|
|
1744
|
+
static readonly MG_ACT_SERVERS: number;
|
|
1745
|
+
static readonly MG_ACT_DATABASES: number;
|
|
1746
|
+
static readonly MG_ACT_LOGICALPNAMES: number;
|
|
1747
|
+
static readonly MG_ACT_PRINTERS: number;
|
|
1748
|
+
static readonly MG_ACT_TASK_EVENTS: number;
|
|
1749
|
+
static readonly MG_ACT_MENUS: number;
|
|
1750
|
+
static readonly MG_ACT_TYPES: number;
|
|
1751
|
+
static readonly MG_ACT_TABLES: number;
|
|
1752
|
+
static readonly MG_ACT_PROGRAMS: number;
|
|
1753
|
+
static readonly MG_ACT_HELP_SCREENS: number;
|
|
1754
|
+
static readonly MG_ACT_USER_IDS: number;
|
|
1755
|
+
static readonly MG_ACT_EXPORT_IMPORT: number;
|
|
1756
|
+
static readonly MG_ACT_MARK_SUBTREE: number;
|
|
1757
|
+
static readonly MG_ACT_REPEAT_SUBTREE: number;
|
|
1758
|
+
static readonly MG_ACT_MOVE_SUBTREE: number;
|
|
1759
|
+
static readonly MG_ACT_OVERWRITE_SUBTREE: number;
|
|
1760
|
+
static readonly MG_ACT_CREATE_PARENT: number;
|
|
1761
|
+
static readonly MG_ACT_CREATE_SUBTASK: number;
|
|
1762
|
+
static readonly MG_ACT_DELETE_SUBTREE: number;
|
|
1763
|
+
static readonly MG_ACT_EXPAND_TREE: number;
|
|
1764
|
+
static readonly MG_ACT_SHRINK_TREE: number;
|
|
1765
|
+
static readonly MG_ACT_AUTHORIZE: number;
|
|
1766
|
+
static readonly MG_ACT_PROPERTIES: number;
|
|
1767
|
+
static readonly MG_ACT_VIRTUAL_VARIABLES: number;
|
|
1768
|
+
static readonly MG_ACT_EXPRESSION_RULES: number;
|
|
1769
|
+
static readonly MG_ACT_FORMS: number;
|
|
1770
|
+
static readonly MG_ACT_DB_TABLES: number;
|
|
1771
|
+
static readonly MG_ACT_I_O_FILES: number;
|
|
1772
|
+
static readonly MG_ACT_SORT: number;
|
|
1773
|
+
static readonly MG_ACT_EDT_MARKPRVLINE: number;
|
|
1774
|
+
static readonly MG_ACT_TASK_CONTROL: number;
|
|
1775
|
+
static readonly MG_ACT_CHECK_SYNTAX: number;
|
|
1776
|
+
static readonly MG_ACT_EXECUTE_PROGRAM: number;
|
|
1777
|
+
static readonly MG_ACT_CROSS_REFERENCE: number;
|
|
1778
|
+
static readonly MG_ACT_GENERATE_PROGRAM: number;
|
|
1779
|
+
static readonly MG_ACT_GENERATE_FORM: number;
|
|
1780
|
+
static readonly MG_ACT_EDIT_MAIN_FORM: number;
|
|
1781
|
+
static readonly MG_ACT_MARK_NEXT_LINE: number;
|
|
1782
|
+
static readonly MG_ACT_RTO_LOCATE: number;
|
|
1783
|
+
static readonly MG_ACT_RTO_RANGE: number;
|
|
1784
|
+
static readonly MG_ACT_VIEW_BY_KEY: number;
|
|
1785
|
+
static readonly MG_ACT_SORT_RECORDS: number;
|
|
1786
|
+
static readonly MG_ACT_REDIRECT_FILES: number;
|
|
1787
|
+
static readonly MG_ACT_REPORT_GENERATOR: number;
|
|
1788
|
+
static readonly MG_ACT_CLEAR_TEMPLATE: number;
|
|
1789
|
+
static readonly MG_ACT_CLEAR_VALUE: number;
|
|
1790
|
+
static readonly MG_ACT_DEFINE_EXPRESSION: number;
|
|
1791
|
+
static readonly MG_ACT_FROM_VALUE: number;
|
|
1792
|
+
static readonly MG_ACT_TO_VALUE: number;
|
|
1793
|
+
static readonly MG_ACT_REDRAW_LAYOUT: number;
|
|
1794
|
+
static readonly MG_ACT_DEFAULT_LAYOUT: number;
|
|
1795
|
+
static readonly MG_ACT_COPY_LAYOUT: number;
|
|
1796
|
+
static readonly MG_ACT_SHOW_FULL_LAYOUT: number;
|
|
1797
|
+
static readonly MG_ACT_LEFT: number;
|
|
1798
|
+
static readonly MG_ACT_RIGHT: number;
|
|
1799
|
+
static readonly MG_ACT_TOP: number;
|
|
1800
|
+
static readonly MG_ACT_BOTTOM: number;
|
|
1801
|
+
static readonly MG_ACT_H_CENTER_OF_FORM: number;
|
|
1802
|
+
static readonly MG_ACT_V_CENTER_OF_FORM: number;
|
|
1803
|
+
static readonly MG_ACT_HORIZ_CENTER: number;
|
|
1804
|
+
static readonly MG_ACT_VERTICAL_CENTER: number;
|
|
1805
|
+
static readonly MG_ACT_ATTACH_TO_TABLE: number;
|
|
1806
|
+
static readonly MG_ACT_MAXIMUM_WIDTH: number;
|
|
1807
|
+
static readonly MG_ACT_EXTERNAL_EDITOR: number;
|
|
1808
|
+
static readonly MG_ACT_MAXIMUM_HEIGHT: number;
|
|
1809
|
+
static readonly MG_ACT_MINIMUM_WIDTH: number;
|
|
1810
|
+
static readonly MG_ACT_USING_HELP: number;
|
|
1811
|
+
static readonly MG_ACT_HELP: number;
|
|
1812
|
+
static readonly MG_ACT_ABOUT: number;
|
|
1813
|
+
static readonly MG_ACT_PRINT_DATA: number;
|
|
1814
|
+
static readonly MG_ACT_RIGHTS: number;
|
|
1815
|
+
static readonly MG_ACT_PRINTER_SETUP: number;
|
|
1816
|
+
static readonly MG_ACT_RTO_SEARCH: number;
|
|
1817
|
+
static readonly MG_ACT_SHOW_EXPRESSION: number;
|
|
1818
|
+
static readonly MG_ACT_ACTION_LIST: number;
|
|
1819
|
+
static readonly MG_ACT_KEYBOARD_LIST: number;
|
|
1820
|
+
static readonly MG_ACT_APPLICATIONS: number;
|
|
1821
|
+
static readonly MG_ACT_APPL_PROPERTIES: number;
|
|
1822
|
+
static readonly MG_ACT_MINIMUM_HEIGHT: number;
|
|
1823
|
+
static readonly MG_ACT_EDT_UNDO: number;
|
|
1824
|
+
static readonly MG_ACT_RETURN_TO_TREE: number;
|
|
1825
|
+
static readonly MG_ACT_GO_TO_TOP: number;
|
|
1826
|
+
static readonly MG_ACT_FUNCTION_LIST: number;
|
|
1827
|
+
static readonly MG_ACT_LOGON: number;
|
|
1828
|
+
static readonly MG_ACT_EXECUTE_REPORT: number;
|
|
1829
|
+
static readonly MG_ACT_OK: number;
|
|
1830
|
+
static readonly MG_ACT_APPLICATIONS_LIST: number;
|
|
1831
|
+
static readonly MG_ACT_SECRET_NAMES: number;
|
|
1832
|
+
static readonly MG_ACT_RIGHTS_LIST: number;
|
|
1833
|
+
static readonly MG_ACT_CHECK_TO_END: number;
|
|
1834
|
+
static readonly MG_ACT_SQL_COMMAND: number;
|
|
1835
|
+
static readonly MG_ACT_USER_GROUPS: number;
|
|
1836
|
+
static readonly MG_ACT_TABLE_LOCATE: number;
|
|
1837
|
+
static readonly MG_ACT_TABLE_LOCATE_NEXT: number;
|
|
1838
|
+
static readonly MG_ACT_DBMS: number;
|
|
1839
|
+
static readonly MG_ACT_SQL_KEYWORDS: number;
|
|
1840
|
+
static readonly MG_ACT_SQL_OPERATORS: number;
|
|
1841
|
+
static readonly MG_ACT_SQL_TABLES: number;
|
|
1842
|
+
static readonly MG_ACT_SQL_COLUMNS: number;
|
|
1843
|
+
static readonly MG_ACT_SQL_FLIP_DESC: number;
|
|
1844
|
+
static readonly MG_ACT_SQL_ASSIST: number;
|
|
1845
|
+
static readonly MG_ACT_PPD: number;
|
|
1846
|
+
static readonly MG_ACT_NULL_SETTINGS: number;
|
|
1847
|
+
static readonly MG_ACT_RT_EDT_NULL: number;
|
|
1848
|
+
static readonly MG_ACT_PRINT_ATTRIBUTES: number;
|
|
1849
|
+
static readonly MG_ACT_NORMAL: number;
|
|
1850
|
+
static readonly MG_ACT_INDENT: number;
|
|
1851
|
+
static readonly MG_ACT_BULLET: number;
|
|
1852
|
+
static readonly MG_ACT_USER_ACTION_1: number;
|
|
1853
|
+
static readonly MG_ACT_USER_ACTION_2: number;
|
|
1854
|
+
static readonly MG_ACT_USER_ACTION_3: number;
|
|
1855
|
+
static readonly MG_ACT_USER_ACTION_4: number;
|
|
1856
|
+
static readonly MG_ACT_USER_ACTION_5: number;
|
|
1857
|
+
static readonly MG_ACT_USER_ACTION_6: number;
|
|
1858
|
+
static readonly MG_ACT_USER_ACTION_7: number;
|
|
1859
|
+
static readonly MG_ACT_USER_ACTION_8: number;
|
|
1860
|
+
static readonly MG_ACT_USER_ACTION_9: number;
|
|
1861
|
+
static readonly MG_ACT_USER_ACTION_10: number;
|
|
1862
|
+
static readonly MG_ACT_USER_ACTION_11: number;
|
|
1863
|
+
static readonly MG_ACT_USER_ACTION_12: number;
|
|
1864
|
+
static readonly MG_ACT_USER_ACTION_13: number;
|
|
1865
|
+
static readonly MG_ACT_USER_ACTION_14: number;
|
|
1866
|
+
static readonly MG_ACT_USER_ACTION_15: number;
|
|
1867
|
+
static readonly MG_ACT_USER_ACTION_16: number;
|
|
1868
|
+
static readonly MG_ACT_USER_ACTION_17: number;
|
|
1869
|
+
static readonly MG_ACT_USER_ACTION_18: number;
|
|
1870
|
+
static readonly MG_ACT_USER_ACTION_19: number;
|
|
1871
|
+
static readonly MG_ACT_USER_ACTION_20: number;
|
|
1872
|
+
static readonly MG_ACT_CLIP_COPY: number;
|
|
1873
|
+
static readonly MG_ACT_CLIP_PASTE: number;
|
|
1874
|
+
static readonly MG_ACT_CTRL_HIT: number;
|
|
1875
|
+
static readonly MG_ACT_PAGE_HEADER: number;
|
|
1876
|
+
static readonly MG_ACT_PAGE_FOOTER: number;
|
|
1877
|
+
static readonly MG_ACT_HIT: number;
|
|
1878
|
+
static readonly MG_ACT_INSERT_OBJECT: number;
|
|
1879
|
+
static readonly MG_ACT_PASTE_LINK: number;
|
|
1880
|
+
static readonly MG_ACT_CONTROL_NAME_LIST: number;
|
|
1881
|
+
static readonly MG_ACT_WINSIZE: number;
|
|
1882
|
+
static readonly MG_ACT_WINMOVE: number;
|
|
1883
|
+
static readonly MG_ACT_LANGUAGES: number;
|
|
1884
|
+
static readonly MG_ACT_DDF_MAKE: number;
|
|
1885
|
+
static readonly MG_ACT_UPDATE_LINK: number;
|
|
1886
|
+
static readonly MG_ACT_HTML_STYLES: number;
|
|
1887
|
+
static readonly MG_ACT_UNINDENT: number;
|
|
1888
|
+
static readonly MG_ACT_ALIGN_LEFT: number;
|
|
1889
|
+
static readonly MG_ACT_ALIGN_RIGHT: number;
|
|
1890
|
+
static readonly MG_ACT_CENTER: number;
|
|
1891
|
+
static readonly MG_ACT_ADD_HYPERLINK: number;
|
|
1892
|
+
static readonly MG_ACT_DELETE_HYPERLINK: number;
|
|
1893
|
+
static readonly MG_ACT_CHECK_OBJECT_LIST: number;
|
|
1894
|
+
static readonly MG_ACT_TBL_PLACEMENT: number;
|
|
1895
|
+
static readonly MG_ACT_COL_SORT: number;
|
|
1896
|
+
static readonly MG_ACT_USERS_LIST: number;
|
|
1897
|
+
static readonly MG_ACT_SERVICES: number;
|
|
1898
|
+
static readonly MG_ACT_COPY_SUBTREE: number;
|
|
1899
|
+
static readonly MG_ACT_PASTE_SUBTREE: number;
|
|
1900
|
+
static readonly MG_ACT_VISUAL_CONNECTION: number;
|
|
1901
|
+
static readonly MG_ACT_SQL_WHERE_CLAUSE: number;
|
|
1902
|
+
static readonly MG_ACT_LOCKING_ABORT: number;
|
|
1903
|
+
static readonly MG_ACT_TAB_PREV: number;
|
|
1904
|
+
static readonly MG_ACT_LOCKING_RETRY: number;
|
|
1905
|
+
static readonly MG_ACT_LOCKING_DETAILS: number;
|
|
1906
|
+
static readonly MG_ACT_EDT_MARKALL: number;
|
|
1907
|
+
static readonly MG_ACT_MONITOR_DEBUGGER: number;
|
|
1908
|
+
static readonly MG_ACT_RT_REFRESH_RECORD: number;
|
|
1909
|
+
static readonly MG_ACT_RT_REFRESH_SCREEN: number;
|
|
1910
|
+
static readonly MG_ACT_RT_REFRESH_VIEW: number;
|
|
1911
|
+
static readonly MG_ACT_COMPONENTS: number;
|
|
1912
|
+
static readonly MG_ACT_MODELS: number;
|
|
1913
|
+
static readonly MG_ACT_WEB_ON_DBLICK: number;
|
|
1914
|
+
static readonly MG_ACT_WEB_CLICK: number;
|
|
1915
|
+
static readonly MG_ACT_MM_CTRL_TBL_NXTLINE: number;
|
|
1916
|
+
static readonly MG_ACT_MM_CTRL_TBL_PRVLINE: number;
|
|
1917
|
+
static readonly MG_ACT_MM_CTRL_TBL_PRVPAGE: number;
|
|
1918
|
+
static readonly MG_ACT_MM_CTRL_TBL_NXTPAGE: number;
|
|
1919
|
+
static readonly MG_ACT_MM_SHIFT_TBL_NXTLINE: number;
|
|
1920
|
+
static readonly MG_ACT_MM_SHIFT_TBL_PRVLINE: number;
|
|
1921
|
+
static readonly MG_ACT_MM_SHIFT_TBL_PRVPAGE: number;
|
|
1922
|
+
static readonly MG_ACT_MM_SHIFT_TBL_NXTPAGE: number;
|
|
1923
|
+
static readonly MG_ACT_BROWSER_ESC: number;
|
|
1924
|
+
static readonly MG_ACT_CLOSE_ALL_WIN: number;
|
|
1925
|
+
static readonly MG_ACT_EXT_EVENT: number;
|
|
1926
|
+
static readonly MG_ACT_TREE_EXPAND: number;
|
|
1927
|
+
static readonly MG_ACT_TREE_COLLAPSE: number;
|
|
1928
|
+
static readonly MG_ACT_TREE_CRE_SON: number;
|
|
1929
|
+
static readonly MG_ACT_TREE_SELCHANGING: number;
|
|
1930
|
+
static readonly MG_ACT_TREE_RENAME_RT: number;
|
|
1931
|
+
static readonly MG_ACT_TREE_MOVETO_PARENT: number;
|
|
1932
|
+
static readonly MG_ACT_TREE_MOVETO_FIRSTCHILD: number;
|
|
1933
|
+
static readonly MG_ACT_TREE_MOVETO_PREVSIBLING: number;
|
|
1934
|
+
static readonly MG_ACT_TREE_MOVETO_NEXTSIBLING: number;
|
|
1935
|
+
static readonly MG_ACT_ROLLBACK: number;
|
|
1936
|
+
static readonly MG_ACT_RT_QUIT: number;
|
|
1937
|
+
static readonly MG_ACT_TREE_RENAME_RT_EXIT: number;
|
|
1938
|
+
static readonly MG_ACT_SERVER_TERMINATION: number;
|
|
1939
|
+
static readonly MG_ACT_SUBFORM_REFRESH: number;
|
|
1940
|
+
static readonly MG_ACT_CONTEXT_MENU: number;
|
|
1941
|
+
static readonly MG_ACT_NEXT_RT_WINDOW: number;
|
|
1942
|
+
static readonly MG_ACT_PREV_RT_WINDOW: number;
|
|
1943
|
+
static readonly MG_ACT_EMPTY_DATAVIEW: number;
|
|
1944
|
+
static readonly MG_ACT_BROWSER_STS_TEXT_CHANGE: number;
|
|
1945
|
+
static readonly MG_ACT_TBL_REORDER: number;
|
|
1946
|
+
static readonly MG_ACT_CTRL_MODIFY: number;
|
|
1947
|
+
static readonly MG_ACT_SUBFORM_OPEN: number;
|
|
1948
|
+
static readonly MG_ACT_COL_CLICK: number;
|
|
1949
|
+
static readonly MG_ACT_POST_REFRESH_BY_PARENT: number;
|
|
1950
|
+
static readonly MG_ACT_COMBO_DROP_DOWN: number;
|
|
1951
|
+
static readonly MG_ACT_RAISE_BUTTON_EVENT: number;
|
|
1952
|
+
static readonly MG_ACT_UPDATE_DN_CONTROL_VALUE: number;
|
|
1953
|
+
static readonly MG_ACT_GET_DATAVIEW_CONTENT: number;
|
|
1954
|
+
static readonly MG_ACT_PRESS: number;
|
|
1955
|
+
static readonly MG_ACT_MULTI_MARK_HIT: number;
|
|
1956
|
+
static readonly MG_ACT_DVCONTROL_ROW_CHANGE: number;
|
|
1957
|
+
static readonly MG_ACT_DVCONTROL_UPDATE_COLUMN_VALUE: number;
|
|
1958
|
+
static readonly MG_ACT_SWITCH_TO_OFFLINE: number;
|
|
1959
|
+
static readonly MG_ACT_UNAVAILABLE_SERVER: number;
|
|
1960
|
+
static readonly MG_ACT_UPDATE_DATAVIEW_TO_DATASOURCE: number;
|
|
1961
|
+
static readonly MG_ACT_ENABLE_EVENTS: number;
|
|
1962
|
+
static readonly MG_ACT_WRITE_ERROR_TO_SERVER_LOG: number;
|
|
1963
|
+
static readonly MG_ACT_OPEN_FORM_DESIGNER: number;
|
|
1964
|
+
static readonly MG_ACT_FETCH_DATA_CONTROL_VALUES: number;
|
|
1965
|
+
static readonly MG_ACT_COL_FILTER: number;
|
|
1966
|
+
static readonly MG_ACT_INDEX_CHANGE: number;
|
|
1967
|
+
static readonly MG_ACT_WEBCLIENT_ROUTE: number;
|
|
1968
|
+
static readonly MG_ACT_ENTER_ROW_EDITING: number;
|
|
1969
|
+
static readonly MG_ACT_SUBFORM_CLOSE: number;
|
|
1970
|
+
static readonly MG_ACT_NO_PROG_EXE_RIGHTS: number;
|
|
1971
|
+
static readonly MG_ACT_CRELINE_ABOVE: number;
|
|
1972
|
+
static readonly MG_ACT_CONTEXT_TERMINATION: number;
|
|
1973
|
+
static readonly MG_ACT_CONTEXT_TIMEOUT_RESET: number;
|
|
1974
|
+
static readonly MG_ACT_CONTEXT_REMOVE: number;
|
|
1975
|
+
static readonly MG_ACT_DUMP_ENVIRONMENT: number;
|
|
1976
|
+
static readonly MG_ACT_TOT_CNT: number;
|
|
1977
|
+
static readonly MG_ACT_TASK_PREFIX: number;
|
|
1978
|
+
static readonly MG_ACT_TASK_SUFFIX: number;
|
|
1979
|
+
static readonly MG_ACT_REC_PREFIX: number;
|
|
1980
|
+
static readonly MG_ACT_REC_SUFFIX: number;
|
|
1981
|
+
static readonly MG_ACT_CTRL_PREFIX: number;
|
|
1982
|
+
static readonly MG_ACT_CTRL_SUFFIX: number;
|
|
1983
|
+
static readonly MG_ACT_CTRL_VERIFICATION: number;
|
|
1984
|
+
static readonly MG_ACT_VARIABLE: number;
|
|
1985
|
+
static readonly MG_ACT_DATAVIEW_TOP: number;
|
|
1986
|
+
static readonly MG_ACT_DATAVIEW_BOTTOM: number;
|
|
1987
|
+
static readonly MG_ACT_CACHE_PREV: number;
|
|
1988
|
+
static readonly MG_ACT_CACHE_NEXT: number;
|
|
1989
|
+
static readonly MG_ACT_CYCLE_NEXT_REC: number;
|
|
1990
|
+
static readonly MG_ACT_CYCLE_NEXT_DELETE_REC: number;
|
|
1991
|
+
static readonly MG_ACT_COMPUTE: number;
|
|
1992
|
+
static readonly MG_ACT_DUMMY: number;
|
|
1993
|
+
static readonly MG_ACT_CTRL_FOCUS: number;
|
|
1994
|
+
static readonly MG_ACT_CTRL_MOUSEUP: number;
|
|
1995
|
+
static readonly MG_ACT_CTRL_KEYDOWN: number;
|
|
1996
|
+
static readonly MG_ACT_TIMER: number;
|
|
1997
|
+
static readonly MG_ACT_SELECTION: number;
|
|
1998
|
+
static readonly MG_ACT_RESIZE: number;
|
|
1999
|
+
static readonly MG_ACT_ROW_DATA_CURR_PAGE: number;
|
|
2000
|
+
static readonly MG_ACT_DV_TO_GUI: number;
|
|
2001
|
+
static readonly MG_ACT_DISABLE_EVENTS: number;
|
|
2002
|
+
static readonly MG_ACT_TOGGLE_INSERT: number;
|
|
2003
|
+
static readonly MG_ACT_INCREMENTAL_LOCATE: number;
|
|
2004
|
+
static readonly MG_ACT_MOVE_TO_FIRST_CTRL: number;
|
|
2005
|
+
static readonly MG_ACT_SET_EXTERNAL_VALUE: number;
|
|
2006
|
+
static readonly MG_ACT_CTRL_FOCUS_ON_NON_MAGIC_CONTROL: number;
|
|
2007
|
+
static readonly MG_ACT_FETCH_RECORDS_AHEAD_FROM_SERVER: number;
|
|
2008
|
+
static BuiltinEvent(eventCode: number): boolean;
|
|
2009
|
+
constructor();
|
|
2010
|
+
}
|
|
2011
|
+
|
|
2012
|
+
type JSONFromXMLCallback = (error: unknown, result: any) => void;
|
|
2013
|
+
declare class JSON_Utils {
|
|
2014
|
+
static JSONFromXML(xml: string, onComplete: JSONFromXMLCallback): void;
|
|
2015
|
+
}
|
|
2016
|
+
|
|
2017
|
+
declare class RequestInfo {
|
|
2018
|
+
serverCallAt: string;
|
|
2019
|
+
runtimeTaskTree: List<string>;
|
|
2020
|
+
roundtripTime: number;
|
|
2021
|
+
extraInfo: {
|
|
2022
|
+
contentLength: number;
|
|
2023
|
+
contextID: string;
|
|
2024
|
+
sessionCounter: number;
|
|
2025
|
+
timeStamp: string;
|
|
2026
|
+
};
|
|
2027
|
+
recordSuffixTriggeredBy: string;
|
|
2028
|
+
static clone(requestInfo: RequestInfo): RequestInfo;
|
|
2029
|
+
clear(): void;
|
|
2030
|
+
}
|
|
2031
|
+
|
|
2032
|
+
declare enum LogType {
|
|
2033
|
+
info = 1,
|
|
2034
|
+
warning = 2,
|
|
2035
|
+
error = 3
|
|
2036
|
+
}
|
|
2037
|
+
declare class Logger {
|
|
2038
|
+
static instance: Logger;
|
|
2039
|
+
LogLevel: Logger_LogLevels;
|
|
2040
|
+
ShouldBeep: boolean;
|
|
2041
|
+
static set Instance(value: Logger);
|
|
2042
|
+
static get Instance(): Logger;
|
|
2043
|
+
Initialize(logLevel: Logger_LogLevels, shouldBeep: boolean): void;
|
|
2044
|
+
ShouldLog(logLevel: Logger_LogLevels): boolean;
|
|
2045
|
+
ShouldLog(): boolean;
|
|
2046
|
+
private ShouldLog_0;
|
|
2047
|
+
private ShouldLog_1;
|
|
2048
|
+
ShouldLogServerRelatedMessages(): boolean;
|
|
2049
|
+
ShouldLogExtendedServerRelatedMessages(): boolean;
|
|
2050
|
+
WriteToLog(msg: string, openIfNecessary: boolean, logType?: LogType): void;
|
|
2051
|
+
WriteServerToLog(msg: string): void;
|
|
2052
|
+
WriteServerMessagesToLog(msg: string): void;
|
|
2053
|
+
WriteSupportToLog(msg: string, skipLine: boolean): void;
|
|
2054
|
+
WriteGuiToLog(msg: string): void;
|
|
2055
|
+
WriteDevToLog(msg: string): void;
|
|
2056
|
+
WriteBasicToLog(messageDirection: Logger_MessageDirection, contextID: string, sessionCounter: number, clientID: string, serverID: string, responseTime: number, statusCode: string, httpHeaders: string, contentLength: number): void;
|
|
2057
|
+
WriteRequestInfoToLog(requestInfo: RequestInfo, extraMessageStr: string): void;
|
|
2058
|
+
WriteBasicErrorToLog(): void;
|
|
2059
|
+
WriteErrorToLog(msg: string): void;
|
|
2060
|
+
WriteExceptionToLog(ex: Exception): void;
|
|
2061
|
+
WriteExceptionToLog(ex: Error): void;
|
|
2062
|
+
WriteExceptionToLog(ex: Exception, msg: string): void;
|
|
2063
|
+
WriteExceptionToLogWithMsg(msg: string): void;
|
|
2064
|
+
private WriteExceptionToLog_1;
|
|
2065
|
+
private WriteExceptionToLog_2;
|
|
2066
|
+
private WriteExceptionToLog_3;
|
|
2067
|
+
WriteWarningToLog(ex: Exception): void;
|
|
2068
|
+
WriteWarningToLog(ex: Exception, msg: string): void;
|
|
2069
|
+
WriteWarningToLog(ex: Error): void;
|
|
2070
|
+
WriteWarningToLogWithMsg(msg: string): void;
|
|
2071
|
+
private WriteWarningToLog_1;
|
|
2072
|
+
private WriteWarningToLog_2;
|
|
2073
|
+
private WriteWarningToLog_3;
|
|
2074
|
+
WriteStackTrace(stackTrace: StackTrace, framesToPrint: number, traceTitle: string): void;
|
|
2075
|
+
Flush(): void;
|
|
2076
|
+
constructor();
|
|
2077
|
+
}
|
|
2078
|
+
|
|
2079
|
+
declare enum MagicProperties {
|
|
2080
|
+
LineDivider = "line_divider",
|
|
2081
|
+
ImageFile = "image_file",
|
|
2082
|
+
Wallpaper = "wallpaper"
|
|
2083
|
+
}
|
|
2084
|
+
declare enum BindingLevel {
|
|
2085
|
+
Control = 1,
|
|
2086
|
+
Character = 2
|
|
2087
|
+
}
|
|
2088
|
+
|
|
2089
|
+
declare class Misc {
|
|
2090
|
+
static WriteStackTrace(throwable: Exception): void;
|
|
2091
|
+
static ToSByteArray(byteArray: Uint8Array): Int8Array;
|
|
2092
|
+
static ToByteArray(sbyteArray: Int8Array): Uint8Array;
|
|
2093
|
+
static CompareByteArray(source: Uint8Array, destination: Uint8Array, numberOfBytes: number): boolean;
|
|
2094
|
+
static URShift(number: number, bits: number): number;
|
|
2095
|
+
static getSystemMilliseconds(): number;
|
|
2096
|
+
static CompareIntArrays(arrayOne: number[], arrayTwo: number[]): boolean;
|
|
2097
|
+
static GetCommaSeperatedString(intArray: number[]): string;
|
|
2098
|
+
static GetIntArray(commaSeparatedValue: string): number[];
|
|
2099
|
+
static IsWebUrl(fileName: string): boolean;
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
declare class DefaultMsgDetails {
|
|
2103
|
+
MsgID: string;
|
|
2104
|
+
MsgString: string;
|
|
2105
|
+
constructor(ID: string, MsgStr: string);
|
|
2106
|
+
}
|
|
2107
|
+
declare class MsgInterface {
|
|
2108
|
+
static readonly STR_ERR_NUM: string;
|
|
2109
|
+
static readonly STR_ERR_DATE: string;
|
|
2110
|
+
static readonly STR_ERR_TIME: string;
|
|
2111
|
+
static readonly MONTHS_PTR: string;
|
|
2112
|
+
static readonly DAYS_PTR: string;
|
|
2113
|
+
static readonly STR_ERR_NEGETIVE: string;
|
|
2114
|
+
static readonly STR_RNG_TXT: string;
|
|
2115
|
+
static readonly EDT_ERR_STR_1: string;
|
|
2116
|
+
static readonly STR_ERR_PIPE_CONNECTION: string;
|
|
2117
|
+
static readonly FMERROR_STR_BAD_NAME: string;
|
|
2118
|
+
static readonly FMERROR_STR_BAD_DAMAGED: string;
|
|
2119
|
+
static readonly FMERROR_STR_BAD_BADCREATE: string;
|
|
2120
|
+
static readonly FMERROR_STR_FILE_LOCKED: string;
|
|
2121
|
+
static readonly FMERROR_STR_BAD_UNEXPECTED: string;
|
|
2122
|
+
static readonly FMERROR_STR_BAD_SERVER_NOTFOUND: string;
|
|
2123
|
+
static readonly FMERROR_STR_BAD_SERVER_INIT_FAILED: string;
|
|
2124
|
+
static readonly FMERROR_STR_UNLOCKED: string;
|
|
2125
|
+
static readonly FMERROR_STR_BAD_DB_INIT_FAILED: string;
|
|
2126
|
+
static readonly FMERROR_STR_BAD_LOCK_OPEN: string;
|
|
2127
|
+
static readonly FMERROR_STR_BAD_BADOPEN: string;
|
|
2128
|
+
static readonly FMERROR_STR_BAD_BADDEF: string;
|
|
2129
|
+
static readonly FMERROR_STR_DUP_KEY: string;
|
|
2130
|
+
static readonly FMERROR_STR_COMM_LOADED: string;
|
|
2131
|
+
static readonly FMERROR_STR_COMM_CONNECT: string;
|
|
2132
|
+
static readonly FMERROR_STR_READONLY: string;
|
|
2133
|
+
static readonly FMERROR_STR_BAD_BADCLOSE: string;
|
|
2134
|
+
static readonly FMERROR_STR_REC_LOCKED: string;
|
|
2135
|
+
static readonly FMERROR_STR_TRANS_OPEN: string;
|
|
2136
|
+
static readonly FMERROR_STR_COMMIT: string;
|
|
2137
|
+
static readonly FMERROR_STR_ABORT: string;
|
|
2138
|
+
static readonly FMERROR_STR_RSRC_LOCKED: string;
|
|
2139
|
+
static readonly FMERROR_STR_NODEF: string;
|
|
2140
|
+
static readonly FMERROR_STR_DEADLOCK: string;
|
|
2141
|
+
static readonly FMERROR_STR_DB_PROT: string;
|
|
2142
|
+
static readonly FMERROR_STR_OWNR_ALRDY_SET: string;
|
|
2143
|
+
static readonly FMERROR_STR_INVALID_OWNR: string;
|
|
2144
|
+
static readonly FMERROR_STR_CLR_OWNR_FAIL: string;
|
|
2145
|
+
static readonly FMERROR_STR_NO_DATABASE: string;
|
|
2146
|
+
static readonly FMERROR_STR_DBMS_ALTER_FAIL: string;
|
|
2147
|
+
static readonly FMERROR_STR_TRANS_LOCK: string;
|
|
2148
|
+
static readonly FMERROR_STR_EXTUSE_MULU_CNFLCT: string;
|
|
2149
|
+
static readonly FMERROR_STR_DB_GW_VERSION_CNFLCT: string;
|
|
2150
|
+
static readonly FMERROR_STR_DB_CANOT_REMOVE: string;
|
|
2151
|
+
static readonly FMERROR_STR_DB_CANOT_RENAME: string;
|
|
2152
|
+
static readonly FMERROR_STR_DB_BAD_SQL_CMD: string;
|
|
2153
|
+
static readonly FMERROR_STR_REC_LOCKED_NOBUF: string;
|
|
2154
|
+
static readonly FMERROR_STR_REOPEN: string;
|
|
2155
|
+
static readonly FMERROR_STR_REC_LOCKED_NOW: string;
|
|
2156
|
+
static readonly FMERROR_STR_DBMS_SORT_FAIL: string;
|
|
2157
|
+
static readonly FMERROR_STR_NO_OLD_DATABASE_DBMS: string;
|
|
2158
|
+
static readonly FMERROR_STR_BAD_LOGIN: string;
|
|
2159
|
+
static readonly FMERROR_STR_ERR_EXEC_SQL: string;
|
|
2160
|
+
static readonly FMERROR_STR_ERR_UPDATE_FAIL: string;
|
|
2161
|
+
static readonly FMERROR_STR_ERR_INSERT_FAIL: string;
|
|
2162
|
+
static readonly FMERROR_STR_ERR_DELETE_FAIL: string;
|
|
2163
|
+
static readonly FMERROR_STR_PRINTER: string;
|
|
2164
|
+
static readonly FMERROR_STR_FIL_NOT_EXIST: string;
|
|
2165
|
+
static readonly FMERROR_STR_COMM_GWY_COMPTABILITY: string;
|
|
2166
|
+
static readonly FMERROR_STR_CACHE_TOO_BIG: string;
|
|
2167
|
+
static readonly FMERROR_STR_NO_ROWS_AFFECTED: string;
|
|
2168
|
+
static readonly FMERROR_STR_TARGET_FILE_EXIST: string;
|
|
2169
|
+
static readonly FMERROR_STR_FILE_IS_VIEW: string;
|
|
2170
|
+
static readonly FMERROR_STR_DB_CANOT_COPY: string;
|
|
2171
|
+
static readonly FMERROR_STR_HLP_NOT_EXIST: string;
|
|
2172
|
+
static readonly FMERROR_STR_UNUSABLE_FILE: string;
|
|
2173
|
+
static readonly FMERROR_STR_DB_BAD_QUERY: string;
|
|
2174
|
+
static readonly FMERROR_STR_NO_HDLS: string;
|
|
2175
|
+
static readonly FMERROR_STR_MAX_CONNS_REACHED: string;
|
|
2176
|
+
static readonly FMERROR_STR_CONSTRAINT_FAIL: string;
|
|
2177
|
+
static readonly FMERROR_STR_TRIGGER_FAIL: string;
|
|
2178
|
+
static readonly FMERROR_STR_MODIFY_WITHIN_TRANS: string;
|
|
2179
|
+
static readonly EXPTAB_TSK_MODE_RT: string;
|
|
2180
|
+
static readonly EXPTAB_ERR_CALL_MAIN_PRG_1: string;
|
|
2181
|
+
static readonly LOCATE_STR_ERR_EOF: string;
|
|
2182
|
+
static readonly RT_STR_REC_NOTFOUND: string;
|
|
2183
|
+
static readonly RT_STR_PRG_NOTFOUND: string;
|
|
2184
|
+
static readonly RT_STR_NO_RECS_IN_RNG: string;
|
|
2185
|
+
static readonly RT_STR_FLD_MUST_UPDATED: string;
|
|
2186
|
+
static readonly RT_STR_TSK_NO_SCREEN: string;
|
|
2187
|
+
static readonly RT_STR_CRSR_CANT_PARK: string;
|
|
2188
|
+
static readonly RT_STR_MODE_NOTALLOWED: string;
|
|
2189
|
+
static readonly RT_STR_NON_MODIFIABLE: string;
|
|
2190
|
+
static readonly RT_STR_UPDATE_IN_QUERY: string;
|
|
2191
|
+
static readonly RT_STR_LOAD_RES_FAIL: string;
|
|
2192
|
+
static readonly RT_STR_NO_CREATE_ON_TREE: string;
|
|
2193
|
+
static readonly TSKR_ERR_NOTEXIST_COMP: string;
|
|
2194
|
+
static readonly TSK_ERR_BCSUBFORM_WRONG_EXP: string;
|
|
2195
|
+
static readonly TSK_ERR_NESTED_BCSUBFORM: string;
|
|
2196
|
+
static readonly TSK_ERR_CHANGE_CACHED_NESTED_BCSUBFORM: string;
|
|
2197
|
+
static readonly TSK_ERR_SUBFORM_DSQL: string;
|
|
2198
|
+
static readonly TSK_ERR_DSQL_SELECT_ONLY: string;
|
|
2199
|
+
static readonly CSTIO_STR_ERR2: string;
|
|
2200
|
+
static readonly CONFIRM_STR_DELETE: string;
|
|
2201
|
+
static readonly CONFIRM_STR_CANCEL: string;
|
|
2202
|
+
static readonly CONFIRM_STR_WINDOW_TITLE: string;
|
|
2203
|
+
static readonly WARNING_STR_WINDOW_TITLE: string;
|
|
2204
|
+
static readonly BRKTAB_STR_ERROR: string;
|
|
2205
|
+
static readonly USRINP_STR_BADPASSW: string;
|
|
2206
|
+
static readonly USRINP_STR_BADPASSW_WEBSERVER: string;
|
|
2207
|
+
static readonly USRINP_STR_BADPASSW_PROXYSERVER: string;
|
|
2208
|
+
static readonly CRF_STR_CONF_UPD: string;
|
|
2209
|
+
static readonly MENU_STR_ERROR_ENABLE: string;
|
|
2210
|
+
static readonly GUI_OK_BUTTON: string;
|
|
2211
|
+
static readonly GUI_CANCEL_BUTTON: string;
|
|
2212
|
+
static readonly BRKTAB_STOP_MODE_TITLE: string;
|
|
2213
|
+
static readonly BRKTAB_STR_ERR_FORM: string;
|
|
2214
|
+
static readonly BROWSER_OPT_INFO_SERVER_STR: string;
|
|
2215
|
+
static readonly STR_ERR_PIC_J: string;
|
|
2216
|
+
static readonly STR_ERR_PIC_S: string;
|
|
2217
|
+
static readonly STR_ERR_PIC_T: string;
|
|
2218
|
+
static readonly TASKRULE_STR_APPLICATION: string;
|
|
2219
|
+
static readonly DITDEF_STR_ERR_WINDOW_TYPE: string;
|
|
2220
|
+
static readonly DITDEF_STR_ERR_SUBFORM_PROG_PARALLEL: string;
|
|
2221
|
+
static readonly DATEHEB_MONTH_STR: string;
|
|
2222
|
+
static readonly DATEHEB_DOW_STR: string;
|
|
2223
|
+
static readonly CHK_ERR_CALL_FROM_RICH_CLIENT: string;
|
|
2224
|
+
static readonly RC_STR_F7_UNEXPECTED_ERR: string;
|
|
2225
|
+
static readonly STR_ERR_MAX_VAR_SIZE: string;
|
|
2226
|
+
static readonly STR_RC_RECENT_ACTIVITY_TOOLTIP_HDR: string;
|
|
2227
|
+
static readonly STR_RC_RECENT_ACTIVITY_TIME_LBL: string;
|
|
2228
|
+
static readonly STR_RC_RECENT_ACTIVITY_DATA_UNIT: string;
|
|
2229
|
+
static readonly STR_RC_RECENT_ACTIVITY_TIME_UNIT: string;
|
|
2230
|
+
static readonly STR_PAGE_LOADING_IN_PROGRESS: string;
|
|
2231
|
+
static readonly STR_CANNOT_PARK: string;
|
|
2232
|
+
static readonly STR_RESTART_SESSION: string;
|
|
2233
|
+
static readonly STR_ERR_INACCESSIBLE_URL: string;
|
|
2234
|
+
static readonly STR_ERR_SESSION_CLOSED: string;
|
|
2235
|
+
static readonly STR_ERR_SESSION_CLOSED_INACTIVITY: string;
|
|
2236
|
+
static readonly STR_MINUTES: string;
|
|
2237
|
+
static readonly STR_HOURS: string;
|
|
2238
|
+
static readonly STR_ERR_AUTHORIZATION_FAILURE: string;
|
|
2239
|
+
static readonly STR_WARN_UNLOAD_TIMEOUT: string;
|
|
2240
|
+
static readonly STR_WARN_PARALLEL_NOT_SUPPORTED: string;
|
|
2241
|
+
static readonly DN_ERR_MDI_FRAME_ISNOT_OPENED: string;
|
|
2242
|
+
static readonly ERR_CANNOT_HANDLE_WEB_REQUEST: string;
|
|
2243
|
+
static readonly STR_MDI_FRAME_MISMATCH: string;
|
|
2244
|
+
static readonly CHK_ERR_OFFLINE_NOT_SUPPORT_FRAME_INTERFACE: string;
|
|
2245
|
+
static readonly STR_USER_ID: string;
|
|
2246
|
+
static readonly STR_PASSWORD: string;
|
|
2247
|
+
static readonly STR_LOGON_PARAMETERS: string;
|
|
2248
|
+
static readonly STR_LOGON_CAPTION: string;
|
|
2249
|
+
static readonly STR_LOGON_INSTRUCTION: string;
|
|
2250
|
+
static readonly STR_GENERIC_ERROR_MESSAGE: string;
|
|
2251
|
+
static readonly STR_GENERIC_ERROR_CONNECTION_PROBLEM_TITLE: string;
|
|
2252
|
+
static readonly STR_GENERIC_ERROR_CONNECTION_PROBLEM_MESSAGE: string;
|
|
2253
|
+
static readonly FMERROR_STR_TRANS_OPEN_FAILED: string;
|
|
2254
|
+
static readonly STR_ERR_CANNOT_CALL_OFFLINE_BYNAME_OR_BYEXP: string;
|
|
2255
|
+
static readonly RT_STR_DELETE_MODE_WITHOUT_MAINSOURCE_NOTALLOWED: string;
|
|
2256
|
+
static readonly RC_ERROR_INCOMPATIBLE_DATASOURCES: string;
|
|
2257
|
+
static readonly RC_ERROR_INVALID_SOURCES: string;
|
|
2258
|
+
static readonly RC_ERROR_OFFLINE_NEXT_EXECUTION_INVALID_SOURCES: string;
|
|
2259
|
+
static readonly RC_ERR_ANDROID_LOAD_FROM_URL: string;
|
|
2260
|
+
static readonly STR_CLIENT_DB_DEL_OPERATION_FAILED: string;
|
|
2261
|
+
static readonly STR_DATAVIEW_TO_DATASOURCE_OPERATION_FAILED: string;
|
|
2262
|
+
static readonly STR_CLIENT_DB_DISCONNECT_DATASOURCE_OPEN: string;
|
|
2263
|
+
static readonly STR_CLIENT_DB_DISCONNECT_DATASOURCE_NOT_EXIST: string;
|
|
2264
|
+
static readonly FMERROR_STR_INVALID_PASSWORD: string;
|
|
2265
|
+
static readonly STR_MOBILE_TAB_CONTROL_CANNOT_BE_USED: string;
|
|
2266
|
+
static readonly STR_MOBILE_CONTROLS_CANNOT_BE_OUTSIDE_TAB: string;
|
|
2267
|
+
static readonly STR_MOBILE_TAB_CONTROL_LAYER_0: string;
|
|
2268
|
+
static readonly STR_MOBILE_TAB_DISPLAY_LIST_ERROR: string;
|
|
2269
|
+
static readonly RC_ERROR_ARG_TYPE_STRING_NUMBER_MISMATCH: string;
|
|
2270
|
+
static readonly RC_ERROR_ILLEGAL_ARG_ATTR_TYPE: string;
|
|
2271
|
+
static readonly RC_ERROR_ILLEGAL_RETURN_VAL_ATTR_TYPE: string;
|
|
2272
|
+
static readonly STR_ERR_WEBCLIENT_PROGRAM_RELOADED: string;
|
|
2273
|
+
static readonly STR_ERR_EXECUTED_PROGRAM_CHANGED: string;
|
|
2274
|
+
static readonly STR_ERR_MAX_ALLOWED_LENGTH: string;
|
|
2275
|
+
static readonly STR_ERR_MAX_ALLOWED_VALUE: string;
|
|
2276
|
+
static readonly STR_ERR_BLANK_SUBFORM_NAME: string;
|
|
2277
|
+
static readonly STR_ERR_SUBFORM_NAME_EXCEEDS_LIMIT: string;
|
|
2278
|
+
static readonly STR_ERR_INVALID_HASH_ALGO_NUMBER: string;
|
|
2279
|
+
static readonly DefaultMessages: DefaultMsgDetails[];
|
|
2280
|
+
constructor();
|
|
2281
|
+
}
|
|
2282
|
+
|
|
2283
|
+
declare class PICInterface {
|
|
2284
|
+
static readonly PIC_X: number;
|
|
2285
|
+
static readonly PIC_U: number;
|
|
2286
|
+
static readonly PIC_L: number;
|
|
2287
|
+
static readonly PIC_N: number;
|
|
2288
|
+
static readonly PIC_YY: number;
|
|
2289
|
+
static readonly PIC_YYYY: number;
|
|
2290
|
+
static readonly PIC_MMD: number;
|
|
2291
|
+
static readonly PIC_MMM: number;
|
|
2292
|
+
static readonly PIC_DD: number;
|
|
2293
|
+
static readonly PIC_DDD: number;
|
|
2294
|
+
static readonly PIC_DDDD: number;
|
|
2295
|
+
static readonly PIC_W: number;
|
|
2296
|
+
static readonly PIC_WWW: number;
|
|
2297
|
+
static readonly PIC_HH: number;
|
|
2298
|
+
static readonly PIC_MMT: number;
|
|
2299
|
+
static readonly PIC_SS: number;
|
|
2300
|
+
static readonly PIC_PM: number;
|
|
2301
|
+
static readonly PIC_HYYYYY: number;
|
|
2302
|
+
static readonly PIC_HL: number;
|
|
2303
|
+
static readonly PIC_HDD: number;
|
|
2304
|
+
static readonly PIC_MS: number;
|
|
2305
|
+
static readonly PIC_LOCAL: number;
|
|
2306
|
+
static readonly PIC_MAX_MSK_LEN: number;
|
|
2307
|
+
static readonly PIC_JY1: number;
|
|
2308
|
+
static readonly PIC_JY2: number;
|
|
2309
|
+
static readonly PIC_JY4: number;
|
|
2310
|
+
static readonly PIC_YJ: number;
|
|
2311
|
+
static readonly PIC_BB: number;
|
|
2312
|
+
static readonly PIC_J: number;
|
|
2313
|
+
static readonly PIC_T: number;
|
|
2314
|
+
static readonly PIC_G: number;
|
|
2315
|
+
static readonly PIC_S: number;
|
|
2316
|
+
static readonly PIC_MAX_OP: number;
|
|
2317
|
+
static readonly NULL_CHAR: number;
|
|
2318
|
+
static readonly DB_STR_MAX: number;
|
|
2319
|
+
static readonly DAYSINFOURCENT: number;
|
|
2320
|
+
static readonly DAYSINCENTURY: number;
|
|
2321
|
+
static readonly DAYSINFOURYEAR: number;
|
|
2322
|
+
static readonly DAYSINYEAR: number;
|
|
2323
|
+
static readonly DAYSINMONTH: number;
|
|
2324
|
+
static readonly DATE_BUDDHIST_GAP: number;
|
|
2325
|
+
static readonly DEFAULT_DATE: string;
|
|
2326
|
+
static readonly DEFAULT_TIME: string;
|
|
2327
|
+
static readonly date_day_tab: number[];
|
|
2328
|
+
static readonly date_month_str: string[];
|
|
2329
|
+
static readonly date_dow_str: string[];
|
|
2330
|
+
static readonly NumDirective: number[];
|
|
2331
|
+
constructor();
|
|
2332
|
+
}
|
|
2333
|
+
|
|
2334
|
+
declare class OSEnvironment {
|
|
2335
|
+
static EolSeq: string;
|
|
2336
|
+
static TabSeq: string;
|
|
2337
|
+
static getStackTrace(): string;
|
|
2338
|
+
}
|
|
2339
|
+
|
|
2340
|
+
declare class Queue<T> {
|
|
2341
|
+
private _queueVec;
|
|
2342
|
+
constructor();
|
|
2343
|
+
get(): any;
|
|
2344
|
+
put(obj: T): void;
|
|
2345
|
+
clear(): void;
|
|
2346
|
+
isEmpty(): boolean;
|
|
2347
|
+
Size(): number;
|
|
2348
|
+
}
|
|
2349
|
+
|
|
2350
|
+
declare class Randomizer {
|
|
2351
|
+
private static _initialized;
|
|
2352
|
+
private static _mod;
|
|
2353
|
+
private static _mul;
|
|
2354
|
+
private static _seed;
|
|
2355
|
+
static get_initialized(): boolean;
|
|
2356
|
+
static get_mod(): number;
|
|
2357
|
+
static get_mul(): number;
|
|
2358
|
+
static get_seed(): number;
|
|
2359
|
+
static set_initialized(): void;
|
|
2360
|
+
static set_mod(randMod: number): number;
|
|
2361
|
+
static set_mul(randMul: number): number;
|
|
2362
|
+
static set_seed(randSeed: number): number;
|
|
2363
|
+
}
|
|
2364
|
+
|
|
2365
|
+
declare class Rtf_SYMBOL {
|
|
2366
|
+
szKeyword: string;
|
|
2367
|
+
kwd: Rtf_KWD;
|
|
2368
|
+
idxInRgprop: any;
|
|
2369
|
+
constructor(keyWord: string, kwd: Rtf_KWD, idxInRgprop: any);
|
|
2370
|
+
}
|
|
2371
|
+
declare class Rtf_PROP {
|
|
2372
|
+
actn: Rtf_ACTN;
|
|
2373
|
+
prop: Rtf_PROPTYPE;
|
|
2374
|
+
constructor(actn: Rtf_ACTN, prop: Rtf_PROPTYPE);
|
|
2375
|
+
}
|
|
2376
|
+
declare enum Rtf_KWD {
|
|
2377
|
+
CHAR = 0,
|
|
2378
|
+
DEST = 1,
|
|
2379
|
+
PROP = 2,
|
|
2380
|
+
SPEC = 3
|
|
2381
|
+
}
|
|
2382
|
+
declare enum Rtf_PROPTYPE {
|
|
2383
|
+
CHP = 0,
|
|
2384
|
+
PAP = 1,
|
|
2385
|
+
SEP = 2,
|
|
2386
|
+
DOP = 3
|
|
2387
|
+
}
|
|
2388
|
+
declare enum Rtf_ACTN {
|
|
2389
|
+
SPEC = 0,
|
|
2390
|
+
BYTE = 1,
|
|
2391
|
+
WORD = 2
|
|
2392
|
+
}
|
|
2393
|
+
declare enum Rtf_IPFN {
|
|
2394
|
+
BIN = 0,
|
|
2395
|
+
HEX = 1,
|
|
2396
|
+
SKIP_DEST = 2,
|
|
2397
|
+
BREAK = 3,
|
|
2398
|
+
NEW = 4,
|
|
2399
|
+
FONT = 5,
|
|
2400
|
+
CHARSET = 6,
|
|
2401
|
+
UNICODE = 7
|
|
2402
|
+
}
|
|
2403
|
+
declare enum Rtf_IDEST {
|
|
2404
|
+
PICT = 0,
|
|
2405
|
+
COLOR = 1,
|
|
2406
|
+
SKIP = 2
|
|
2407
|
+
}
|
|
2408
|
+
declare enum Rtf_IPROP {
|
|
2409
|
+
BOLD = 0,
|
|
2410
|
+
ITALIC = 1,
|
|
2411
|
+
UNDERLINE = 2,
|
|
2412
|
+
FONT = 3,
|
|
2413
|
+
SIZE = 4,
|
|
2414
|
+
COLOR = 5,
|
|
2415
|
+
RED = 6,
|
|
2416
|
+
GREEN = 7,
|
|
2417
|
+
BLUE = 8,
|
|
2418
|
+
LEFT_IND = 9,
|
|
2419
|
+
RIGHT_IND = 10,
|
|
2420
|
+
FIRST_IND = 11,
|
|
2421
|
+
COLS = 12,
|
|
2422
|
+
PGN_X = 13,
|
|
2423
|
+
PGN_Y = 14,
|
|
2424
|
+
XA_PAGE = 15,
|
|
2425
|
+
YA_PAGE = 16,
|
|
2426
|
+
XA_LEFT = 17,
|
|
2427
|
+
XA_RIGHT = 18,
|
|
2428
|
+
YA_TOP = 19,
|
|
2429
|
+
YA_BOTTOM = 20,
|
|
2430
|
+
PGN_START = 21,
|
|
2431
|
+
SBK = 22,
|
|
2432
|
+
PGN_FORMAT = 23,
|
|
2433
|
+
FACING_P = 24,
|
|
2434
|
+
LANDSCAPE = 25,
|
|
2435
|
+
JUST = 26,
|
|
2436
|
+
PARD = 27,
|
|
2437
|
+
PLAIN = 28,
|
|
2438
|
+
SECTD = 29,
|
|
2439
|
+
BULLET = 30,
|
|
2440
|
+
XA_BULLET = 31,
|
|
2441
|
+
MAX = 32
|
|
2442
|
+
}
|
|
2443
|
+
declare enum Rtf_RDS {
|
|
2444
|
+
NORM = 0,
|
|
2445
|
+
COLOR = 1,
|
|
2446
|
+
SKIP = 2,
|
|
2447
|
+
NEW = 3
|
|
2448
|
+
}
|
|
2449
|
+
declare enum Rtf_ErrorRtf {
|
|
2450
|
+
OK = 0,
|
|
2451
|
+
STACK_UNDERFLOW = 1,
|
|
2452
|
+
STACK_OVERFLOW = 2,
|
|
2453
|
+
UNMATCHED_BRACE = 3,
|
|
2454
|
+
INVALID_HEX = 4,
|
|
2455
|
+
BAD_TABLE = 5,
|
|
2456
|
+
ASSERTION = 6,
|
|
2457
|
+
END_OF_FILE = 7,
|
|
2458
|
+
BUFFER_TOO_SMALL = 8
|
|
2459
|
+
}
|
|
2460
|
+
declare class Rtf_RtfChar {
|
|
2461
|
+
static readonly CR: string;
|
|
2462
|
+
static readonly LF: string;
|
|
2463
|
+
static readonly TAB: string;
|
|
2464
|
+
static readonly BULLET: string;
|
|
2465
|
+
static readonly TILDA: string;
|
|
2466
|
+
static readonly DASH: string;
|
|
2467
|
+
static readonly DASH_CHAR = "-";
|
|
2468
|
+
static readonly QUOTE = "'";
|
|
2469
|
+
static readonly DBLQUOTE = "\"";
|
|
2470
|
+
static readonly OPENINGBRACE = "{";
|
|
2471
|
+
static readonly CLOSINGBRACE = "}";
|
|
2472
|
+
static readonly BACKSLASH = "\\";
|
|
2473
|
+
}
|
|
2474
|
+
declare enum Rtf_RIS {
|
|
2475
|
+
NORM = 0,
|
|
2476
|
+
BIN = 1,
|
|
2477
|
+
HEX = 2,
|
|
2478
|
+
UNICODE = 3
|
|
2479
|
+
}
|
|
2480
|
+
declare class Rtf {
|
|
2481
|
+
private _group;
|
|
2482
|
+
private _cbBin;
|
|
2483
|
+
private _lParam;
|
|
2484
|
+
private _skipDestIfUnk;
|
|
2485
|
+
private _outputOnce;
|
|
2486
|
+
private _processCrlfSpecial;
|
|
2487
|
+
private _destState;
|
|
2488
|
+
private _internalState;
|
|
2489
|
+
private _stack;
|
|
2490
|
+
private _index;
|
|
2491
|
+
private _fontNum;
|
|
2492
|
+
private readonly _charsetTable;
|
|
2493
|
+
private readonly _codePageTable;
|
|
2494
|
+
private static readonly RTF_PREFIX;
|
|
2495
|
+
private static readonly CHAR_PAR;
|
|
2496
|
+
private static readonly rgprop;
|
|
2497
|
+
private static readonly rgsymRtf;
|
|
2498
|
+
constructor();
|
|
2499
|
+
static isRtf(str: string): boolean;
|
|
2500
|
+
toTxt(rtfTxt: string, outputTxt: StringBuilder): Rtf_ErrorRtf;
|
|
2501
|
+
private ParseChar;
|
|
2502
|
+
private PrintChar;
|
|
2503
|
+
private PushState;
|
|
2504
|
+
private PopState;
|
|
2505
|
+
private ParseKeyword;
|
|
2506
|
+
private TranslateKeyword;
|
|
2507
|
+
private validateProp;
|
|
2508
|
+
private changeDestState;
|
|
2509
|
+
private ParseSpecialKeyword;
|
|
2510
|
+
private static is1stByte;
|
|
2511
|
+
private static is2ndByte;
|
|
2512
|
+
private setCodePageTable;
|
|
2513
|
+
private getCodePage;
|
|
2514
|
+
private getCharset;
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
declare class StorageAttributeCheck {
|
|
2518
|
+
static isTheSameType(type1: StorageAttribute, type2: StorageAttribute): boolean;
|
|
2519
|
+
static isTypeBlob(type: StorageAttribute): boolean;
|
|
2520
|
+
static isTypeAlpha(type: StorageAttribute): boolean;
|
|
2521
|
+
static isTypeNumeric(type: StorageAttribute): boolean;
|
|
2522
|
+
static isTypeLogical(type: StorageAttribute): boolean;
|
|
2523
|
+
static isTypeDotNet(type: StorageAttribute): boolean;
|
|
2524
|
+
static IsTypeAlphaOrUnicode(type: StorageAttribute): boolean;
|
|
2525
|
+
static StorageFldAlphaOrUnicode(type1: StorageAttribute, type2: StorageAttribute): boolean;
|
|
2526
|
+
static StorageFldAlphaUnicodeOrBlob(type1: StorageAttribute, type2: StorageAttribute): boolean;
|
|
2527
|
+
static IsTypeCompatibile(sourceAttribute: StorageAttribute, destinationAttribute: StorageAttribute): boolean;
|
|
2528
|
+
constructor();
|
|
2529
|
+
}
|
|
2530
|
+
|
|
2531
|
+
declare const SEQ_2_HTML: number;
|
|
2532
|
+
declare const HTML_2_STR: number;
|
|
2533
|
+
declare const SEQ_2_STR: number;
|
|
2534
|
+
declare class StrUtil {
|
|
2535
|
+
private static _paddingSpaces;
|
|
2536
|
+
static mem_trim(str: string, len: number): number;
|
|
2537
|
+
static memmove(dest: string, destCount: number, src: string, srcCount: number, len: number): string;
|
|
2538
|
+
static memcpy(dest: string, destCount: number, src: string, scrCount: number, count: number): string;
|
|
2539
|
+
static memcpy(dest: string[], destCount: number, src: string[], srcCount: number, count: number): void;
|
|
2540
|
+
private static memcpy_0;
|
|
2541
|
+
private static memcpy_1;
|
|
2542
|
+
static memset(dest: string, destCount: number, inVal: string, counter: number): string;
|
|
2543
|
+
static memset(dest: string[], destCount: number, inVal: string, counter: number): void;
|
|
2544
|
+
private static memset_0;
|
|
2545
|
+
private static memset_1;
|
|
2546
|
+
static strstr(str: string, substr: string): string;
|
|
2547
|
+
/*******************************/
|
|
2548
|
+
static ReverseString(text: StringBuilder): StringBuilder;
|
|
2549
|
+
static rtrim(str: string): string;
|
|
2550
|
+
static rtrimWithNull(str: string, trimNullChars: boolean): string;
|
|
2551
|
+
static ltrim(str: string): string;
|
|
2552
|
+
static DeleteStringsFromEnds(str: string, strToDelete: string): string;
|
|
2553
|
+
static padStr(str: string, len: number): string;
|
|
2554
|
+
static tokenize(source: string, delim: string | RegExp): string[];
|
|
2555
|
+
static stringToHexaDump(str: string, minLength: number): string;
|
|
2556
|
+
static searchAndReplace(str: string, from: string, to: string): string;
|
|
2557
|
+
static searchAndReplace(str: string, from: string[], to: string[]): string;
|
|
2558
|
+
private static searchAndReplace_0;
|
|
2559
|
+
private static searchAndReplace_1;
|
|
2560
|
+
private static indexOf;
|
|
2561
|
+
static replaceStringTokens(userString: string, token: string, occurrence: number, val: string): string;
|
|
2562
|
+
static makePrintableTokens(source: string, type: string): string;
|
|
2563
|
+
static makePrintableTokens(source: string, type: number): string;
|
|
2564
|
+
static makePrintableTokens(source: List<string>, type: number): string;
|
|
2565
|
+
static makePrintableTokens_0(source: string, type: number): string;
|
|
2566
|
+
private static makePrintableTokens_1;
|
|
2567
|
+
static makePrintable(source: string): string;
|
|
2568
|
+
static makePrintable2(source: string): string;
|
|
2569
|
+
static ZstringMake(s: string, len: number): string;
|
|
2570
|
+
static GetPlainTextfromRtf(rtfText: string): string;
|
|
2571
|
+
static StringsArraysEqual(str1: string[], str2: string[]): boolean;
|
|
2572
|
+
static SearchAndReplaceWildChars(buf: string, len: number, filler: string): string;
|
|
2573
|
+
static getConsoleErorString(source: string): string;
|
|
2574
|
+
static getMsgBoxErorString(source: string): string;
|
|
2575
|
+
}
|
|
2576
|
+
|
|
2577
|
+
declare class SyncExecutionHelper {
|
|
2578
|
+
private static _instance;
|
|
2579
|
+
static get Instance(): SyncExecutionHelper;
|
|
2580
|
+
private resolver;
|
|
2581
|
+
Wait(): any;
|
|
2582
|
+
Pulse(): void;
|
|
2583
|
+
}
|
|
2584
|
+
|
|
2585
|
+
declare class UtilDateJpn {
|
|
2586
|
+
private static _instance;
|
|
2587
|
+
private static JweekStr;
|
|
2588
|
+
private static JmonthStr;
|
|
2589
|
+
private static GengoStr;
|
|
2590
|
+
private static StartDayOfGengo;
|
|
2591
|
+
private MaxGengo;
|
|
2592
|
+
static getInstance(): UtilDateJpn;
|
|
2593
|
+
static getArrayDow(): string[];
|
|
2594
|
+
static getStrDow(intIdx: number): string;
|
|
2595
|
+
static convertStrMonth(month: number): string;
|
|
2596
|
+
date_jpn_year_ofs(intYear: number, intDoy: number): number;
|
|
2597
|
+
date_jpn_yr_2_a(intYear: number, intDoy: number, isKanji: boolean): string;
|
|
2598
|
+
private date_jpn_yr_4_a;
|
|
2599
|
+
private static getEraNameStrInDate;
|
|
2600
|
+
private static getEraNameLenInPicture;
|
|
2601
|
+
getStartYearOfEra(strDate: string, strPicture: string): number;
|
|
2602
|
+
addExtraGengo(strExtraGengo: string): void;
|
|
2603
|
+
}
|
|
2604
|
+
|
|
2605
|
+
declare class UtilImeJpn {
|
|
2606
|
+
static IME_ZEN_HIRAGANA_ROMAN: number;
|
|
2607
|
+
static IME_FORCE_OFF: number;
|
|
2608
|
+
static IME_DISABLE: number;
|
|
2609
|
+
ImeAutoOff: boolean;
|
|
2610
|
+
StrImeRead: string;
|
|
2611
|
+
isValid(imeMode: number): boolean;
|
|
2612
|
+
constructor();
|
|
2613
|
+
}
|
|
2614
|
+
|
|
2615
|
+
declare class UtilStrByteMode {
|
|
2616
|
+
static Encoding: Encoding;
|
|
2617
|
+
static strNavigatorLang: string;
|
|
2618
|
+
private static _bLocaleDefLangJPN;
|
|
2619
|
+
private static _bLocaleDefLangCHN;
|
|
2620
|
+
private static _bLocaleDefLangKOR;
|
|
2621
|
+
static isLocaleDefLangDBCS(): boolean;
|
|
2622
|
+
static isLocaleDefLangJPN(): boolean;
|
|
2623
|
+
static isLocaleDefLangKOR(): boolean;
|
|
2624
|
+
static isKoreanCharacter(c: number): boolean;
|
|
2625
|
+
static lenB(strVal: string): number;
|
|
2626
|
+
static midB(strVal: string, ofs: number, len: number): string;
|
|
2627
|
+
static leftB(strVal: string, len: number): string;
|
|
2628
|
+
static rightB(strVal: string, len: number): string;
|
|
2629
|
+
static insB(strTarget: string, strSource: string, ofs: number, len: number): string;
|
|
2630
|
+
static delB(strVal: string, ofs: number, len: number): string;
|
|
2631
|
+
static instrB(strTarget: string, strSearch: string): number;
|
|
2632
|
+
static repB(strTarget: string, strOrigin: string, ofs: number, len: number): string;
|
|
2633
|
+
static repC(strTarget: string, strOrigin: string, ofs: number, len: number): string;
|
|
2634
|
+
static isHalfWidth(str: string): boolean;
|
|
2635
|
+
static isDigit(letter: string): boolean;
|
|
2636
|
+
static asNumeric(letter: string): boolean;
|
|
2637
|
+
static convPos(strSource: string, strDest: string, pos: number, isAdvance: boolean): number;
|
|
2638
|
+
static getMinLenPicture(str: string, picture: string): number;
|
|
2639
|
+
static strcmp(str1: string, str2: string): number;
|
|
2640
|
+
}
|
|
2641
|
+
|
|
2642
|
+
declare class XMLConstants {
|
|
2643
|
+
static readonly MG_TAG_XML: string;
|
|
2644
|
+
static readonly MG_TAG_XML_END: string;
|
|
2645
|
+
static readonly TAG_TERM: string;
|
|
2646
|
+
static readonly TAG_OPEN: string;
|
|
2647
|
+
static readonly TAG_CLOSE: string;
|
|
2648
|
+
static readonly XML_ATTR_DELIM: string;
|
|
2649
|
+
static readonly START_TAG: string;
|
|
2650
|
+
static readonly END_TAG: string;
|
|
2651
|
+
static readonly XML_TAB: string;
|
|
2652
|
+
static readonly MG_ATTR_ID: string;
|
|
2653
|
+
static readonly MG_TAG_XML_END_TAGGED: string;
|
|
2654
|
+
static readonly MG_TAG_OPEN: string;
|
|
2655
|
+
static readonly MG_TAG_TASK: string;
|
|
2656
|
+
static readonly MG_TAG_TASK_END: string;
|
|
2657
|
+
static readonly MG_TAG_RECOMPUTE: string;
|
|
2658
|
+
static readonly MG_ATTR_VB_VIEW_ROWIDX: string;
|
|
2659
|
+
static readonly MG_ATTR_CONTROL_ISN: string;
|
|
2660
|
+
static readonly MG_HOR_ALIGMENT_IS_INHERITED: string;
|
|
2661
|
+
static readonly MAX_PATH: number;
|
|
2662
|
+
static readonly FILE_NAME_SIZE: number;
|
|
2663
|
+
static readonly CDATA_START: string;
|
|
2664
|
+
static readonly CDATA_END: string;
|
|
2665
|
+
static readonly MG_ATTR_VALUE: string;
|
|
2666
|
+
static readonly MG_ATTR_STUDIO_VALUE: string;
|
|
2667
|
+
static readonly MG_ATTR_NAME: string;
|
|
2668
|
+
static readonly MG_ATTR_TYPE: string;
|
|
2669
|
+
static readonly MG_ATTR_SIZE: string;
|
|
2670
|
+
static readonly MG_ATTR_VAR_NAME: string;
|
|
2671
|
+
static readonly MG_ATTR_VAR_DISP_NAME: string;
|
|
2672
|
+
static readonly MG_ATTR_VEC_CELLS_SIZE: string;
|
|
2673
|
+
static readonly MG_ATTR_VEC_CELLS_ATTR: string;
|
|
2674
|
+
static readonly MG_ATTR_VEC_CELLS_CONTENT: string;
|
|
2675
|
+
static readonly MG_ATTR_NULLVALUE: string;
|
|
2676
|
+
static readonly MG_ATTR_NULLDISPLAY: string;
|
|
2677
|
+
static readonly MG_ATTR_NULLDEFAULT: string;
|
|
2678
|
+
static readonly MG_ATTR_DB_MODIFIABLE: string;
|
|
2679
|
+
static readonly MG_ATTR_DEFAULTVALUE: string;
|
|
2680
|
+
static readonly MG_ATTR_NULLALLOWED: string;
|
|
2681
|
+
static readonly MG_ATTR_BLOB_CONTENT: string;
|
|
2682
|
+
static readonly MG_ATTR_PART_OF_DATAVIEW: string;
|
|
2683
|
+
static readonly MG_ATTR_DATA_TYPE: string;
|
|
2684
|
+
static readonly MG_ATTR_DATA_CTRL: string;
|
|
2685
|
+
static readonly MG_ATTR_LINKED_PARENT: string;
|
|
2686
|
+
static readonly MG_ATTR_CONTAINER: string;
|
|
2687
|
+
static readonly MG_ATTR_IS_FRAMESET: string;
|
|
2688
|
+
static readonly MG_ATTR_IS_LIGAL_RC_FORM: string;
|
|
2689
|
+
static readonly MG_ATTR_USERSTATE_ID: string;
|
|
2690
|
+
static readonly MG_ATTR_PB_IMAGES_NUMBER: string;
|
|
2691
|
+
static readonly MG_ATTR_FORM_ISN: string;
|
|
2692
|
+
static readonly MG_ATTR_TASKID: string;
|
|
2693
|
+
static readonly MG_ATTR_IS_MODAL: string;
|
|
2694
|
+
static readonly MG_ATTR_TASK_IS_SERIALIZATION_PARTIAL: string;
|
|
2695
|
+
static readonly MG_ATTR_XML_TRUE: string;
|
|
2696
|
+
static readonly MG_ATTR_XML_FALSE: string;
|
|
2697
|
+
static readonly MG_ATTR_TOOLKIT_PARENT_TASK: string;
|
|
2698
|
+
static readonly MG_ATTR_CTL_IDX: string;
|
|
2699
|
+
static readonly MG_ATTR_MAINPRG: string;
|
|
2700
|
+
static readonly MG_ATTR_NULL_ARITHMETIC: string;
|
|
2701
|
+
static readonly MG_ATTR_INTERACTIVE: string;
|
|
2702
|
+
static readonly MG_ATTR_IS_OFFLINE: string;
|
|
2703
|
+
static readonly MG_ATTR_RETURN_VALUE_EXP: string;
|
|
2704
|
+
static readonly MG_ATTR_PARALLEL: string;
|
|
2705
|
+
static readonly MG_ATTR_OPEN_WIN: string;
|
|
2706
|
+
static readonly MG_ATTR_ALLOW_EVENTS: string;
|
|
2707
|
+
static readonly MG_ATTR_ISPRG: string;
|
|
2708
|
+
static readonly MG_ATTR_APPL_GUID: string;
|
|
2709
|
+
static readonly MG_ATTR_PROGRAM_ISN: string;
|
|
2710
|
+
static readonly MG_ATTR_TASK_ISN: string;
|
|
2711
|
+
static readonly MG_ATTR_ROUTER_PATH: string;
|
|
2712
|
+
static readonly MG_ATTR_DEF_ROUTER_NAME: string;
|
|
2713
|
+
static readonly MG_ATTR_IN_DEFAULT_ROUTER_OUTLET: string;
|
|
2714
|
+
static readonly MG_ATTR_EXPAND: string;
|
|
2715
|
+
static readonly MG_ATTR_EXP: string;
|
|
2716
|
+
static readonly MG_ATTR_SUBFORM_EXP: string;
|
|
2717
|
+
static readonly MG_ATTR_ERROR_EXP: string;
|
|
2718
|
+
static readonly MG_ATTR_ERROR: string;
|
|
2719
|
+
static readonly MG_ATTR_IS_GENERIC: string;
|
|
2720
|
+
static readonly MG_ATTR_HASHCODE: string;
|
|
2721
|
+
static readonly MG_ATTR_PICTURE: string;
|
|
2722
|
+
static readonly MG_ATTR_STORAGE: string;
|
|
2723
|
+
static readonly MG_ATTR_DITIDX: string;
|
|
2724
|
+
static readonly MG_ATTR_ICON_FILE_NAME: string;
|
|
2725
|
+
static readonly MG_ATTR_SYS_CONTEXT_MENU: string;
|
|
2726
|
+
static readonly MG_TAG_FLDH: string;
|
|
2727
|
+
static readonly MG_TAG_DVHEADER: string;
|
|
2728
|
+
static readonly MG_ATTR_MENUS_FILE_NAME: string;
|
|
2729
|
+
static readonly MG_ATTR_MENU_CONTENT: string;
|
|
2730
|
+
static readonly MG_ATTR_SORT_BY_RECENTLY_USED: string;
|
|
2731
|
+
static readonly MG_ATTR_CONTROL_Z_ORDER: string;
|
|
2732
|
+
static readonly MG_TAG_PROP: string;
|
|
2733
|
+
static readonly MG_TAG_CONTROL: string;
|
|
2734
|
+
static readonly MG_TAG_FORM: string;
|
|
2735
|
+
static readonly MG_TAG_FORM_PROPERTIES: string;
|
|
2736
|
+
static readonly MG_TAG_FORMS: string;
|
|
2737
|
+
static readonly MG_TAG_TREE: string;
|
|
2738
|
+
static readonly MG_TAG_NODE: string;
|
|
2739
|
+
static readonly MG_TAG_FLD: string;
|
|
2740
|
+
static readonly MG_ATTR_CHILDREN_RETRIEVED: string;
|
|
2741
|
+
static readonly MG_TAG_HELPTABLE: string;
|
|
2742
|
+
static readonly MG_TAG_HELPITEM: string;
|
|
2743
|
+
static readonly MG_ATTR_FULLNAME: string;
|
|
2744
|
+
static readonly MG_ATTR_ISSPECIFIC: string;
|
|
2745
|
+
static readonly MG_ATTR_IS_GUI_THREAD_EXECUTION: string;
|
|
2746
|
+
static readonly MG_TAG_TASKDEFINITIONID_ENTRY: string;
|
|
2747
|
+
static readonly MG_TAG_OBJECT_REFERENCE: string;
|
|
2748
|
+
static readonly MG_ATTR_HLP_TYP_TOOLTIP: string;
|
|
2749
|
+
static readonly MG_ATTR_HLP_TYP_PROMPT: string;
|
|
2750
|
+
static readonly MG_ATTR_HLP_TYP_URL: string;
|
|
2751
|
+
static readonly MG_ATTR_HLP_TYP_INTERNAL: string;
|
|
2752
|
+
static readonly MG_ATTR_HLP_TYP_WINDOWS: string;
|
|
2753
|
+
static readonly MG_ATTR_INTERNAL_HELP_TYPE: string;
|
|
2754
|
+
static readonly MG_ATTR_INTERNAL_HELP_NAME: string;
|
|
2755
|
+
static readonly MG_ATTR_INTERNAL_HELP_FRAMEX: string;
|
|
2756
|
+
static readonly MG_ATTR_INTERNAL_HELP_FRAMEY: string;
|
|
2757
|
+
static readonly MG_ATTR_INTERNAL_HELP_FRAMEDX: string;
|
|
2758
|
+
static readonly MG_ATTR_INTERNAL_HELP_FRAMEDY: string;
|
|
2759
|
+
static readonly MG_ATTR_INTERNAL_HELP_SIZEDX: string;
|
|
2760
|
+
static readonly MG_ATTR_INTERNAL_HELP_SIZEDY: string;
|
|
2761
|
+
static readonly MG_ATTR_INTERNAL_HELP_FACTORX: string;
|
|
2762
|
+
static readonly MG_ATTR_INTERNAL_HELP_FACTORY: string;
|
|
2763
|
+
static readonly MG_ATTR_INTERNAL_HELP_BORDERSTYLE: string;
|
|
2764
|
+
static readonly MG_ATTR_INTERNAL_TITLE_BAR: string;
|
|
2765
|
+
static readonly MG_ATTR_INTERNAL_HELP_SYSTEM_MENU: string;
|
|
2766
|
+
static readonly MG_ATTR_INTERNAL_HELP_FONT_TABLE_INDEX: string;
|
|
2767
|
+
static readonly MG_ATTR_WINDOWS_HELP_FILE: string;
|
|
2768
|
+
static readonly MG_ATTR_WINDOWS_HELP_COMMAND: string;
|
|
2769
|
+
static readonly MG_ATTR_WINDOWS_HELP_KEY: string;
|
|
2770
|
+
static readonly MG_TAG_PRINT_DATA: string;
|
|
2771
|
+
static readonly MG_TAG_PRINT_DATA_END: string;
|
|
2772
|
+
static readonly MG_TAG_RECORD: string;
|
|
2773
|
+
static readonly MG_TAG_RECORD_END: string;
|
|
2774
|
+
static readonly MG_TAG_CUSTOM_VALIDATORS: string;
|
|
2775
|
+
static readonly MG_TAG_CUSTOM_VALIDATORS_END: string;
|
|
2776
|
+
static readonly MG_TAG_CUSTOM_VALIDATOR: string;
|
|
2777
|
+
static readonly ERROR_LOG_TIME_FORMAT: string;
|
|
2778
|
+
static readonly ERROR_LOG_DATE_FORMAT: string;
|
|
2779
|
+
static readonly HTTP_ERROR_TIME_FORMAT: string;
|
|
2780
|
+
static readonly CACHED_DATE_TIME_FORMAT: string;
|
|
2781
|
+
static readonly MG_TAG_WS_READ_REQUEST: string;
|
|
2782
|
+
static readonly MG_TAG_WS_CREATE_REQUEST: string;
|
|
2783
|
+
static readonly MG_TAG_WS_CREATE_REQUEST_END: string;
|
|
2784
|
+
static readonly MG_TAG_WS_UPDATE_REQUEST: string;
|
|
2785
|
+
static readonly MG_TAG_WS_UPDATE_REQUEST_END: string;
|
|
2786
|
+
static readonly MG_TAG_WS_DELETE_REQUEST: string;
|
|
2787
|
+
static readonly MG_TAG_WS_DELETE_REQUEST_END: string;
|
|
2788
|
+
static readonly MG_TAG_WS_MANIPULATE_REQUEST: string;
|
|
2789
|
+
static readonly MG_TAG_WS_MANIPULATE_REQUEST_END: string;
|
|
2790
|
+
static readonly MG_TAG_WS_DATABASE: string;
|
|
2791
|
+
static readonly MG_TAG_WS_DATASOURCE: string;
|
|
2792
|
+
static readonly MG_TAG_WS_COLUMNS: string;
|
|
2793
|
+
static readonly MG_TAG_WS_COLUMN: string;
|
|
2794
|
+
static readonly MG_TAG_WS_RANGES: string;
|
|
2795
|
+
static readonly MG_TAG_WS_RANGES_END: string;
|
|
2796
|
+
static readonly MG_TAG_WS_MIN: string;
|
|
2797
|
+
static readonly MG_TAG_WS_MAX: string;
|
|
2798
|
+
static readonly MG_TAG_WS_RECORD: string;
|
|
2799
|
+
static readonly MG_TAG_WS_RECORD_END: string;
|
|
2800
|
+
static readonly MG_TAG_WS_WHERE: string;
|
|
2801
|
+
static readonly MG_TAG_WS_WHERE_END: string;
|
|
2802
|
+
static readonly MG_TAG_WS_RESPONSE: string;
|
|
2803
|
+
static readonly MG_TAG_WS_ERROR: string;
|
|
2804
|
+
static readonly MG_TAG_WS_ERROR_CODE: string;
|
|
2805
|
+
static readonly MG_TAG_WS_DESCRIPTION: string;
|
|
2806
|
+
static readonly MG_TAG_MENUS_OPEN: string;
|
|
2807
|
+
static readonly MG_TAG_MENUS_CLOSE: string;
|
|
2808
|
+
static readonly MG_TAG_MENU: string;
|
|
2809
|
+
static readonly MG_MAINPRG_CTL_PATH = "MainPrgCtlPath";
|
|
2810
|
+
constructor();
|
|
2811
|
+
}
|
|
2812
|
+
|
|
2813
|
+
declare class XmlParser {
|
|
2814
|
+
private static endOfNameChar;
|
|
2815
|
+
private _currIndex;
|
|
2816
|
+
private _xmLdata;
|
|
2817
|
+
private _history;
|
|
2818
|
+
constructor(data?: string);
|
|
2819
|
+
static getTokens(str: string, delimiter: string, isMagicXML?: boolean): List<string>;
|
|
2820
|
+
static unescape(str: string): string;
|
|
2821
|
+
static escape(str: string): string;
|
|
2822
|
+
static escapeUrl(str: string): string;
|
|
2823
|
+
getNextTag(): string;
|
|
2824
|
+
getXMLsubstring(endContext: number): string;
|
|
2825
|
+
GetCurrentElementValue(): string;
|
|
2826
|
+
setCurrIndex2EndOfTag(): void;
|
|
2827
|
+
static getInt(valueStr: string): number;
|
|
2828
|
+
static getBoolean(valueStr: string): boolean;
|
|
2829
|
+
getCurrIndex(): number;
|
|
2830
|
+
getXMLdata(): string;
|
|
2831
|
+
add2CurrIndex(add: number): void;
|
|
2832
|
+
setCurrIndex(index: number): void;
|
|
2833
|
+
setXMLdata(data: string): void;
|
|
2834
|
+
PrepareFormReadString(newXmlString: string): void;
|
|
2835
|
+
push(): void;
|
|
2836
|
+
pop(): void;
|
|
2837
|
+
loadTableCacheData(data: string): void;
|
|
2838
|
+
ReadToEndOfCurrentElement(): string;
|
|
2839
|
+
ReadContentOfCurrentElement(): string;
|
|
2840
|
+
toString(): string;
|
|
2841
|
+
toString(headCharCount: number, tailCharCount: number): string;
|
|
2842
|
+
private ToString_0;
|
|
2843
|
+
private ToString_1;
|
|
2844
|
+
SkipXMLElement(): void;
|
|
2845
|
+
}
|
|
2846
|
+
|
|
2847
|
+
export { APGDisplayMode, APGFormSize, APGInvokedFrom, APGMode, APGOption, APGType, Access, AlignmentTypeHori, AlignmentTypeVert, AllowedDirectionType, Area, AutoFit, Axis, Base64, BindingLevel, BlobContent, BlockTypes, BorderType, BottomPositionInterval, BoxDir, BrkLevel, BrkScope, BrkType, CacheStrategy, CallComOption, CallOperationMode, CallOsShow, CallUDPType, CallUdpConvention, CallWsStyle, CallbackType, CharacterSet, CheckExist, CheckboxMainStyle, ChoiceControlStyle, ChoiceUtils, ColumnUpdateStyle, CompTypes, ComponentItemType, Constants, ControlStyle, CtrlButtonType, CtrlButtonTypeGui, CtrlHotspotType, CtrlImageStyle, CtrlLineDirection, CtrlLineType, CtrlOleDisplayType, CtrlOleStoreType, CtrlTextType, DBHCache, DBHRowIdentifier, DataTranslation, DataViewHeaderType, DataViewOperationType, DataViewOutputType, DatabaseDataType, DatabaseDefinitionType, DatabaseFilters, DatabaseOperations, DataviewType, DateTimeUtils, DateUtil, DbDelUpdMode, DbOpen, DbShare, DbhKeyDirection, DbhKeyIndexType, DbhKeyMode, DbhKeyRangeMode, DbhSegmentDirection, DefaultMsgDetails, DisplayTextType, DitAttribute, DitType, DriverDB, DspInterface, EndMode, EngineDirect, EnterAnimation, ErrStrategy, ErrorClassific, ExeState, ExecOn, ExitAnimation, ExportType, FieldComAlloc, FieldComType, FieldViewModelType, FldStorage, FldStyle, FlowDirection, FlwMode, ForceExit, FormDelimiter, FormExpandType, FormOperationType, FormPage, FrameLayoutTypes, GradientStyle, HTML_2_STR, HelpCommand, HelpType, HtmlAlignmentType, HttpStatusCode, ImageEffects, InitialMode, InternalInterface, ItemMasks, JSON_Utils, KeyMode, KeyboardReturnKeys, KeyboardTypes, LDir, LineDirection, LineManipulationType, ListboxSelectionMode, LnkEval_Cond, LnkMode, LoadedValues, LockingStrategy, LogType, Logger, Logger_LogLevels, Logger_MessageDirection, LogicHeaderAction, LogicHeaderType, LogicLevel, LogicOperationType, LogicUnit, MagicProperties, MediaAccess, MediaFormat, MediaOrientation, MediaType, MgControlType, MgModelType, Misc, ModelAttGuiFrame, ModelAttMerge, ModelAttRichClientFrameSet, ModelAttrBrowser, ModelAttrField, ModelAttrFramesetForm, ModelAttrGui0, ModelAttrGui1, ModelAttrHelp, ModelAttrRichClient, ModelAttrText, ModelClass, MsgInterface, NotifyCollectionChangedAction, NullArithmetic, OSEnvironment, OSType, OpenEditDialog, Opr, Order, OrientationLock, PICInterface, PaperSize, PaperSizePdfDisabled, PaperSizePdfEnabled, PositionUsage, PrgExecPlace, Priority, Queue, RaiseAt, Randomizer, RangeMode, RbAppearance, Recursion, RemarkType, RequestInfo, Resident, RowType, Rtf, Rtf_ACTN, Rtf_ErrorRtf, Rtf_IDEST, Rtf_IPFN, Rtf_IPROP, Rtf_KWD, Rtf_PROP, Rtf_PROPTYPE, Rtf_RDS, Rtf_RIS, Rtf_RtfChar, Rtf_SYMBOL, SEQ_2_HTML, SEQ_2_STR, ScrollBarThumbType, SelprgMode, SideType, SliderType, SourceContextType, SplitPrimaryDisplay, SplitWindowType, StartupMode, Storage, StorageAttribute, StorageAttributeCheck, StorageAttributeType, StrUtil, SubformType, SyncExecutionHelper, TabControlTabsWidth, TabbingCycleType, TabbingOrderType, TableBehaviour, TableType, TaskFlow, TransBegin, TransMode, TriggerType, TrueFalseValues, UndoRedoAction, UniqueTskSort, UpdateMode, UseSQLCursor, UtilDateJpn, UtilImeJpn, UtilStrByteMode, ValType, VeeDiffUpdate, VeeMode, VeePartOfDataview, VerifyButtons, VerifyDisplay, VerifyImage, VerifyMode, ViewRefreshMode, ViewSelectType, WinCptn, WinHtmlType, WinUom, WindowPosition, WindowType, XMLConstants, XmlParser, YesNoValues };
|