@magic-xpa/utils 4.800.0-dev480.95 → 4.800.1
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/bundles/magic-xpa-utils.umd.js +215 -5
- package/bundles/magic-xpa-utils.umd.js.map +1 -1
- package/bundles/magic-xpa-utils.umd.min.js +1 -1
- package/bundles/magic-xpa-utils.umd.min.js.map +1 -1
- package/esm2015/src/InternalInterface.js +3 -3
- package/fesm2015/magic-xpa-utils.js +2 -2
- package/fesm2015/magic-xpa-utils.js.map +1 -1
- package/package.json +2 -2
- package/src/InternalInterface.d.ts +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
2
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@magic-xpa/mscorelib'), require('util'), require('xml2js')) :
|
|
3
3
|
typeof define === 'function' && define.amd ? define('@magic-xpa/utils', ['exports', '@magic-xpa/mscorelib', 'util', 'xml2js'], factory) :
|
|
4
|
-
(global = global || self, factory((global[
|
|
5
|
-
}(this, (function (exports, mscorelib, util, xml2js) { 'use strict';
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global["magic-xpa"] = global["magic-xpa"] || {}, global["magic-xpa"].utils = {}), global.mscorelib, global.util, global.xml2js));
|
|
5
|
+
})(this, (function (exports, mscorelib, util, xml2js) { 'use strict';
|
|
6
6
|
|
|
7
7
|
var UtilStrByteMode = /** @class */ (function () {
|
|
8
8
|
function UtilStrByteMode() {
|
|
@@ -333,23 +333,27 @@
|
|
|
333
333
|
}
|
|
334
334
|
return Rtf_StackSave;
|
|
335
335
|
}());
|
|
336
|
+
exports.Rtf_KWD = void 0;
|
|
336
337
|
(function (Rtf_KWD) {
|
|
337
338
|
Rtf_KWD[Rtf_KWD["CHAR"] = 0] = "CHAR";
|
|
338
339
|
Rtf_KWD[Rtf_KWD["DEST"] = 1] = "DEST";
|
|
339
340
|
Rtf_KWD[Rtf_KWD["PROP"] = 2] = "PROP";
|
|
340
341
|
Rtf_KWD[Rtf_KWD["SPEC"] = 3] = "SPEC";
|
|
341
342
|
})(exports.Rtf_KWD || (exports.Rtf_KWD = {}));
|
|
343
|
+
exports.Rtf_PROPTYPE = void 0;
|
|
342
344
|
(function (Rtf_PROPTYPE) {
|
|
343
345
|
Rtf_PROPTYPE[Rtf_PROPTYPE["CHP"] = 0] = "CHP";
|
|
344
346
|
Rtf_PROPTYPE[Rtf_PROPTYPE["PAP"] = 1] = "PAP";
|
|
345
347
|
Rtf_PROPTYPE[Rtf_PROPTYPE["SEP"] = 2] = "SEP";
|
|
346
348
|
Rtf_PROPTYPE[Rtf_PROPTYPE["DOP"] = 3] = "DOP";
|
|
347
349
|
})(exports.Rtf_PROPTYPE || (exports.Rtf_PROPTYPE = {}));
|
|
350
|
+
exports.Rtf_ACTN = void 0;
|
|
348
351
|
(function (Rtf_ACTN) {
|
|
349
352
|
Rtf_ACTN[Rtf_ACTN["SPEC"] = 0] = "SPEC";
|
|
350
353
|
Rtf_ACTN[Rtf_ACTN["BYTE"] = 1] = "BYTE";
|
|
351
354
|
Rtf_ACTN[Rtf_ACTN["WORD"] = 2] = "WORD";
|
|
352
355
|
})(exports.Rtf_ACTN || (exports.Rtf_ACTN = {}));
|
|
356
|
+
exports.Rtf_IPFN = void 0;
|
|
353
357
|
(function (Rtf_IPFN) {
|
|
354
358
|
Rtf_IPFN[Rtf_IPFN["BIN"] = 0] = "BIN";
|
|
355
359
|
Rtf_IPFN[Rtf_IPFN["HEX"] = 1] = "HEX";
|
|
@@ -360,11 +364,13 @@
|
|
|
360
364
|
Rtf_IPFN[Rtf_IPFN["CHARSET"] = 6] = "CHARSET";
|
|
361
365
|
Rtf_IPFN[Rtf_IPFN["UNICODE"] = 7] = "UNICODE";
|
|
362
366
|
})(exports.Rtf_IPFN || (exports.Rtf_IPFN = {}));
|
|
367
|
+
exports.Rtf_IDEST = void 0;
|
|
363
368
|
(function (Rtf_IDEST) {
|
|
364
369
|
Rtf_IDEST[Rtf_IDEST["PICT"] = 0] = "PICT";
|
|
365
370
|
Rtf_IDEST[Rtf_IDEST["COLOR"] = 1] = "COLOR";
|
|
366
371
|
Rtf_IDEST[Rtf_IDEST["SKIP"] = 2] = "SKIP";
|
|
367
372
|
})(exports.Rtf_IDEST || (exports.Rtf_IDEST = {}));
|
|
373
|
+
exports.Rtf_IPROP = void 0;
|
|
368
374
|
(function (Rtf_IPROP) {
|
|
369
375
|
Rtf_IPROP[Rtf_IPROP["BOLD"] = 0] = "BOLD";
|
|
370
376
|
Rtf_IPROP[Rtf_IPROP["ITALIC"] = 1] = "ITALIC";
|
|
@@ -400,12 +406,14 @@
|
|
|
400
406
|
Rtf_IPROP[Rtf_IPROP["XA_BULLET"] = 31] = "XA_BULLET";
|
|
401
407
|
Rtf_IPROP[Rtf_IPROP["MAX"] = 32] = "MAX";
|
|
402
408
|
})(exports.Rtf_IPROP || (exports.Rtf_IPROP = {}));
|
|
409
|
+
exports.Rtf_RDS = void 0;
|
|
403
410
|
(function (Rtf_RDS) {
|
|
404
411
|
Rtf_RDS[Rtf_RDS["NORM"] = 0] = "NORM";
|
|
405
412
|
Rtf_RDS[Rtf_RDS["COLOR"] = 1] = "COLOR";
|
|
406
413
|
Rtf_RDS[Rtf_RDS["SKIP"] = 2] = "SKIP";
|
|
407
414
|
Rtf_RDS[Rtf_RDS["NEW"] = 3] = "NEW";
|
|
408
415
|
})(exports.Rtf_RDS || (exports.Rtf_RDS = {}));
|
|
416
|
+
exports.Rtf_ErrorRtf = void 0;
|
|
409
417
|
(function (Rtf_ErrorRtf) {
|
|
410
418
|
Rtf_ErrorRtf[Rtf_ErrorRtf["OK"] = 0] = "OK";
|
|
411
419
|
Rtf_ErrorRtf[Rtf_ErrorRtf["STACK_UNDERFLOW"] = 1] = "STACK_UNDERFLOW";
|
|
@@ -434,6 +442,7 @@
|
|
|
434
442
|
Rtf_RtfChar.OPENINGBRACE = '{';
|
|
435
443
|
Rtf_RtfChar.CLOSINGBRACE = '}';
|
|
436
444
|
Rtf_RtfChar.BACKSLASH = '\\';
|
|
445
|
+
exports.Rtf_RIS = void 0;
|
|
437
446
|
(function (Rtf_RIS) {
|
|
438
447
|
Rtf_RIS[Rtf_RIS["NORM"] = 0] = "NORM";
|
|
439
448
|
Rtf_RIS[Rtf_RIS["BIN"] = 1] = "BIN";
|
|
@@ -2139,10 +2148,12 @@
|
|
|
2139
2148
|
DateUtil._localMonths = new Array(13);
|
|
2140
2149
|
DateUtil._localDays = new Array(8);
|
|
2141
2150
|
|
|
2151
|
+
exports.Logger_MessageDirection = void 0;
|
|
2142
2152
|
(function (Logger_MessageDirection) {
|
|
2143
2153
|
Logger_MessageDirection[Logger_MessageDirection["MessageLeaving"] = 0] = "MessageLeaving";
|
|
2144
2154
|
Logger_MessageDirection[Logger_MessageDirection["MessageEntering"] = 1] = "MessageEntering";
|
|
2145
2155
|
})(exports.Logger_MessageDirection || (exports.Logger_MessageDirection = {}));
|
|
2156
|
+
exports.Logger_LogLevels = void 0;
|
|
2146
2157
|
(function (Logger_LogLevels) {
|
|
2147
2158
|
Logger_LogLevels[Logger_LogLevels["None"] = 0] = "None";
|
|
2148
2159
|
Logger_LogLevels[Logger_LogLevels["RequestInfo"] = 1] = "RequestInfo";
|
|
@@ -2153,18 +2164,22 @@
|
|
|
2153
2164
|
Logger_LogLevels[Logger_LogLevels["Development"] = 6] = "Development";
|
|
2154
2165
|
Logger_LogLevels[Logger_LogLevels["Basic"] = 7] = "Basic";
|
|
2155
2166
|
})(exports.Logger_LogLevels || (exports.Logger_LogLevels = {}));
|
|
2167
|
+
exports.Priority = void 0;
|
|
2156
2168
|
(function (Priority) {
|
|
2157
2169
|
Priority[Priority["LOWEST"] = 1] = "LOWEST";
|
|
2158
2170
|
Priority[Priority["LOW"] = 2] = "LOW";
|
|
2159
2171
|
Priority[Priority["HIGH"] = 3] = "HIGH";
|
|
2160
2172
|
})(exports.Priority || (exports.Priority = {}));
|
|
2173
|
+
exports.TableBehaviour = void 0;
|
|
2161
2174
|
(function (TableBehaviour) {
|
|
2162
2175
|
TableBehaviour[TableBehaviour["LimitedItems"] = 1] = "LimitedItems";
|
|
2163
2176
|
TableBehaviour[TableBehaviour["UnlimitedItems"] = 2] = "UnlimitedItems";
|
|
2164
2177
|
})(exports.TableBehaviour || (exports.TableBehaviour = {}));
|
|
2178
|
+
exports.HttpStatusCode = void 0;
|
|
2165
2179
|
(function (HttpStatusCode) {
|
|
2166
2180
|
HttpStatusCode[HttpStatusCode["Unused"] = 0] = "Unused";
|
|
2167
2181
|
})(exports.HttpStatusCode || (exports.HttpStatusCode = {}));
|
|
2182
|
+
exports.MgControlType = void 0;
|
|
2168
2183
|
(function (MgControlType) {
|
|
2169
2184
|
MgControlType["CTRL_TYPE_NONE"] = "0";
|
|
2170
2185
|
MgControlType["CTRL_TYPE_BUTTON"] = "B";
|
|
@@ -2189,6 +2204,7 @@
|
|
|
2189
2204
|
MgControlType["CTRL_TYPE_FRAME_FORM"] = "U";
|
|
2190
2205
|
MgControlType["CTRL_TYPE_LINE"] = "X";
|
|
2191
2206
|
})(exports.MgControlType || (exports.MgControlType = {}));
|
|
2207
|
+
exports.DitType = void 0;
|
|
2192
2208
|
(function (DitType) {
|
|
2193
2209
|
DitType[DitType["None"] = 1] = "None";
|
|
2194
2210
|
DitType[DitType["Edit"] = 2] = "Edit";
|
|
@@ -2217,11 +2233,13 @@
|
|
|
2217
2233
|
DitType[DitType["Browser"] = 25] = "Browser";
|
|
2218
2234
|
DitType[DitType["Opaque"] = 26] = "Opaque";
|
|
2219
2235
|
})(exports.DitType || (exports.DitType = {}));
|
|
2236
|
+
exports.BorderType = void 0;
|
|
2220
2237
|
(function (BorderType) {
|
|
2221
2238
|
BorderType[BorderType["Thin"] = 1] = "Thin";
|
|
2222
2239
|
BorderType[BorderType["Thick"] = 2] = "Thick";
|
|
2223
2240
|
BorderType[BorderType["NoBorder"] = 3] = "NoBorder";
|
|
2224
2241
|
})(exports.BorderType || (exports.BorderType = {}));
|
|
2242
|
+
exports.GradientStyle = void 0;
|
|
2225
2243
|
(function (GradientStyle) {
|
|
2226
2244
|
GradientStyle[GradientStyle["None"] = 1] = "None";
|
|
2227
2245
|
GradientStyle[GradientStyle["Horizontal"] = 2] = "Horizontal";
|
|
@@ -2240,25 +2258,30 @@
|
|
|
2240
2258
|
GradientStyle[GradientStyle["CornerBottomRight"] = 15] = "CornerBottomRight";
|
|
2241
2259
|
GradientStyle[GradientStyle["Center"] = 16] = "Center";
|
|
2242
2260
|
})(exports.GradientStyle || (exports.GradientStyle = {}));
|
|
2261
|
+
exports.AlignmentTypeHori = void 0;
|
|
2243
2262
|
(function (AlignmentTypeHori) {
|
|
2244
2263
|
AlignmentTypeHori[AlignmentTypeHori["Left"] = 1] = "Left";
|
|
2245
2264
|
AlignmentTypeHori[AlignmentTypeHori["Center"] = 2] = "Center";
|
|
2246
2265
|
AlignmentTypeHori[AlignmentTypeHori["Right"] = 3] = "Right";
|
|
2247
2266
|
})(exports.AlignmentTypeHori || (exports.AlignmentTypeHori = {}));
|
|
2267
|
+
exports.TabbingOrderType = void 0;
|
|
2248
2268
|
(function (TabbingOrderType) {
|
|
2249
2269
|
TabbingOrderType[TabbingOrderType["Automatically"] = 1] = "Automatically";
|
|
2250
2270
|
TabbingOrderType[TabbingOrderType["Manual"] = 2] = "Manual";
|
|
2251
2271
|
})(exports.TabbingOrderType || (exports.TabbingOrderType = {}));
|
|
2272
|
+
exports.AllowedDirectionType = void 0;
|
|
2252
2273
|
(function (AllowedDirectionType) {
|
|
2253
2274
|
AllowedDirectionType[AllowedDirectionType["Both"] = 1] = "Both";
|
|
2254
2275
|
AllowedDirectionType[AllowedDirectionType["Foreword"] = 2] = "Foreword";
|
|
2255
2276
|
AllowedDirectionType[AllowedDirectionType["Backward"] = 3] = "Backward";
|
|
2256
2277
|
})(exports.AllowedDirectionType || (exports.AllowedDirectionType = {}));
|
|
2278
|
+
exports.AlignmentTypeVert = void 0;
|
|
2257
2279
|
(function (AlignmentTypeVert) {
|
|
2258
2280
|
AlignmentTypeVert[AlignmentTypeVert["Top"] = 1] = "Top";
|
|
2259
2281
|
AlignmentTypeVert[AlignmentTypeVert["Center"] = 2] = "Center";
|
|
2260
2282
|
AlignmentTypeVert[AlignmentTypeVert["Bottom"] = 3] = "Bottom";
|
|
2261
2283
|
})(exports.AlignmentTypeVert || (exports.AlignmentTypeVert = {}));
|
|
2284
|
+
exports.HtmlAlignmentType = void 0;
|
|
2262
2285
|
(function (HtmlAlignmentType) {
|
|
2263
2286
|
HtmlAlignmentType[HtmlAlignmentType["TextVertTop"] = 1] = "TextVertTop";
|
|
2264
2287
|
HtmlAlignmentType[HtmlAlignmentType["TextVertCenter"] = 2] = "TextVertCenter";
|
|
@@ -2266,33 +2289,39 @@
|
|
|
2266
2289
|
HtmlAlignmentType[HtmlAlignmentType["TextHoriLeft"] = 4] = "TextHoriLeft";
|
|
2267
2290
|
HtmlAlignmentType[HtmlAlignmentType["TextHoriRight"] = 5] = "TextHoriRight";
|
|
2268
2291
|
})(exports.HtmlAlignmentType || (exports.HtmlAlignmentType = {}));
|
|
2292
|
+
exports.SideType = void 0;
|
|
2269
2293
|
(function (SideType) {
|
|
2270
2294
|
SideType[SideType["Top"] = 1] = "Top";
|
|
2271
2295
|
SideType[SideType["Right"] = 2] = "Right";
|
|
2272
2296
|
SideType[SideType["Bottom"] = 3] = "Bottom";
|
|
2273
2297
|
SideType[SideType["Left"] = 4] = "Left";
|
|
2274
2298
|
})(exports.SideType || (exports.SideType = {}));
|
|
2299
|
+
exports.SelprgMode = void 0;
|
|
2275
2300
|
(function (SelprgMode) {
|
|
2276
2301
|
SelprgMode["Before"] = "B";
|
|
2277
2302
|
SelprgMode["After"] = "A";
|
|
2278
2303
|
SelprgMode["Prompt"] = "P";
|
|
2279
2304
|
})(exports.SelprgMode || (exports.SelprgMode = {}));
|
|
2305
|
+
exports.WinCptn = void 0;
|
|
2280
2306
|
(function (WinCptn) {
|
|
2281
2307
|
WinCptn[WinCptn["Half"] = 1] = "Half";
|
|
2282
2308
|
WinCptn[WinCptn["On"] = 2] = "On";
|
|
2283
2309
|
WinCptn[WinCptn["Off"] = 3] = "Off";
|
|
2284
2310
|
})(exports.WinCptn || (exports.WinCptn = {}));
|
|
2311
|
+
exports.WinHtmlType = void 0;
|
|
2285
2312
|
(function (WinHtmlType) {
|
|
2286
2313
|
WinHtmlType[WinHtmlType["Get"] = 1] = "Get";
|
|
2287
2314
|
WinHtmlType[WinHtmlType["Post"] = 2] = "Post";
|
|
2288
2315
|
WinHtmlType[WinHtmlType["Link"] = 3] = "Link";
|
|
2289
2316
|
})(exports.WinHtmlType || (exports.WinHtmlType = {}));
|
|
2317
|
+
exports.WinUom = void 0;
|
|
2290
2318
|
(function (WinUom) {
|
|
2291
2319
|
WinUom[WinUom["Dlg"] = 1] = "Dlg";
|
|
2292
2320
|
WinUom[WinUom["Mm"] = 2] = "Mm";
|
|
2293
2321
|
WinUom[WinUom["Inch"] = 3] = "Inch";
|
|
2294
2322
|
WinUom[WinUom["Pix"] = 4] = "Pix";
|
|
2295
2323
|
})(exports.WinUom || (exports.WinUom = {}));
|
|
2324
|
+
exports.ControlStyle = void 0;
|
|
2296
2325
|
(function (ControlStyle) {
|
|
2297
2326
|
ControlStyle[ControlStyle["TwoD"] = 1] = "TwoD";
|
|
2298
2327
|
ControlStyle[ControlStyle["ThreeD"] = 2] = "ThreeD";
|
|
@@ -2302,6 +2331,7 @@
|
|
|
2302
2331
|
ControlStyle[ControlStyle["Emboss"] = 6] = "Emboss";
|
|
2303
2332
|
ControlStyle[ControlStyle["NoBorder"] = 7] = "NoBorder";
|
|
2304
2333
|
})(exports.ControlStyle || (exports.ControlStyle = {}));
|
|
2334
|
+
exports.CtrlLineType = void 0;
|
|
2305
2335
|
(function (CtrlLineType) {
|
|
2306
2336
|
CtrlLineType[CtrlLineType["Normal"] = 1] = "Normal";
|
|
2307
2337
|
CtrlLineType[CtrlLineType["Dash"] = 2] = "Dash";
|
|
@@ -2309,30 +2339,36 @@
|
|
|
2309
2339
|
CtrlLineType[CtrlLineType["Dashdot"] = 4] = "Dashdot";
|
|
2310
2340
|
CtrlLineType[CtrlLineType["Dashdotdot"] = 5] = "Dashdotdot";
|
|
2311
2341
|
})(exports.CtrlLineType || (exports.CtrlLineType = {}));
|
|
2342
|
+
exports.CtrlTextType = void 0;
|
|
2312
2343
|
(function (CtrlTextType) {
|
|
2313
2344
|
CtrlTextType[CtrlTextType["Default"] = 1] = "Default";
|
|
2314
2345
|
CtrlTextType[CtrlTextType["Bullet"] = 2] = "Bullet";
|
|
2315
2346
|
CtrlTextType[CtrlTextType["Number"] = 3] = "Number";
|
|
2316
2347
|
})(exports.CtrlTextType || (exports.CtrlTextType = {}));
|
|
2348
|
+
exports.CtrlLineDirection = void 0;
|
|
2317
2349
|
(function (CtrlLineDirection) {
|
|
2318
2350
|
CtrlLineDirection[CtrlLineDirection["Asc"] = 1] = "Asc";
|
|
2319
2351
|
CtrlLineDirection[CtrlLineDirection["Des"] = 2] = "Des";
|
|
2320
2352
|
})(exports.CtrlLineDirection || (exports.CtrlLineDirection = {}));
|
|
2353
|
+
exports.CtrlOleDisplayType = void 0;
|
|
2321
2354
|
(function (CtrlOleDisplayType) {
|
|
2322
2355
|
CtrlOleDisplayType[CtrlOleDisplayType["Icon"] = 1] = "Icon";
|
|
2323
2356
|
CtrlOleDisplayType[CtrlOleDisplayType["Content"] = 2] = "Content";
|
|
2324
2357
|
CtrlOleDisplayType[CtrlOleDisplayType["Any"] = 3] = "Any";
|
|
2325
2358
|
})(exports.CtrlOleDisplayType || (exports.CtrlOleDisplayType = {}));
|
|
2359
|
+
exports.CtrlOleStoreType = void 0;
|
|
2326
2360
|
(function (CtrlOleStoreType) {
|
|
2327
2361
|
CtrlOleStoreType[CtrlOleStoreType["Link"] = 1] = "Link";
|
|
2328
2362
|
CtrlOleStoreType[CtrlOleStoreType["Embeded"] = 2] = "Embeded";
|
|
2329
2363
|
CtrlOleStoreType[CtrlOleStoreType["Any"] = 3] = "Any";
|
|
2330
2364
|
})(exports.CtrlOleStoreType || (exports.CtrlOleStoreType = {}));
|
|
2365
|
+
exports.CtrlButtonType = void 0;
|
|
2331
2366
|
(function (CtrlButtonType) {
|
|
2332
2367
|
CtrlButtonType[CtrlButtonType["Submit"] = 1] = "Submit";
|
|
2333
2368
|
CtrlButtonType[CtrlButtonType["Clear"] = 2] = "Clear";
|
|
2334
2369
|
CtrlButtonType[CtrlButtonType["Default"] = 3] = "Default";
|
|
2335
2370
|
})(exports.CtrlButtonType || (exports.CtrlButtonType = {}));
|
|
2371
|
+
exports.CtrlImageStyle = void 0;
|
|
2336
2372
|
(function (CtrlImageStyle) {
|
|
2337
2373
|
CtrlImageStyle[CtrlImageStyle["Tiled"] = 1] = "Tiled";
|
|
2338
2374
|
CtrlImageStyle[CtrlImageStyle["Copied"] = 2] = "Copied";
|
|
@@ -2340,23 +2376,27 @@
|
|
|
2340
2376
|
CtrlImageStyle[CtrlImageStyle["ScaleFill"] = 4] = "ScaleFill";
|
|
2341
2377
|
CtrlImageStyle[CtrlImageStyle["Distorted"] = 5] = "Distorted";
|
|
2342
2378
|
})(exports.CtrlImageStyle || (exports.CtrlImageStyle = {}));
|
|
2379
|
+
exports.TabControlTabsWidth = void 0;
|
|
2343
2380
|
(function (TabControlTabsWidth) {
|
|
2344
2381
|
TabControlTabsWidth[TabControlTabsWidth["FitToText"] = 1] = "FitToText";
|
|
2345
2382
|
TabControlTabsWidth[TabControlTabsWidth["Fixed"] = 2] = "Fixed";
|
|
2346
2383
|
TabControlTabsWidth[TabControlTabsWidth["FillToRight"] = 3] = "FillToRight";
|
|
2347
2384
|
TabControlTabsWidth[TabControlTabsWidth["FixedInLine"] = 4] = "FixedInLine";
|
|
2348
2385
|
})(exports.TabControlTabsWidth || (exports.TabControlTabsWidth = {}));
|
|
2386
|
+
exports.CheckboxMainStyle = void 0;
|
|
2349
2387
|
(function (CheckboxMainStyle) {
|
|
2350
2388
|
CheckboxMainStyle[CheckboxMainStyle["None"] = 0] = "None";
|
|
2351
2389
|
CheckboxMainStyle[CheckboxMainStyle["Box"] = 1] = "Box";
|
|
2352
2390
|
CheckboxMainStyle[CheckboxMainStyle["Button"] = 2] = "Button";
|
|
2353
2391
|
CheckboxMainStyle[CheckboxMainStyle["Switch"] = 3] = "Switch";
|
|
2354
2392
|
})(exports.CheckboxMainStyle || (exports.CheckboxMainStyle = {}));
|
|
2393
|
+
exports.RbAppearance = void 0;
|
|
2355
2394
|
(function (RbAppearance) {
|
|
2356
2395
|
RbAppearance[RbAppearance["None"] = 0] = "None";
|
|
2357
2396
|
RbAppearance[RbAppearance["Radio"] = 1] = "Radio";
|
|
2358
2397
|
RbAppearance[RbAppearance["Button"] = 2] = "Button";
|
|
2359
2398
|
})(exports.RbAppearance || (exports.RbAppearance = {}));
|
|
2399
|
+
exports.HelpCommand = void 0;
|
|
2360
2400
|
(function (HelpCommand) {
|
|
2361
2401
|
HelpCommand[HelpCommand["Context"] = 1] = "Context";
|
|
2362
2402
|
HelpCommand[HelpCommand["Contents"] = 2] = "Contents";
|
|
@@ -2368,11 +2408,13 @@
|
|
|
2368
2408
|
HelpCommand[HelpCommand["Helponhelp"] = 8] = "Helponhelp";
|
|
2369
2409
|
HelpCommand[HelpCommand["Quit"] = 9] = "Quit";
|
|
2370
2410
|
})(exports.HelpCommand || (exports.HelpCommand = {}));
|
|
2411
|
+
exports.FormExpandType = void 0;
|
|
2371
2412
|
(function (FormExpandType) {
|
|
2372
2413
|
FormExpandType[FormExpandType["None"] = 1] = "None";
|
|
2373
2414
|
FormExpandType[FormExpandType["OnePage"] = 2] = "OnePage";
|
|
2374
2415
|
FormExpandType[FormExpandType["MultiPage"] = 3] = "MultiPage";
|
|
2375
2416
|
})(exports.FormExpandType || (exports.FormExpandType = {}));
|
|
2417
|
+
exports.DitAttribute = void 0;
|
|
2376
2418
|
(function (DitAttribute) {
|
|
2377
2419
|
DitAttribute[DitAttribute["Alpha"] = 1] = "Alpha";
|
|
2378
2420
|
DitAttribute[DitAttribute["Unicode"] = 2] = "Unicode";
|
|
@@ -2383,6 +2425,7 @@
|
|
|
2383
2425
|
DitAttribute[DitAttribute["Memo"] = 7] = "Memo";
|
|
2384
2426
|
DitAttribute[DitAttribute["Blob"] = 8] = "Blob";
|
|
2385
2427
|
})(exports.DitAttribute || (exports.DitAttribute = {}));
|
|
2428
|
+
exports.DspInterface = void 0;
|
|
2386
2429
|
(function (DspInterface) {
|
|
2387
2430
|
DspInterface[DspInterface["Text"] = 1] = "Text";
|
|
2388
2431
|
DspInterface[DspInterface["Gui"] = 2] = "Gui";
|
|
@@ -2393,15 +2436,18 @@
|
|
|
2393
2436
|
DspInterface[DspInterface["Webonline"] = 7] = "Webonline";
|
|
2394
2437
|
DspInterface[DspInterface["Browser"] = 8] = "Browser";
|
|
2395
2438
|
})(exports.DspInterface || (exports.DspInterface = {}));
|
|
2439
|
+
exports.PrgExecPlace = void 0;
|
|
2396
2440
|
(function (PrgExecPlace) {
|
|
2397
2441
|
PrgExecPlace[PrgExecPlace["Before"] = 1] = "Before";
|
|
2398
2442
|
PrgExecPlace[PrgExecPlace["After"] = 2] = "After";
|
|
2399
2443
|
PrgExecPlace[PrgExecPlace["Prompt"] = 3] = "Prompt";
|
|
2400
2444
|
})(exports.PrgExecPlace || (exports.PrgExecPlace = {}));
|
|
2445
|
+
exports.SliderType = void 0;
|
|
2401
2446
|
(function (SliderType) {
|
|
2402
2447
|
SliderType[SliderType["Vertical"] = 1] = "Vertical";
|
|
2403
2448
|
SliderType[SliderType["Horizontal"] = 2] = "Horizontal";
|
|
2404
2449
|
})(exports.SliderType || (exports.SliderType = {}));
|
|
2450
|
+
exports.CtrlButtonTypeGui = void 0;
|
|
2405
2451
|
(function (CtrlButtonTypeGui) {
|
|
2406
2452
|
CtrlButtonTypeGui[CtrlButtonTypeGui["None"] = 0] = "None";
|
|
2407
2453
|
CtrlButtonTypeGui[CtrlButtonTypeGui["Push"] = 1] = "Push";
|
|
@@ -2409,6 +2455,7 @@
|
|
|
2409
2455
|
CtrlButtonTypeGui[CtrlButtonTypeGui["Hypertext"] = 3] = "Hypertext";
|
|
2410
2456
|
CtrlButtonTypeGui[CtrlButtonTypeGui["TextOnImage"] = 4] = "TextOnImage";
|
|
2411
2457
|
})(exports.CtrlButtonTypeGui || (exports.CtrlButtonTypeGui = {}));
|
|
2458
|
+
exports.ImageEffects = void 0;
|
|
2412
2459
|
(function (ImageEffects) {
|
|
2413
2460
|
ImageEffects[ImageEffects["Normal"] = 1] = "Normal";
|
|
2414
2461
|
ImageEffects[ImageEffects["WipeDown"] = 2] = "WipeDown";
|
|
@@ -2432,20 +2479,24 @@
|
|
|
2432
2479
|
ImageEffects[ImageEffects["SpiralIn3"] = 20] = "SpiralIn3";
|
|
2433
2480
|
ImageEffects[ImageEffects["SpiralOut4"] = 21] = "SpiralOut4";
|
|
2434
2481
|
})(exports.ImageEffects || (exports.ImageEffects = {}));
|
|
2482
|
+
exports.CtrlHotspotType = void 0;
|
|
2435
2483
|
(function (CtrlHotspotType) {
|
|
2436
2484
|
CtrlHotspotType[CtrlHotspotType["Square"] = 1] = "Square";
|
|
2437
2485
|
CtrlHotspotType[CtrlHotspotType["Circle"] = 2] = "Circle";
|
|
2438
2486
|
})(exports.CtrlHotspotType || (exports.CtrlHotspotType = {}));
|
|
2487
|
+
exports.SubformType = void 0;
|
|
2439
2488
|
(function (SubformType) {
|
|
2440
2489
|
SubformType[SubformType["Program"] = 1] = "Program";
|
|
2441
2490
|
SubformType[SubformType["Subtask"] = 2] = "Subtask";
|
|
2442
2491
|
SubformType[SubformType["Form"] = 3] = "Form";
|
|
2443
2492
|
SubformType[SubformType["None"] = 4] = "None";
|
|
2444
2493
|
})(exports.SubformType || (exports.SubformType = {}));
|
|
2494
|
+
exports.DatabaseDefinitionType = void 0;
|
|
2445
2495
|
(function (DatabaseDefinitionType) {
|
|
2446
2496
|
DatabaseDefinitionType[DatabaseDefinitionType["String"] = 1] = "String";
|
|
2447
2497
|
DatabaseDefinitionType[DatabaseDefinitionType["Normal"] = 2] = "Normal";
|
|
2448
2498
|
})(exports.DatabaseDefinitionType || (exports.DatabaseDefinitionType = {}));
|
|
2499
|
+
exports.DatabaseOperations = void 0;
|
|
2449
2500
|
(function (DatabaseOperations) {
|
|
2450
2501
|
DatabaseOperations[DatabaseOperations["Insert"] = 1] = "Insert";
|
|
2451
2502
|
DatabaseOperations[DatabaseOperations["Update"] = 2] = "Update";
|
|
@@ -2453,11 +2504,13 @@
|
|
|
2453
2504
|
DatabaseOperations[DatabaseOperations["Where"] = 4] = "Where";
|
|
2454
2505
|
DatabaseOperations[DatabaseOperations["None"] = 5] = "None";
|
|
2455
2506
|
})(exports.DatabaseOperations || (exports.DatabaseOperations = {}));
|
|
2507
|
+
exports.DataTranslation = void 0;
|
|
2456
2508
|
(function (DataTranslation) {
|
|
2457
2509
|
DataTranslation[DataTranslation["Ansi"] = 1] = "Ansi";
|
|
2458
2510
|
DataTranslation[DataTranslation["Oem"] = 2] = "Oem";
|
|
2459
2511
|
DataTranslation[DataTranslation["Unicode"] = 3] = "Unicode";
|
|
2460
2512
|
})(exports.DataTranslation || (exports.DataTranslation = {}));
|
|
2513
|
+
exports.WindowPosition = void 0;
|
|
2461
2514
|
(function (WindowPosition) {
|
|
2462
2515
|
WindowPosition[WindowPosition["Customized"] = 1] = "Customized";
|
|
2463
2516
|
WindowPosition[WindowPosition["DefaultBounds"] = 2] = "DefaultBounds";
|
|
@@ -2467,6 +2520,7 @@
|
|
|
2467
2520
|
WindowPosition[WindowPosition["DefaultLocation"] = 6] = "DefaultLocation";
|
|
2468
2521
|
WindowPosition[WindowPosition["CenteredToWindow"] = 7] = "CenteredToWindow";
|
|
2469
2522
|
})(exports.WindowPosition || (exports.WindowPosition = {}));
|
|
2523
|
+
exports.FldStyle = void 0;
|
|
2470
2524
|
(function (FldStyle) {
|
|
2471
2525
|
FldStyle[FldStyle["None"] = 1] = "None";
|
|
2472
2526
|
FldStyle[FldStyle["Activex"] = 2] = "Activex";
|
|
@@ -2474,19 +2528,23 @@
|
|
|
2474
2528
|
FldStyle[FldStyle["Vector"] = 4] = "Vector";
|
|
2475
2529
|
FldStyle[FldStyle["Dotnet"] = 5] = "Dotnet";
|
|
2476
2530
|
})(exports.FldStyle || (exports.FldStyle = {}));
|
|
2531
|
+
exports.FieldComType = void 0;
|
|
2477
2532
|
(function (FieldComType) {
|
|
2478
2533
|
FieldComType[FieldComType["Obj"] = 1] = "Obj";
|
|
2479
2534
|
FieldComType[FieldComType["Ref"] = 2] = "Ref";
|
|
2480
2535
|
})(exports.FieldComType || (exports.FieldComType = {}));
|
|
2536
|
+
exports.ListboxSelectionMode = void 0;
|
|
2481
2537
|
(function (ListboxSelectionMode) {
|
|
2482
2538
|
ListboxSelectionMode[ListboxSelectionMode["Single"] = 1] = "Single";
|
|
2483
2539
|
ListboxSelectionMode[ListboxSelectionMode["Multiple"] = 2] = "Multiple";
|
|
2484
2540
|
})(exports.ListboxSelectionMode || (exports.ListboxSelectionMode = {}));
|
|
2541
|
+
exports.SplitWindowType = void 0;
|
|
2485
2542
|
(function (SplitWindowType) {
|
|
2486
2543
|
SplitWindowType[SplitWindowType["None"] = 1] = "None";
|
|
2487
2544
|
SplitWindowType[SplitWindowType["Vertical"] = 2] = "Vertical";
|
|
2488
2545
|
SplitWindowType[SplitWindowType["Horizontal"] = 3] = "Horizontal";
|
|
2489
2546
|
})(exports.SplitWindowType || (exports.SplitWindowType = {}));
|
|
2547
|
+
exports.SplitPrimaryDisplay = void 0;
|
|
2490
2548
|
(function (SplitPrimaryDisplay) {
|
|
2491
2549
|
SplitPrimaryDisplay[SplitPrimaryDisplay["Default"] = 1] = "Default";
|
|
2492
2550
|
SplitPrimaryDisplay[SplitPrimaryDisplay["Left"] = 2] = "Left";
|
|
@@ -2494,11 +2552,13 @@
|
|
|
2494
2552
|
SplitPrimaryDisplay[SplitPrimaryDisplay["Top"] = 4] = "Top";
|
|
2495
2553
|
SplitPrimaryDisplay[SplitPrimaryDisplay["Bottom"] = 5] = "Bottom";
|
|
2496
2554
|
})(exports.SplitPrimaryDisplay || (exports.SplitPrimaryDisplay = {}));
|
|
2555
|
+
exports.AutoFit = void 0;
|
|
2497
2556
|
(function (AutoFit) {
|
|
2498
2557
|
AutoFit[AutoFit["None"] = 1] = "None";
|
|
2499
2558
|
AutoFit[AutoFit["AsControl"] = 2] = "AsControl";
|
|
2500
2559
|
AutoFit[AutoFit["AsCalledForm"] = 3] = "AsCalledForm";
|
|
2501
2560
|
})(exports.AutoFit || (exports.AutoFit = {}));
|
|
2561
|
+
exports.WindowType = void 0;
|
|
2502
2562
|
(function (WindowType) {
|
|
2503
2563
|
WindowType[WindowType["Default"] = 1] = "Default";
|
|
2504
2564
|
WindowType[WindowType["Sdi"] = 2] = "Sdi";
|
|
@@ -2515,35 +2575,42 @@
|
|
|
2515
2575
|
WindowType["LogonApplicationWindow"] = "a";
|
|
2516
2576
|
WindowType["TkDockChild"] = "b";
|
|
2517
2577
|
})(exports.WindowType || (exports.WindowType = {}));
|
|
2578
|
+
exports.StartupMode = void 0;
|
|
2518
2579
|
(function (StartupMode) {
|
|
2519
2580
|
StartupMode[StartupMode["Default"] = 1] = "Default";
|
|
2520
2581
|
StartupMode[StartupMode["Maximize"] = 2] = "Maximize";
|
|
2521
2582
|
StartupMode[StartupMode["Minimize"] = 3] = "Minimize";
|
|
2522
2583
|
})(exports.StartupMode || (exports.StartupMode = {}));
|
|
2584
|
+
exports.ColumnUpdateStyle = void 0;
|
|
2523
2585
|
(function (ColumnUpdateStyle) {
|
|
2524
2586
|
ColumnUpdateStyle[ColumnUpdateStyle["Absolute"] = 1] = "Absolute";
|
|
2525
2587
|
ColumnUpdateStyle[ColumnUpdateStyle["Differential"] = 2] = "Differential";
|
|
2526
2588
|
ColumnUpdateStyle[ColumnUpdateStyle["AsTable"] = 3] = "AsTable";
|
|
2527
2589
|
})(exports.ColumnUpdateStyle || (exports.ColumnUpdateStyle = {}));
|
|
2590
|
+
exports.CallUdpConvention = void 0;
|
|
2528
2591
|
(function (CallUdpConvention) {
|
|
2529
2592
|
CallUdpConvention["C"] = "C";
|
|
2530
2593
|
CallUdpConvention["Standard"] = "S";
|
|
2531
2594
|
CallUdpConvention["Fast"] = "F";
|
|
2532
2595
|
})(exports.CallUdpConvention || (exports.CallUdpConvention = {}));
|
|
2596
|
+
exports.CallUDPType = void 0;
|
|
2533
2597
|
(function (CallUDPType) {
|
|
2534
2598
|
CallUDPType["Background"] = "B";
|
|
2535
2599
|
CallUDPType["GUI"] = "G";
|
|
2536
2600
|
})(exports.CallUDPType || (exports.CallUDPType = {}));
|
|
2601
|
+
exports.VerifyMode = void 0;
|
|
2537
2602
|
(function (VerifyMode) {
|
|
2538
2603
|
VerifyMode["Error"] = "E";
|
|
2539
2604
|
VerifyMode["Warning"] = "W";
|
|
2540
2605
|
VerifyMode["Revert"] = "R";
|
|
2541
2606
|
})(exports.VerifyMode || (exports.VerifyMode = {}));
|
|
2607
|
+
exports.VerifyDisplay = void 0;
|
|
2542
2608
|
(function (VerifyDisplay) {
|
|
2543
2609
|
VerifyDisplay["Box"] = "B";
|
|
2544
2610
|
VerifyDisplay["Status"] = "S";
|
|
2545
2611
|
VerifyDisplay["None"] = "N";
|
|
2546
2612
|
})(exports.VerifyDisplay || (exports.VerifyDisplay = {}));
|
|
2613
|
+
exports.VerifyImage = void 0;
|
|
2547
2614
|
(function (VerifyImage) {
|
|
2548
2615
|
VerifyImage["Exclamation"] = "E";
|
|
2549
2616
|
VerifyImage["Critical"] = "C";
|
|
@@ -2551,6 +2618,7 @@
|
|
|
2551
2618
|
VerifyImage["Information"] = "I";
|
|
2552
2619
|
VerifyImage["None"] = "N";
|
|
2553
2620
|
})(exports.VerifyImage || (exports.VerifyImage = {}));
|
|
2621
|
+
exports.VerifyButtons = void 0;
|
|
2554
2622
|
(function (VerifyButtons) {
|
|
2555
2623
|
VerifyButtons["Ok"] = "O";
|
|
2556
2624
|
VerifyButtons["OkCancel"] = "K";
|
|
@@ -2559,21 +2627,25 @@
|
|
|
2559
2627
|
VerifyButtons["YesNo"] = "N";
|
|
2560
2628
|
VerifyButtons["RetryCancel"] = "R";
|
|
2561
2629
|
})(exports.VerifyButtons || (exports.VerifyButtons = {}));
|
|
2630
|
+
exports.CallComOption = void 0;
|
|
2562
2631
|
(function (CallComOption) {
|
|
2563
2632
|
CallComOption[CallComOption["Method"] = 1] = "Method";
|
|
2564
2633
|
CallComOption[CallComOption["GetProp"] = 2] = "GetProp";
|
|
2565
2634
|
CallComOption[CallComOption["SetProp"] = 3] = "SetProp";
|
|
2566
2635
|
})(exports.CallComOption || (exports.CallComOption = {}));
|
|
2636
|
+
exports.CallWsStyle = void 0;
|
|
2567
2637
|
(function (CallWsStyle) {
|
|
2568
2638
|
CallWsStyle[CallWsStyle["Rpc"] = 1] = "Rpc";
|
|
2569
2639
|
CallWsStyle[CallWsStyle["Document"] = 2] = "Document";
|
|
2570
2640
|
})(exports.CallWsStyle || (exports.CallWsStyle = {}));
|
|
2641
|
+
exports.CallOsShow = void 0;
|
|
2571
2642
|
(function (CallOsShow) {
|
|
2572
2643
|
CallOsShow[CallOsShow["Hide"] = 1] = "Hide";
|
|
2573
2644
|
CallOsShow[CallOsShow["Normal"] = 2] = "Normal";
|
|
2574
2645
|
CallOsShow[CallOsShow["Maximize"] = 3] = "Maximize";
|
|
2575
2646
|
CallOsShow[CallOsShow["Minimize"] = 4] = "Minimize";
|
|
2576
2647
|
})(exports.CallOsShow || (exports.CallOsShow = {}));
|
|
2648
|
+
exports.LogicUnit = void 0;
|
|
2577
2649
|
(function (LogicUnit) {
|
|
2578
2650
|
LogicUnit[LogicUnit["Remark"] = 1] = "Remark";
|
|
2579
2651
|
LogicUnit[LogicUnit["Task"] = 2] = "Task";
|
|
@@ -2585,46 +2657,55 @@
|
|
|
2585
2657
|
LogicUnit[LogicUnit["Function"] = 8] = "Function";
|
|
2586
2658
|
LogicUnit[LogicUnit["SeqFlow"] = 9] = "SeqFlow";
|
|
2587
2659
|
})(exports.LogicUnit || (exports.LogicUnit = {}));
|
|
2660
|
+
exports.LogicLevel = void 0;
|
|
2588
2661
|
(function (LogicLevel) {
|
|
2589
2662
|
LogicLevel["Prefix"] = "P";
|
|
2590
2663
|
LogicLevel["Suffix"] = "S";
|
|
2591
2664
|
LogicLevel["Verification"] = "V";
|
|
2592
2665
|
LogicLevel["Change"] = "C";
|
|
2593
2666
|
})(exports.LogicLevel || (exports.LogicLevel = {}));
|
|
2667
|
+
exports.BrkScope = void 0;
|
|
2594
2668
|
(function (BrkScope) {
|
|
2595
2669
|
BrkScope["Task"] = "T";
|
|
2596
2670
|
BrkScope["Subtree"] = "S";
|
|
2597
2671
|
BrkScope["Global"] = "G";
|
|
2598
2672
|
})(exports.BrkScope || (exports.BrkScope = {}));
|
|
2673
|
+
exports.LDir = void 0;
|
|
2599
2674
|
(function (LDir) {
|
|
2600
2675
|
LDir["Default"] = "A";
|
|
2601
2676
|
LDir["Reversed"] = "D";
|
|
2602
2677
|
})(exports.LDir || (exports.LDir = {}));
|
|
2678
|
+
exports.Order = void 0;
|
|
2603
2679
|
(function (Order) {
|
|
2604
2680
|
Order["Ascending"] = "A";
|
|
2605
2681
|
Order["Descending"] = "D";
|
|
2606
2682
|
})(exports.Order || (exports.Order = {}));
|
|
2683
|
+
exports.LnkEval_Cond = void 0;
|
|
2607
2684
|
(function (LnkEval_Cond) {
|
|
2608
2685
|
LnkEval_Cond["Record"] = "R";
|
|
2609
2686
|
LnkEval_Cond["Task"] = "T";
|
|
2610
2687
|
})(exports.LnkEval_Cond || (exports.LnkEval_Cond = {}));
|
|
2688
|
+
exports.Access = void 0;
|
|
2611
2689
|
(function (Access) {
|
|
2612
2690
|
Access["NoAccess"] = " ";
|
|
2613
2691
|
Access["Read"] = "R";
|
|
2614
2692
|
Access["Write"] = "W";
|
|
2615
2693
|
})(exports.Access || (exports.Access = {}));
|
|
2694
|
+
exports.DbShare = void 0;
|
|
2616
2695
|
(function (DbShare) {
|
|
2617
2696
|
DbShare["NoShare"] = " ";
|
|
2618
2697
|
DbShare["Write"] = "W";
|
|
2619
2698
|
DbShare["Read"] = "R";
|
|
2620
2699
|
DbShare["None"] = "N";
|
|
2621
2700
|
})(exports.DbShare || (exports.DbShare = {}));
|
|
2701
|
+
exports.DbOpen = void 0;
|
|
2622
2702
|
(function (DbOpen) {
|
|
2623
2703
|
DbOpen["Normal"] = "N";
|
|
2624
2704
|
DbOpen["Fast"] = "F";
|
|
2625
2705
|
DbOpen["Damaged"] = "D";
|
|
2626
2706
|
DbOpen["Reindex"] = "R";
|
|
2627
2707
|
})(exports.DbOpen || (exports.DbOpen = {}));
|
|
2708
|
+
exports.DbDelUpdMode = void 0;
|
|
2628
2709
|
(function (DbDelUpdMode) {
|
|
2629
2710
|
DbDelUpdMode["Position"] = "P";
|
|
2630
2711
|
DbDelUpdMode["PositionAndSelectedFields"] = "S";
|
|
@@ -2632,10 +2713,12 @@
|
|
|
2632
2713
|
DbDelUpdMode["AsTable"] = "T";
|
|
2633
2714
|
DbDelUpdMode["None"] = "N";
|
|
2634
2715
|
})(exports.DbDelUpdMode || (exports.DbDelUpdMode = {}));
|
|
2716
|
+
exports.RaiseAt = void 0;
|
|
2635
2717
|
(function (RaiseAt) {
|
|
2636
2718
|
RaiseAt[RaiseAt["Container"] = 1] = "Container";
|
|
2637
2719
|
RaiseAt[RaiseAt["TaskInFocus"] = 2] = "TaskInFocus";
|
|
2638
2720
|
})(exports.RaiseAt || (exports.RaiseAt = {}));
|
|
2721
|
+
exports.EngineDirect = void 0;
|
|
2639
2722
|
(function (EngineDirect) {
|
|
2640
2723
|
EngineDirect["None"] = " ";
|
|
2641
2724
|
EngineDirect["AbortTask"] = "A";
|
|
@@ -2646,11 +2729,13 @@
|
|
|
2646
2729
|
EngineDirect["AsStrategy"] = "S";
|
|
2647
2730
|
EngineDirect["Continue"] = "C";
|
|
2648
2731
|
})(exports.EngineDirect || (exports.EngineDirect = {}));
|
|
2732
|
+
exports.FlowDirection = void 0;
|
|
2649
2733
|
(function (FlowDirection) {
|
|
2650
2734
|
FlowDirection["Forward"] = "F";
|
|
2651
2735
|
FlowDirection["Backward"] = "B";
|
|
2652
2736
|
FlowDirection["Combined"] = "C";
|
|
2653
2737
|
})(exports.FlowDirection || (exports.FlowDirection = {}));
|
|
2738
|
+
exports.FlwMode = void 0;
|
|
2654
2739
|
(function (FlwMode) {
|
|
2655
2740
|
FlwMode["Fast"] = "F";
|
|
2656
2741
|
FlwMode["Step"] = "S";
|
|
@@ -2658,16 +2743,19 @@
|
|
|
2658
2743
|
FlwMode["Before"] = "J";
|
|
2659
2744
|
FlwMode["After"] = "Z";
|
|
2660
2745
|
})(exports.FlwMode || (exports.FlwMode = {}));
|
|
2746
|
+
exports.BottomPositionInterval = void 0;
|
|
2661
2747
|
(function (BottomPositionInterval) {
|
|
2662
2748
|
BottomPositionInterval[BottomPositionInterval["NoneRowHeight"] = 1] = "NoneRowHeight";
|
|
2663
2749
|
BottomPositionInterval[BottomPositionInterval["RowHeight"] = 2] = "RowHeight";
|
|
2664
2750
|
})(exports.BottomPositionInterval || (exports.BottomPositionInterval = {}));
|
|
2751
|
+
exports.ExecOn = void 0;
|
|
2665
2752
|
(function (ExecOn) {
|
|
2666
2753
|
ExecOn[ExecOn["None"] = 0] = "None";
|
|
2667
2754
|
ExecOn[ExecOn["Optimized"] = 1] = "Optimized";
|
|
2668
2755
|
ExecOn[ExecOn["Client"] = 2] = "Client";
|
|
2669
2756
|
ExecOn[ExecOn["Server"] = 3] = "Server";
|
|
2670
2757
|
})(exports.ExecOn || (exports.ExecOn = {}));
|
|
2758
|
+
exports.Storage = void 0;
|
|
2671
2759
|
(function (Storage) {
|
|
2672
2760
|
Storage[Storage["AlphaString"] = 1] = "AlphaString";
|
|
2673
2761
|
Storage[Storage["AlphaLstring"] = 2] = "AlphaLstring";
|
|
@@ -2704,6 +2792,7 @@
|
|
|
2704
2792
|
Storage[Storage["AnsiBlob"] = 33] = "AnsiBlob";
|
|
2705
2793
|
Storage[Storage["UnicodeBlob"] = 34] = "UnicodeBlob";
|
|
2706
2794
|
})(exports.Storage || (exports.Storage = {}));
|
|
2795
|
+
exports.StorageAttributeType = void 0;
|
|
2707
2796
|
(function (StorageAttributeType) {
|
|
2708
2797
|
StorageAttributeType["Alpha"] = "A";
|
|
2709
2798
|
StorageAttributeType["Numeric"] = "N";
|
|
@@ -2720,6 +2809,7 @@
|
|
|
2720
2809
|
StorageAttributeType["BlobJava"] = "J";
|
|
2721
2810
|
StorageAttributeType["None"] = " ";
|
|
2722
2811
|
})(exports.StorageAttributeType || (exports.StorageAttributeType = {}));
|
|
2812
|
+
exports.BrkLevel = void 0;
|
|
2723
2813
|
(function (BrkLevel) {
|
|
2724
2814
|
BrkLevel["Task"] = "T";
|
|
2725
2815
|
BrkLevel["Group"] = "G";
|
|
@@ -2736,21 +2826,25 @@
|
|
|
2736
2826
|
BrkLevel["Event"] = "E";
|
|
2737
2827
|
BrkLevel["OPStatOnChange"] = "O";
|
|
2738
2828
|
})(exports.BrkLevel || (exports.BrkLevel = {}));
|
|
2829
|
+
exports.MediaOrientation = void 0;
|
|
2739
2830
|
(function (MediaOrientation) {
|
|
2740
2831
|
MediaOrientation["Portrait"] = "P";
|
|
2741
2832
|
MediaOrientation["Landscape"] = "L";
|
|
2742
2833
|
})(exports.MediaOrientation || (exports.MediaOrientation = {}));
|
|
2834
|
+
exports.MediaFormat = void 0;
|
|
2743
2835
|
(function (MediaFormat) {
|
|
2744
2836
|
MediaFormat["Page"] = "P";
|
|
2745
2837
|
MediaFormat["Line"] = "L";
|
|
2746
2838
|
MediaFormat["None"] = "N";
|
|
2747
2839
|
})(exports.MediaFormat || (exports.MediaFormat = {}));
|
|
2840
|
+
exports.CharacterSet = void 0;
|
|
2748
2841
|
(function (CharacterSet) {
|
|
2749
2842
|
CharacterSet[CharacterSet["Ansi"] = 0] = "Ansi";
|
|
2750
2843
|
CharacterSet[CharacterSet["Oem"] = 1] = "Oem";
|
|
2751
2844
|
CharacterSet[CharacterSet["Unicode"] = 3] = "Unicode";
|
|
2752
2845
|
CharacterSet[CharacterSet["Utf8"] = 4] = "Utf8";
|
|
2753
2846
|
})(exports.CharacterSet || (exports.CharacterSet = {}));
|
|
2847
|
+
exports.MediaAccess = void 0;
|
|
2754
2848
|
(function (MediaAccess) {
|
|
2755
2849
|
MediaAccess["Read"] = "R";
|
|
2756
2850
|
MediaAccess["Write"] = "W";
|
|
@@ -2759,6 +2853,7 @@
|
|
|
2759
2853
|
MediaAccess["AppendFlush"] = "F";
|
|
2760
2854
|
MediaAccess["Create"] = "C";
|
|
2761
2855
|
})(exports.MediaAccess || (exports.MediaAccess = {}));
|
|
2856
|
+
exports.PaperSize = void 0;
|
|
2762
2857
|
(function (PaperSize) {
|
|
2763
2858
|
PaperSize["Default"] = "D";
|
|
2764
2859
|
PaperSize["Letter"] = "L";
|
|
@@ -2791,6 +2886,7 @@
|
|
|
2791
2886
|
PaperSize["Envelope10"] = "0";
|
|
2792
2887
|
PaperSize["Envelope11"] = "1";
|
|
2793
2888
|
})(exports.PaperSize || (exports.PaperSize = {}));
|
|
2889
|
+
exports.PaperSizePdfDisabled = void 0;
|
|
2794
2890
|
(function (PaperSizePdfDisabled) {
|
|
2795
2891
|
PaperSizePdfDisabled["Default"] = "D";
|
|
2796
2892
|
PaperSizePdfDisabled["Letter"] = "L";
|
|
@@ -2809,6 +2905,7 @@
|
|
|
2809
2905
|
PaperSizePdfDisabled["B4"] = "B";
|
|
2810
2906
|
PaperSizePdfDisabled["B5_v"] = "V";
|
|
2811
2907
|
})(exports.PaperSizePdfDisabled || (exports.PaperSizePdfDisabled = {}));
|
|
2908
|
+
exports.PaperSizePdfEnabled = void 0;
|
|
2812
2909
|
(function (PaperSizePdfEnabled) {
|
|
2813
2910
|
PaperSizePdfEnabled["Default"] = "D";
|
|
2814
2911
|
PaperSizePdfEnabled["UserDefined"] = "U";
|
|
@@ -2832,6 +2929,7 @@
|
|
|
2832
2929
|
PaperSizePdfEnabled["Envelope10"] = "0";
|
|
2833
2930
|
PaperSizePdfEnabled["Envelope11"] = "1";
|
|
2834
2931
|
})(exports.PaperSizePdfEnabled || (exports.PaperSizePdfEnabled = {}));
|
|
2932
|
+
exports.Area = void 0;
|
|
2835
2933
|
(function (Area) {
|
|
2836
2934
|
Area["Detail"] = "N";
|
|
2837
2935
|
Area["Header"] = "H";
|
|
@@ -2839,10 +2937,12 @@
|
|
|
2839
2937
|
Area["PageHeader"] = "P";
|
|
2840
2938
|
Area["PageFooter"] = "G";
|
|
2841
2939
|
})(exports.Area || (exports.Area = {}));
|
|
2940
|
+
exports.DisplayTextType = void 0;
|
|
2842
2941
|
(function (DisplayTextType) {
|
|
2843
2942
|
DisplayTextType[DisplayTextType["Edit"] = 0] = "Edit";
|
|
2844
2943
|
DisplayTextType[DisplayTextType["Query"] = 1] = "Query";
|
|
2845
2944
|
})(exports.DisplayTextType || (exports.DisplayTextType = {}));
|
|
2945
|
+
exports.LogicHeaderType = void 0;
|
|
2846
2946
|
(function (LogicHeaderType) {
|
|
2847
2947
|
LogicHeaderType["None"] = " ";
|
|
2848
2948
|
LogicHeaderType["Remark"] = "K";
|
|
@@ -2859,6 +2959,7 @@
|
|
|
2859
2959
|
LogicHeaderType["SubForm"] = "U";
|
|
2860
2960
|
LogicHeaderType["Event"] = "E";
|
|
2861
2961
|
})(exports.LogicHeaderType || (exports.LogicHeaderType = {}));
|
|
2962
|
+
exports.LogicOperationType = void 0;
|
|
2862
2963
|
(function (LogicOperationType) {
|
|
2863
2964
|
LogicOperationType["None"] = "x";
|
|
2864
2965
|
LogicOperationType["Remark"] = " ";
|
|
@@ -2872,6 +2973,7 @@
|
|
|
2872
2973
|
LogicOperationType["Form"] = "F";
|
|
2873
2974
|
LogicOperationType["Variable"] = "V";
|
|
2874
2975
|
})(exports.LogicOperationType || (exports.LogicOperationType = {}));
|
|
2976
|
+
exports.Opr = void 0;
|
|
2875
2977
|
(function (Opr) {
|
|
2876
2978
|
Opr[Opr["Remark"] = 0] = "Remark";
|
|
2877
2979
|
Opr[Opr["SelFld"] = 1] = "SelFld";
|
|
@@ -2889,6 +2991,7 @@
|
|
|
2889
2991
|
Opr[Opr["UserExit"] = 13] = "UserExit";
|
|
2890
2992
|
Opr[Opr["RaiseEvent"] = 14] = "RaiseEvent";
|
|
2891
2993
|
})(exports.Opr || (exports.Opr = {}));
|
|
2994
|
+
exports.DataViewHeaderType = void 0;
|
|
2892
2995
|
(function (DataViewHeaderType) {
|
|
2893
2996
|
DataViewHeaderType["None"] = " ";
|
|
2894
2997
|
DataViewHeaderType["Remark"] = "R";
|
|
@@ -2902,6 +3005,7 @@
|
|
|
2902
3005
|
DataViewHeaderType["LinkOJoin"] = "O";
|
|
2903
3006
|
DataViewHeaderType["EndLink"] = "E";
|
|
2904
3007
|
})(exports.DataViewHeaderType || (exports.DataViewHeaderType = {}));
|
|
3008
|
+
exports.DataViewOperationType = void 0;
|
|
2905
3009
|
(function (DataViewOperationType) {
|
|
2906
3010
|
DataViewOperationType["Remark"] = " ";
|
|
2907
3011
|
DataViewOperationType["Column"] = "C";
|
|
@@ -2909,20 +3013,24 @@
|
|
|
2909
3013
|
DataViewOperationType["Parameter"] = "P";
|
|
2910
3014
|
DataViewOperationType["LinkedColumn"] = "L";
|
|
2911
3015
|
})(exports.DataViewOperationType || (exports.DataViewOperationType = {}));
|
|
3016
|
+
exports.LoadedValues = void 0;
|
|
2912
3017
|
(function (LoadedValues) {
|
|
2913
3018
|
LoadedValues[LoadedValues["None"] = 0] = "None";
|
|
2914
3019
|
LoadedValues[LoadedValues["HeaderOnly"] = 1] = "HeaderOnly";
|
|
2915
3020
|
LoadedValues[LoadedValues["Failed"] = 2] = "Failed";
|
|
2916
3021
|
LoadedValues[LoadedValues["Full"] = 3] = "Full";
|
|
2917
3022
|
})(exports.LoadedValues || (exports.LoadedValues = {}));
|
|
3023
|
+
exports.YesNoValues = void 0;
|
|
2918
3024
|
(function (YesNoValues) {
|
|
2919
3025
|
YesNoValues[YesNoValues["Yes"] = 1] = "Yes";
|
|
2920
3026
|
YesNoValues[YesNoValues["No"] = 0] = "No";
|
|
2921
3027
|
})(exports.YesNoValues || (exports.YesNoValues = {}));
|
|
3028
|
+
exports.TrueFalseValues = void 0;
|
|
2922
3029
|
(function (TrueFalseValues) {
|
|
2923
3030
|
TrueFalseValues[TrueFalseValues["True"] = 1] = "True";
|
|
2924
3031
|
TrueFalseValues[TrueFalseValues["False"] = 0] = "False";
|
|
2925
3032
|
})(exports.TrueFalseValues || (exports.TrueFalseValues = {}));
|
|
3033
|
+
exports.HelpType = void 0;
|
|
2926
3034
|
(function (HelpType) {
|
|
2927
3035
|
HelpType["Internal"] = "I";
|
|
2928
3036
|
HelpType["Prompt"] = "P";
|
|
@@ -2930,10 +3038,12 @@
|
|
|
2930
3038
|
HelpType["Tooltip"] = "T";
|
|
2931
3039
|
HelpType["URL"] = "U";
|
|
2932
3040
|
})(exports.HelpType || (exports.HelpType = {}));
|
|
3041
|
+
exports.NullArithmetic = void 0;
|
|
2933
3042
|
(function (NullArithmetic) {
|
|
2934
3043
|
NullArithmetic[NullArithmetic["Nullify"] = 0] = "Nullify";
|
|
2935
3044
|
NullArithmetic[NullArithmetic["UseDefault"] = 1] = "UseDefault";
|
|
2936
3045
|
})(exports.NullArithmetic || (exports.NullArithmetic = {}));
|
|
3046
|
+
exports.ModelClass = void 0;
|
|
2937
3047
|
(function (ModelClass) {
|
|
2938
3048
|
ModelClass["Help"] = "A";
|
|
2939
3049
|
ModelClass["Field"] = "B";
|
|
@@ -2947,10 +3057,12 @@
|
|
|
2947
3057
|
ModelClass["RCFrame"] = "J";
|
|
2948
3058
|
ModelClass["GuiFrame"] = "K";
|
|
2949
3059
|
})(exports.ModelClass || (exports.ModelClass = {}));
|
|
3060
|
+
exports.CompTypes = void 0;
|
|
2950
3061
|
(function (CompTypes) {
|
|
2951
3062
|
CompTypes["Magicxpa"] = "U";
|
|
2952
3063
|
CompTypes["DotNet"] = "D";
|
|
2953
3064
|
})(exports.CompTypes || (exports.CompTypes = {}));
|
|
3065
|
+
exports.TaskFlow = void 0;
|
|
2954
3066
|
(function (TaskFlow) {
|
|
2955
3067
|
TaskFlow["Undefined"] = "U";
|
|
2956
3068
|
TaskFlow["Online"] = "O";
|
|
@@ -2958,11 +3070,13 @@
|
|
|
2958
3070
|
TaskFlow["Browser"] = "R";
|
|
2959
3071
|
TaskFlow["RichClient"] = "C";
|
|
2960
3072
|
})(exports.TaskFlow || (exports.TaskFlow = {}));
|
|
3073
|
+
exports.RemarkType = void 0;
|
|
2961
3074
|
(function (RemarkType) {
|
|
2962
3075
|
RemarkType[RemarkType["RegularOperation"] = 0] = "RegularOperation";
|
|
2963
3076
|
RemarkType[RemarkType["Dataviewheader"] = 1] = "Dataviewheader";
|
|
2964
3077
|
RemarkType[RemarkType["TaskLogic"] = 2] = "TaskLogic";
|
|
2965
3078
|
})(exports.RemarkType || (exports.RemarkType = {}));
|
|
3079
|
+
exports.VeeMode = void 0;
|
|
2966
3080
|
(function (VeeMode) {
|
|
2967
3081
|
VeeMode["None"] = " ";
|
|
2968
3082
|
VeeMode["Parameter"] = "P";
|
|
@@ -2971,25 +3085,30 @@
|
|
|
2971
3085
|
VeeMode["Column"] = "C";
|
|
2972
3086
|
VeeMode["LinkCol"] = "L";
|
|
2973
3087
|
})(exports.VeeMode || (exports.VeeMode = {}));
|
|
3088
|
+
exports.VeeDiffUpdate = void 0;
|
|
2974
3089
|
(function (VeeDiffUpdate) {
|
|
2975
3090
|
VeeDiffUpdate["AsTable"] = "T";
|
|
2976
3091
|
VeeDiffUpdate["Absolute"] = "N";
|
|
2977
3092
|
VeeDiffUpdate["Differential"] = "Y";
|
|
2978
3093
|
VeeDiffUpdate[VeeDiffUpdate["None"] = 0] = "None";
|
|
2979
3094
|
})(exports.VeeDiffUpdate || (exports.VeeDiffUpdate = {}));
|
|
3095
|
+
exports.VeePartOfDataview = void 0;
|
|
2980
3096
|
(function (VeePartOfDataview) {
|
|
2981
3097
|
VeePartOfDataview["Undefined"] = "U";
|
|
2982
3098
|
})(exports.VeePartOfDataview || (exports.VeePartOfDataview = {}));
|
|
3099
|
+
exports.DataviewType = void 0;
|
|
2983
3100
|
(function (DataviewType) {
|
|
2984
3101
|
DataviewType["MainTable"] = "M";
|
|
2985
3102
|
DataviewType["DSQL"] = "Q";
|
|
2986
3103
|
DataviewType["Declaration"] = "D";
|
|
2987
3104
|
})(exports.DataviewType || (exports.DataviewType = {}));
|
|
3105
|
+
exports.TabbingCycleType = void 0;
|
|
2988
3106
|
(function (TabbingCycleType) {
|
|
2989
3107
|
TabbingCycleType["RemainInCurrentRecord"] = "R";
|
|
2990
3108
|
TabbingCycleType["MoveToNextRecord"] = "N";
|
|
2991
3109
|
TabbingCycleType["MoveToParentTask"] = "P";
|
|
2992
3110
|
})(exports.TabbingCycleType || (exports.TabbingCycleType = {}));
|
|
3111
|
+
exports.LockingStrategy = void 0;
|
|
2993
3112
|
(function (LockingStrategy) {
|
|
2994
3113
|
LockingStrategy["Immediate"] = "I";
|
|
2995
3114
|
LockingStrategy["OnModify"] = "O";
|
|
@@ -2997,6 +3116,7 @@
|
|
|
2997
3116
|
LockingStrategy["BeforeUpdate"] = "B";
|
|
2998
3117
|
LockingStrategy["Minimum"] = "M";
|
|
2999
3118
|
})(exports.LockingStrategy || (exports.LockingStrategy = {}));
|
|
3119
|
+
exports.TransBegin = void 0;
|
|
3000
3120
|
(function (TransBegin) {
|
|
3001
3121
|
TransBegin["Update"] = "U";
|
|
3002
3122
|
TransBegin["Prefix"] = "P";
|
|
@@ -3006,16 +3126,19 @@
|
|
|
3006
3126
|
TransBegin["BeforeTask"] = "T";
|
|
3007
3127
|
TransBegin["Group"] = "G";
|
|
3008
3128
|
})(exports.TransBegin || (exports.TransBegin = {}));
|
|
3129
|
+
exports.ErrStrategy = void 0;
|
|
3009
3130
|
(function (ErrStrategy) {
|
|
3010
3131
|
ErrStrategy["Recover"] = "R";
|
|
3011
3132
|
ErrStrategy["Abort"] = "A";
|
|
3012
3133
|
})(exports.ErrStrategy || (exports.ErrStrategy = {}));
|
|
3134
|
+
exports.CacheStrategy = void 0;
|
|
3013
3135
|
(function (CacheStrategy) {
|
|
3014
3136
|
CacheStrategy["Pos"] = "P";
|
|
3015
3137
|
CacheStrategy["PosData"] = "D";
|
|
3016
3138
|
CacheStrategy["None"] = "N";
|
|
3017
3139
|
CacheStrategy["AsTable"] = "T";
|
|
3018
3140
|
})(exports.CacheStrategy || (exports.CacheStrategy = {}));
|
|
3141
|
+
exports.ExeState = void 0;
|
|
3019
3142
|
(function (ExeState) {
|
|
3020
3143
|
ExeState["Prefix"] = "P";
|
|
3021
3144
|
ExeState["Suffix"] = "S";
|
|
@@ -3026,6 +3149,7 @@
|
|
|
3026
3149
|
ExeState["Verify"] = "V";
|
|
3027
3150
|
ExeState["Change"] = "C";
|
|
3028
3151
|
})(exports.ExeState || (exports.ExeState = {}));
|
|
3152
|
+
exports.TransMode = void 0;
|
|
3029
3153
|
(function (TransMode) {
|
|
3030
3154
|
TransMode["Deferred"] = "D";
|
|
3031
3155
|
TransMode["NestedDeffered"] = "N";
|
|
@@ -3033,11 +3157,13 @@
|
|
|
3033
3157
|
TransMode["WithinActiveTrans"] = "W";
|
|
3034
3158
|
TransMode["None"] = "O";
|
|
3035
3159
|
})(exports.TransMode || (exports.TransMode = {}));
|
|
3160
|
+
exports.PositionUsage = void 0;
|
|
3036
3161
|
(function (PositionUsage) {
|
|
3037
3162
|
PositionUsage["RangeOn"] = "O";
|
|
3038
3163
|
PositionUsage["RangeFrom"] = "F";
|
|
3039
3164
|
PositionUsage["Locate"] = "L";
|
|
3040
3165
|
})(exports.PositionUsage || (exports.PositionUsage = {}));
|
|
3166
|
+
exports.LnkMode = void 0;
|
|
3041
3167
|
(function (LnkMode) {
|
|
3042
3168
|
LnkMode["Query"] = "R";
|
|
3043
3169
|
LnkMode["Write"] = "W";
|
|
@@ -3045,6 +3171,7 @@
|
|
|
3045
3171
|
LnkMode["IJoin"] = "J";
|
|
3046
3172
|
LnkMode["OJoin"] = "O";
|
|
3047
3173
|
})(exports.LnkMode || (exports.LnkMode = {}));
|
|
3174
|
+
exports.InitialMode = void 0;
|
|
3048
3175
|
(function (InitialMode) {
|
|
3049
3176
|
InitialMode["Modify"] = "M";
|
|
3050
3177
|
InitialMode["Create"] = "C";
|
|
@@ -3059,24 +3186,29 @@
|
|
|
3059
3186
|
InitialMode["Options"] = "N";
|
|
3060
3187
|
InitialMode["ByExp"] = "B";
|
|
3061
3188
|
})(exports.InitialMode || (exports.InitialMode = {}));
|
|
3189
|
+
exports.KeyMode = void 0;
|
|
3062
3190
|
(function (KeyMode) {
|
|
3063
3191
|
KeyMode["Normal"] = "N";
|
|
3064
3192
|
KeyMode["Insert"] = "I";
|
|
3065
3193
|
KeyMode["Append"] = "A";
|
|
3066
3194
|
})(exports.KeyMode || (exports.KeyMode = {}));
|
|
3195
|
+
exports.BoxDir = void 0;
|
|
3067
3196
|
(function (BoxDir) {
|
|
3068
3197
|
BoxDir["Vertical"] = "V";
|
|
3069
3198
|
BoxDir["Horizontal"] = "H";
|
|
3070
3199
|
})(exports.BoxDir || (exports.BoxDir = {}));
|
|
3200
|
+
exports.EndMode = void 0;
|
|
3071
3201
|
(function (EndMode) {
|
|
3072
3202
|
EndMode["Before"] = "B";
|
|
3073
3203
|
EndMode["After"] = "A";
|
|
3074
3204
|
EndMode["Immediate"] = "I";
|
|
3075
3205
|
})(exports.EndMode || (exports.EndMode = {}));
|
|
3206
|
+
exports.UniqueTskSort = void 0;
|
|
3076
3207
|
(function (UniqueTskSort) {
|
|
3077
3208
|
UniqueTskSort["AccordingToIndex"] = "A";
|
|
3078
3209
|
UniqueTskSort["Unique"] = "U";
|
|
3079
3210
|
})(exports.UniqueTskSort || (exports.UniqueTskSort = {}));
|
|
3211
|
+
exports.BrkType = void 0;
|
|
3080
3212
|
(function (BrkType) {
|
|
3081
3213
|
BrkType["Prefix"] = "P";
|
|
3082
3214
|
BrkType["Suffix"] = "S";
|
|
@@ -3086,6 +3218,7 @@
|
|
|
3086
3218
|
BrkType["Verify"] = "V";
|
|
3087
3219
|
BrkType["ChoiceChange"] = "C";
|
|
3088
3220
|
})(exports.BrkType || (exports.BrkType = {}));
|
|
3221
|
+
exports.ErrorClassific = void 0;
|
|
3089
3222
|
(function (ErrorClassific) {
|
|
3090
3223
|
ErrorClassific[ErrorClassific["Any"] = 0] = "Any";
|
|
3091
3224
|
ErrorClassific[ErrorClassific["RecLocked"] = 1] = "RecLocked";
|
|
@@ -3156,6 +3289,7 @@
|
|
|
3156
3289
|
ErrorClassific[ErrorClassific["LoginPwd"] = 66] = "LoginPwd";
|
|
3157
3290
|
ErrorClassific[ErrorClassific["None"] = 67] = "None";
|
|
3158
3291
|
})(exports.ErrorClassific || (exports.ErrorClassific = {}));
|
|
3292
|
+
exports.ComponentItemType = void 0;
|
|
3159
3293
|
(function (ComponentItemType) {
|
|
3160
3294
|
ComponentItemType[ComponentItemType["Models"] = 0] = "Models";
|
|
3161
3295
|
ComponentItemType[ComponentItemType["DataSources"] = 1] = "DataSources";
|
|
@@ -3165,32 +3299,38 @@
|
|
|
3165
3299
|
ComponentItemType[ComponentItemType["Events"] = 5] = "Events";
|
|
3166
3300
|
ComponentItemType[ComponentItemType["Functions"] = 6] = "Functions";
|
|
3167
3301
|
})(exports.ComponentItemType || (exports.ComponentItemType = {}));
|
|
3302
|
+
exports.FieldComAlloc = void 0;
|
|
3168
3303
|
(function (FieldComAlloc) {
|
|
3169
3304
|
FieldComAlloc[FieldComAlloc["Auto"] = 1] = "Auto";
|
|
3170
3305
|
FieldComAlloc[FieldComAlloc["None"] = 2] = "None";
|
|
3171
3306
|
})(exports.FieldComAlloc || (exports.FieldComAlloc = {}));
|
|
3307
|
+
exports.BlobContent = void 0;
|
|
3172
3308
|
(function (BlobContent) {
|
|
3173
3309
|
BlobContent["Unknown"] = "0";
|
|
3174
3310
|
BlobContent["Ansi"] = "1";
|
|
3175
3311
|
BlobContent["Unicode"] = "2";
|
|
3176
3312
|
BlobContent["Binary"] = "3";
|
|
3177
3313
|
})(exports.BlobContent || (exports.BlobContent = {}));
|
|
3314
|
+
exports.DBHRowIdentifier = void 0;
|
|
3178
3315
|
(function (DBHRowIdentifier) {
|
|
3179
3316
|
DBHRowIdentifier["RowId"] = "R";
|
|
3180
3317
|
DBHRowIdentifier["Default"] = "D";
|
|
3181
3318
|
DBHRowIdentifier["UniqueKey"] = "U";
|
|
3182
3319
|
})(exports.DBHRowIdentifier || (exports.DBHRowIdentifier = {}));
|
|
3320
|
+
exports.UseSQLCursor = void 0;
|
|
3183
3321
|
(function (UseSQLCursor) {
|
|
3184
3322
|
UseSQLCursor["Yes"] = "Y";
|
|
3185
3323
|
UseSQLCursor["No"] = "N";
|
|
3186
3324
|
UseSQLCursor["Default"] = "D";
|
|
3187
3325
|
})(exports.UseSQLCursor || (exports.UseSQLCursor = {}));
|
|
3326
|
+
exports.DBHCache = void 0;
|
|
3188
3327
|
(function (DBHCache) {
|
|
3189
3328
|
DBHCache["Pos"] = "P";
|
|
3190
3329
|
DBHCache["PosData"] = "D";
|
|
3191
3330
|
DBHCache["None"] = "N";
|
|
3192
3331
|
DBHCache["AsTable"] = "T";
|
|
3193
3332
|
})(exports.DBHCache || (exports.DBHCache = {}));
|
|
3333
|
+
exports.Resident = void 0;
|
|
3194
3334
|
(function (Resident) {
|
|
3195
3335
|
Resident["No"] = "N";
|
|
3196
3336
|
Resident["Immediate"] = "I";
|
|
@@ -3198,17 +3338,20 @@
|
|
|
3198
3338
|
Resident["ImmediateAndClient"] = "C";
|
|
3199
3339
|
Resident["ImmediateAndBrowser"] = "B";
|
|
3200
3340
|
})(exports.Resident || (exports.Resident = {}));
|
|
3341
|
+
exports.CheckExist = void 0;
|
|
3201
3342
|
(function (CheckExist) {
|
|
3202
3343
|
CheckExist["CheckYes"] = "Y";
|
|
3203
3344
|
CheckExist["CheckNo"] = "N";
|
|
3204
3345
|
CheckExist["CheckDB"] = "D";
|
|
3205
3346
|
})(exports.CheckExist || (exports.CheckExist = {}));
|
|
3347
|
+
exports.ValType = void 0;
|
|
3206
3348
|
(function (ValType) {
|
|
3207
3349
|
ValType[ValType["ZString"] = 1] = "ZString";
|
|
3208
3350
|
ValType[ValType["MagicNum"] = 2] = "MagicNum";
|
|
3209
3351
|
ValType[ValType["Boolean"] = 3] = "Boolean";
|
|
3210
3352
|
ValType[ValType["UString"] = 4] = "UString";
|
|
3211
3353
|
})(exports.ValType || (exports.ValType = {}));
|
|
3354
|
+
exports.FldStorage = void 0;
|
|
3212
3355
|
(function (FldStorage) {
|
|
3213
3356
|
FldStorage[FldStorage["AlphaString"] = 1] = "AlphaString";
|
|
3214
3357
|
FldStorage[FldStorage["AlphaLString"] = 2] = "AlphaLString";
|
|
@@ -3245,6 +3388,7 @@
|
|
|
3245
3388
|
FldStorage[FldStorage["AnsiBlob"] = 33] = "AnsiBlob";
|
|
3246
3389
|
FldStorage[FldStorage["UnicodeBlob"] = 34] = "UnicodeBlob";
|
|
3247
3390
|
})(exports.FldStorage || (exports.FldStorage = {}));
|
|
3391
|
+
exports.DriverDB = void 0;
|
|
3248
3392
|
(function (DriverDB) {
|
|
3249
3393
|
DriverDB[DriverDB["Btrv"] = 0] = "Btrv";
|
|
3250
3394
|
DriverDB[DriverDB["Prevesive2000"] = 1] = "Prevesive2000";
|
|
@@ -3267,6 +3411,7 @@
|
|
|
3267
3411
|
DriverDB[DriverDB["Memory"] = 21] = "Memory";
|
|
3268
3412
|
DriverDB[DriverDB["RMCOB"] = 22] = "RMCOB";
|
|
3269
3413
|
})(exports.DriverDB || (exports.DriverDB = {}));
|
|
3414
|
+
exports.ExportType = void 0;
|
|
3270
3415
|
(function (ExportType) {
|
|
3271
3416
|
ExportType["EntireProject"] = "A";
|
|
3272
3417
|
ExportType["Models"] = "E";
|
|
@@ -3278,6 +3423,7 @@
|
|
|
3278
3423
|
ExportType["CompositeResources"] = "O";
|
|
3279
3424
|
ExportType["ApplicationProperties"] = "C";
|
|
3280
3425
|
})(exports.ExportType || (exports.ExportType = {}));
|
|
3426
|
+
exports.TriggerType = void 0;
|
|
3281
3427
|
(function (TriggerType) {
|
|
3282
3428
|
TriggerType["System"] = "S";
|
|
3283
3429
|
TriggerType["Timer"] = "T";
|
|
@@ -3292,6 +3438,7 @@
|
|
|
3292
3438
|
TriggerType["PublicUserEvent"] = "P";
|
|
3293
3439
|
TriggerType["UserFunc"] = "F";
|
|
3294
3440
|
})(exports.TriggerType || (exports.TriggerType = {}));
|
|
3441
|
+
exports.ItemMasks = void 0;
|
|
3295
3442
|
(function (ItemMasks) {
|
|
3296
3443
|
ItemMasks[ItemMasks["Undefined"] = 0] = "Undefined";
|
|
3297
3444
|
ItemMasks[ItemMasks["ActiveInClient"] = 1] = "ActiveInClient";
|
|
@@ -3312,30 +3459,36 @@
|
|
|
3312
3459
|
ItemMasks[ItemMasks["ForceMixExecRichClient"] = 65536] = "ForceMixExecRichClient";
|
|
3313
3460
|
ItemMasks[ItemMasks["ForceUnknownExecRichClient"] = 131072] = "ForceUnknownExecRichClient";
|
|
3314
3461
|
})(exports.ItemMasks || (exports.ItemMasks = {}));
|
|
3462
|
+
exports.UpdateMode = void 0;
|
|
3315
3463
|
(function (UpdateMode) {
|
|
3316
3464
|
UpdateMode["Incremental"] = "I";
|
|
3317
3465
|
UpdateMode["Normal"] = "N";
|
|
3318
3466
|
})(exports.UpdateMode || (exports.UpdateMode = {}));
|
|
3467
|
+
exports.BlockTypes = void 0;
|
|
3319
3468
|
(function (BlockTypes) {
|
|
3320
3469
|
BlockTypes["If"] = "I";
|
|
3321
3470
|
BlockTypes["Else"] = "E";
|
|
3322
3471
|
BlockTypes["EndBlock"] = "N";
|
|
3323
3472
|
BlockTypes["Loop"] = "L";
|
|
3324
3473
|
})(exports.BlockTypes || (exports.BlockTypes = {}));
|
|
3474
|
+
exports.FormOperationType = void 0;
|
|
3325
3475
|
(function (FormOperationType) {
|
|
3326
3476
|
FormOperationType["Input"] = "I";
|
|
3327
3477
|
FormOperationType["Output"] = "O";
|
|
3328
3478
|
})(exports.FormOperationType || (exports.FormOperationType = {}));
|
|
3479
|
+
exports.FormPage = void 0;
|
|
3329
3480
|
(function (FormPage) {
|
|
3330
3481
|
FormPage["Skip"] = "S";
|
|
3331
3482
|
FormPage["Auto"] = "A";
|
|
3332
3483
|
FormPage["Top"] = "T";
|
|
3333
3484
|
})(exports.FormPage || (exports.FormPage = {}));
|
|
3485
|
+
exports.FormDelimiter = void 0;
|
|
3334
3486
|
(function (FormDelimiter) {
|
|
3335
3487
|
FormDelimiter["Column"] = "C";
|
|
3336
3488
|
FormDelimiter["Single"] = "S";
|
|
3337
3489
|
FormDelimiter["Double"] = "D";
|
|
3338
3490
|
})(exports.FormDelimiter || (exports.FormDelimiter = {}));
|
|
3491
|
+
exports.CallOperationMode = void 0;
|
|
3339
3492
|
(function (CallOperationMode) {
|
|
3340
3493
|
CallOperationMode["Program"] = "P";
|
|
3341
3494
|
CallOperationMode["SubTask"] = "T";
|
|
@@ -3349,10 +3502,12 @@
|
|
|
3349
3502
|
CallOperationMode["WebSLite"] = "L";
|
|
3350
3503
|
CallOperationMode[CallOperationMode["DotNet"] = 46] = "DotNet";
|
|
3351
3504
|
})(exports.CallOperationMode || (exports.CallOperationMode = {}));
|
|
3505
|
+
exports.RowType = void 0;
|
|
3352
3506
|
(function (RowType) {
|
|
3353
3507
|
RowType[RowType["Header"] = 1] = "Header";
|
|
3354
3508
|
RowType[RowType["Operation"] = 2] = "Operation";
|
|
3355
3509
|
})(exports.RowType || (exports.RowType = {}));
|
|
3510
|
+
exports.ForceExit = void 0;
|
|
3356
3511
|
(function (ForceExit) {
|
|
3357
3512
|
ForceExit["None"] = "N";
|
|
3358
3513
|
ForceExit["Control"] = "C";
|
|
@@ -3361,6 +3516,7 @@
|
|
|
3361
3516
|
ForceExit["Ignore"] = "I";
|
|
3362
3517
|
ForceExit["Editing"] = "E";
|
|
3363
3518
|
})(exports.ForceExit || (exports.ForceExit = {}));
|
|
3519
|
+
exports.MediaType = void 0;
|
|
3364
3520
|
(function (MediaType) {
|
|
3365
3521
|
MediaType["None"] = "N";
|
|
3366
3522
|
MediaType["GraphicalPrinter"] = "G";
|
|
@@ -3371,14 +3527,17 @@
|
|
|
3371
3527
|
MediaType["XMLDirect"] = "D";
|
|
3372
3528
|
MediaType["Variable"] = "V";
|
|
3373
3529
|
})(exports.MediaType || (exports.MediaType = {}));
|
|
3530
|
+
exports.OSType = void 0;
|
|
3374
3531
|
(function (OSType) {
|
|
3375
3532
|
OSType["Android"] = "A";
|
|
3376
3533
|
OSType["IOS"] = "I";
|
|
3377
3534
|
})(exports.OSType || (exports.OSType = {}));
|
|
3535
|
+
exports.APGMode = void 0;
|
|
3378
3536
|
(function (APGMode) {
|
|
3379
3537
|
APGMode["Execute"] = "E";
|
|
3380
3538
|
APGMode["Generate"] = "G";
|
|
3381
3539
|
})(exports.APGMode || (exports.APGMode = {}));
|
|
3540
|
+
exports.APGOption = void 0;
|
|
3382
3541
|
(function (APGOption) {
|
|
3383
3542
|
APGOption["Browse"] = "B";
|
|
3384
3543
|
APGOption["Export"] = "E";
|
|
@@ -3387,43 +3546,52 @@
|
|
|
3387
3546
|
APGOption["Browser"] = "R";
|
|
3388
3547
|
APGOption["RichClient"] = "H";
|
|
3389
3548
|
})(exports.APGOption || (exports.APGOption = {}));
|
|
3549
|
+
exports.APGDisplayMode = void 0;
|
|
3390
3550
|
(function (APGDisplayMode) {
|
|
3391
3551
|
APGDisplayMode["Line"] = "L";
|
|
3392
3552
|
APGDisplayMode["Screen"] = "S";
|
|
3393
3553
|
APGDisplayMode["None"] = "N";
|
|
3394
3554
|
})(exports.APGDisplayMode || (exports.APGDisplayMode = {}));
|
|
3555
|
+
exports.APGFormSize = void 0;
|
|
3395
3556
|
(function (APGFormSize) {
|
|
3396
3557
|
APGFormSize["AsModel"] = "M";
|
|
3397
3558
|
APGFormSize["AsContent"] = "C";
|
|
3398
3559
|
APGFormSize["AsContentWithinMDI"] = "D";
|
|
3399
3560
|
})(exports.APGFormSize || (exports.APGFormSize = {}));
|
|
3561
|
+
exports.APGType = void 0;
|
|
3400
3562
|
(function (APGType) {
|
|
3401
3563
|
APGType["Single"] = "S";
|
|
3402
3564
|
APGType["Multiple"] = "M";
|
|
3403
3565
|
APGType["Program"] = "P";
|
|
3404
3566
|
})(exports.APGType || (exports.APGType = {}));
|
|
3567
|
+
exports.APGInvokedFrom = void 0;
|
|
3405
3568
|
(function (APGInvokedFrom) {
|
|
3406
3569
|
APGInvokedFrom[APGInvokedFrom["TablesRepository"] = 1] = "TablesRepository";
|
|
3407
3570
|
APGInvokedFrom[APGInvokedFrom["ProgramsRepository"] = 2] = "ProgramsRepository";
|
|
3408
3571
|
})(exports.APGInvokedFrom || (exports.APGInvokedFrom = {}));
|
|
3572
|
+
exports.MgModelType = void 0;
|
|
3409
3573
|
(function (MgModelType) {
|
|
3410
3574
|
MgModelType["Model"] = "M";
|
|
3411
3575
|
MgModelType["Var"] = "V";
|
|
3412
3576
|
})(exports.MgModelType || (exports.MgModelType = {}));
|
|
3577
|
+
exports.CallbackType = void 0;
|
|
3413
3578
|
(function (CallbackType) {
|
|
3414
3579
|
CallbackType[CallbackType["ProgressBar"] = 0] = "ProgressBar";
|
|
3415
3580
|
CallbackType[CallbackType["Import"] = 1] = "Import";
|
|
3416
3581
|
CallbackType[CallbackType["FormEditor"] = 2] = "FormEditor";
|
|
3417
3582
|
CallbackType[CallbackType["CollectionChanges"] = 3] = "CollectionChanges";
|
|
3418
3583
|
})(exports.CallbackType || (exports.CallbackType = {}));
|
|
3584
|
+
exports.Axis = void 0;
|
|
3419
3585
|
(function (Axis) {
|
|
3420
3586
|
Axis[Axis["X"] = 0] = "X";
|
|
3421
3587
|
Axis[Axis["Y"] = 1] = "Y";
|
|
3422
3588
|
})(exports.Axis || (exports.Axis = {}));
|
|
3589
|
+
exports.ModelAttrHelp = void 0;
|
|
3423
3590
|
(function (ModelAttrHelp) {
|
|
3424
3591
|
ModelAttrHelp["Internal"] = "A";
|
|
3425
3592
|
ModelAttrHelp["Windows"] = "B";
|
|
3426
3593
|
})(exports.ModelAttrHelp || (exports.ModelAttrHelp = {}));
|
|
3594
|
+
exports.ModelAttrField = void 0;
|
|
3427
3595
|
(function (ModelAttrField) {
|
|
3428
3596
|
ModelAttrField["Alpha"] = "A";
|
|
3429
3597
|
ModelAttrField["Numeric"] = "C";
|
|
@@ -3437,6 +3605,7 @@
|
|
|
3437
3605
|
ModelAttrField["Vector"] = "J";
|
|
3438
3606
|
ModelAttrField["DotNet"] = "K";
|
|
3439
3607
|
})(exports.ModelAttrField || (exports.ModelAttrField = {}));
|
|
3608
|
+
exports.ModelAttrGui0 = void 0;
|
|
3440
3609
|
(function (ModelAttrGui0) {
|
|
3441
3610
|
ModelAttrGui0["Form"] = "A";
|
|
3442
3611
|
ModelAttrGui0["Edit"] = "B";
|
|
@@ -3458,6 +3627,7 @@
|
|
|
3458
3627
|
ModelAttrGui0["Subform"] = "S";
|
|
3459
3628
|
ModelAttrGui0["Browser"] = "O";
|
|
3460
3629
|
})(exports.ModelAttrGui0 || (exports.ModelAttrGui0 = {}));
|
|
3630
|
+
exports.ModelAttrGui1 = void 0;
|
|
3461
3631
|
(function (ModelAttrGui1) {
|
|
3462
3632
|
ModelAttrGui1["Form"] = "A";
|
|
3463
3633
|
ModelAttrGui1["Edit"] = "B";
|
|
@@ -3468,12 +3638,14 @@
|
|
|
3468
3638
|
ModelAttrGui1["Image"] = "G";
|
|
3469
3639
|
ModelAttrGui1["Redit"] = "H";
|
|
3470
3640
|
})(exports.ModelAttrGui1 || (exports.ModelAttrGui1 = {}));
|
|
3641
|
+
exports.ModelAttrText = void 0;
|
|
3471
3642
|
(function (ModelAttrText) {
|
|
3472
3643
|
ModelAttrText["Form"] = "A";
|
|
3473
3644
|
ModelAttrText["Edit"] = "B";
|
|
3474
3645
|
ModelAttrText["Static"] = "C";
|
|
3475
3646
|
ModelAttrText["Line"] = "D";
|
|
3476
3647
|
})(exports.ModelAttrText || (exports.ModelAttrText = {}));
|
|
3648
|
+
exports.ModelAttrRichClient = void 0;
|
|
3477
3649
|
(function (ModelAttrRichClient) {
|
|
3478
3650
|
ModelAttrRichClient["Form"] = "A";
|
|
3479
3651
|
ModelAttrRichClient["Edit"] = "B";
|
|
@@ -3492,14 +3664,17 @@
|
|
|
3492
3664
|
ModelAttrRichClient["Browser"] = "O";
|
|
3493
3665
|
ModelAttrRichClient["Line"] = "Q";
|
|
3494
3666
|
})(exports.ModelAttrRichClient || (exports.ModelAttrRichClient = {}));
|
|
3667
|
+
exports.ModelAttrFramesetForm = void 0;
|
|
3495
3668
|
(function (ModelAttrFramesetForm) {
|
|
3496
3669
|
ModelAttrFramesetForm["Form"] = "A";
|
|
3497
3670
|
ModelAttrFramesetForm["Frame"] = "B";
|
|
3498
3671
|
})(exports.ModelAttrFramesetForm || (exports.ModelAttrFramesetForm = {}));
|
|
3672
|
+
exports.ModelAttRichClientFrameSet = void 0;
|
|
3499
3673
|
(function (ModelAttRichClientFrameSet) {
|
|
3500
3674
|
ModelAttRichClientFrameSet["Form"] = "A";
|
|
3501
3675
|
ModelAttRichClientFrameSet["Frame"] = "B";
|
|
3502
3676
|
})(exports.ModelAttRichClientFrameSet || (exports.ModelAttRichClientFrameSet = {}));
|
|
3677
|
+
exports.ModelAttrBrowser = void 0;
|
|
3503
3678
|
(function (ModelAttrBrowser) {
|
|
3504
3679
|
ModelAttrBrowser["Form"] = "A";
|
|
3505
3680
|
ModelAttrBrowser["Edit"] = "B";
|
|
@@ -3515,63 +3690,77 @@
|
|
|
3515
3690
|
ModelAttrBrowser["Iframe"] = "L";
|
|
3516
3691
|
ModelAttrBrowser["Opaque"] = "M";
|
|
3517
3692
|
})(exports.ModelAttrBrowser || (exports.ModelAttrBrowser = {}));
|
|
3693
|
+
exports.ModelAttGuiFrame = void 0;
|
|
3518
3694
|
(function (ModelAttGuiFrame) {
|
|
3519
3695
|
ModelAttGuiFrame["Form"] = "A";
|
|
3520
3696
|
ModelAttGuiFrame["Frame"] = "B";
|
|
3521
3697
|
})(exports.ModelAttGuiFrame || (exports.ModelAttGuiFrame = {}));
|
|
3698
|
+
exports.ModelAttMerge = void 0;
|
|
3522
3699
|
(function (ModelAttMerge) {
|
|
3523
3700
|
ModelAttMerge["Form"] = "A";
|
|
3524
3701
|
})(exports.ModelAttMerge || (exports.ModelAttMerge = {}));
|
|
3702
|
+
exports.DbhKeyMode = void 0;
|
|
3525
3703
|
(function (DbhKeyMode) {
|
|
3526
3704
|
DbhKeyMode["Unique"] = "S";
|
|
3527
3705
|
DbhKeyMode["NonUnique"] = "N";
|
|
3528
3706
|
})(exports.DbhKeyMode || (exports.DbhKeyMode = {}));
|
|
3707
|
+
exports.DbhKeyDirection = void 0;
|
|
3529
3708
|
(function (DbhKeyDirection) {
|
|
3530
3709
|
DbhKeyDirection["OneWay"] = "A";
|
|
3531
3710
|
DbhKeyDirection["TwoWay"] = "B";
|
|
3532
3711
|
})(exports.DbhKeyDirection || (exports.DbhKeyDirection = {}));
|
|
3712
|
+
exports.DbhKeyRangeMode = void 0;
|
|
3533
3713
|
(function (DbhKeyRangeMode) {
|
|
3534
3714
|
DbhKeyRangeMode["Quick"] = "Q";
|
|
3535
3715
|
DbhKeyRangeMode["Full"] = "F";
|
|
3536
3716
|
})(exports.DbhKeyRangeMode || (exports.DbhKeyRangeMode = {}));
|
|
3717
|
+
exports.DbhKeyIndexType = void 0;
|
|
3537
3718
|
(function (DbhKeyIndexType) {
|
|
3538
3719
|
DbhKeyIndexType["Real"] = "R";
|
|
3539
3720
|
DbhKeyIndexType["Virtual"] = "V";
|
|
3540
3721
|
})(exports.DbhKeyIndexType || (exports.DbhKeyIndexType = {}));
|
|
3722
|
+
exports.DbhSegmentDirection = void 0;
|
|
3541
3723
|
(function (DbhSegmentDirection) {
|
|
3542
3724
|
DbhSegmentDirection["Ascending"] = "A";
|
|
3543
3725
|
DbhSegmentDirection["Descending"] = "D";
|
|
3544
3726
|
})(exports.DbhSegmentDirection || (exports.DbhSegmentDirection = {}));
|
|
3727
|
+
exports.ChoiceControlStyle = void 0;
|
|
3545
3728
|
(function (ChoiceControlStyle) {
|
|
3546
3729
|
ChoiceControlStyle[ChoiceControlStyle["ListBox"] = 1] = "ListBox";
|
|
3547
3730
|
ChoiceControlStyle[ChoiceControlStyle["ComboBox"] = 2] = "ComboBox";
|
|
3548
3731
|
ChoiceControlStyle[ChoiceControlStyle["Tab"] = 3] = "Tab";
|
|
3549
3732
|
ChoiceControlStyle[ChoiceControlStyle["RadioButton"] = 4] = "RadioButton";
|
|
3550
3733
|
})(exports.ChoiceControlStyle || (exports.ChoiceControlStyle = {}));
|
|
3734
|
+
exports.Recursion = void 0;
|
|
3551
3735
|
(function (Recursion) {
|
|
3552
3736
|
Recursion[Recursion["None"] = 0] = "None";
|
|
3553
3737
|
Recursion[Recursion["First"] = 1] = "First";
|
|
3554
3738
|
Recursion[Recursion["Second"] = 2] = "Second";
|
|
3555
3739
|
Recursion[Recursion["FirstOpen"] = 3] = "FirstOpen";
|
|
3556
3740
|
})(exports.Recursion || (exports.Recursion = {}));
|
|
3741
|
+
exports.ViewSelectType = void 0;
|
|
3557
3742
|
(function (ViewSelectType) {
|
|
3558
3743
|
ViewSelectType[ViewSelectType["IncludeInView"] = 0] = "IncludeInView";
|
|
3559
3744
|
ViewSelectType[ViewSelectType["ExcludeFromView"] = 1] = "ExcludeFromView";
|
|
3560
3745
|
})(exports.ViewSelectType || (exports.ViewSelectType = {}));
|
|
3746
|
+
exports.RangeMode = void 0;
|
|
3561
3747
|
(function (RangeMode) {
|
|
3562
3748
|
RangeMode["From"] = "F";
|
|
3563
3749
|
RangeMode["To"] = "T";
|
|
3564
3750
|
RangeMode["Equal"] = "E";
|
|
3565
3751
|
})(exports.RangeMode || (exports.RangeMode = {}));
|
|
3752
|
+
exports.TableType = void 0;
|
|
3566
3753
|
(function (TableType) {
|
|
3567
3754
|
TableType["Table"] = "T";
|
|
3568
3755
|
TableType["View"] = "V";
|
|
3569
3756
|
TableType["Undefined"] = "U";
|
|
3570
3757
|
})(exports.TableType || (exports.TableType = {}));
|
|
3758
|
+
exports.DatabaseDataType = void 0;
|
|
3571
3759
|
(function (DatabaseDataType) {
|
|
3572
3760
|
DatabaseDataType["XmlDataSource"] = "X";
|
|
3573
3761
|
DatabaseDataType["DatabaseDataSource"] = "D";
|
|
3574
3762
|
})(exports.DatabaseDataType || (exports.DatabaseDataType = {}));
|
|
3763
|
+
exports.LogicHeaderAction = void 0;
|
|
3575
3764
|
(function (LogicHeaderAction) {
|
|
3576
3765
|
LogicHeaderAction[LogicHeaderAction["None"] = 0] = "None";
|
|
3577
3766
|
LogicHeaderAction[LogicHeaderAction["CreateVariableChangeParameters"] = 1] = "CreateVariableChangeParameters";
|
|
@@ -3579,6 +3768,7 @@
|
|
|
3579
3768
|
LogicHeaderAction[LogicHeaderAction["ReplaceVariableChangeParameters"] = 3] = "ReplaceVariableChangeParameters";
|
|
3580
3769
|
LogicHeaderAction[LogicHeaderAction["CreateEventParameters"] = 4] = "CreateEventParameters";
|
|
3581
3770
|
})(exports.LogicHeaderAction || (exports.LogicHeaderAction = {}));
|
|
3771
|
+
exports.DatabaseFilters = void 0;
|
|
3582
3772
|
(function (DatabaseFilters) {
|
|
3583
3773
|
DatabaseFilters["EnvironmentDatabaseAll"] = "A";
|
|
3584
3774
|
DatabaseFilters["EnvironmentDatabaseSql"] = "S";
|
|
@@ -3588,40 +3778,48 @@
|
|
|
3588
3778
|
DatabaseFilters["EnvironmentDatabaseOnly"] = "O";
|
|
3589
3779
|
DatabaseFilters["EnvironmentDatabaseCanLoadDefinitionAndXml"] = "G";
|
|
3590
3780
|
})(exports.DatabaseFilters || (exports.DatabaseFilters = {}));
|
|
3781
|
+
exports.FieldViewModelType = void 0;
|
|
3591
3782
|
(function (FieldViewModelType) {
|
|
3592
3783
|
FieldViewModelType[FieldViewModelType["DataSource"] = 0] = "DataSource";
|
|
3593
3784
|
FieldViewModelType[FieldViewModelType["DataView"] = 1] = "DataView";
|
|
3594
3785
|
FieldViewModelType[FieldViewModelType["Logic"] = 2] = "Logic";
|
|
3595
3786
|
})(exports.FieldViewModelType || (exports.FieldViewModelType = {}));
|
|
3787
|
+
exports.SourceContextType = void 0;
|
|
3596
3788
|
(function (SourceContextType) {
|
|
3597
3789
|
SourceContextType["CurrentContext"] = "C";
|
|
3598
3790
|
SourceContextType["MainContext"] = "M";
|
|
3599
3791
|
})(exports.SourceContextType || (exports.SourceContextType = {}));
|
|
3792
|
+
exports.ViewRefreshMode = void 0;
|
|
3600
3793
|
(function (ViewRefreshMode) {
|
|
3601
3794
|
ViewRefreshMode[ViewRefreshMode["None"] = 0] = "None";
|
|
3602
3795
|
ViewRefreshMode[ViewRefreshMode["CurrentLocation"] = 1] = "CurrentLocation";
|
|
3603
3796
|
ViewRefreshMode[ViewRefreshMode["UseTaskLocate"] = 2] = "UseTaskLocate";
|
|
3604
3797
|
ViewRefreshMode[ViewRefreshMode["FirstRecord"] = 3] = "FirstRecord";
|
|
3605
3798
|
})(exports.ViewRefreshMode || (exports.ViewRefreshMode = {}));
|
|
3799
|
+
exports.LineManipulationType = void 0;
|
|
3606
3800
|
(function (LineManipulationType) {
|
|
3607
3801
|
LineManipulationType[LineManipulationType["None"] = 0] = "None";
|
|
3608
3802
|
LineManipulationType[LineManipulationType["RepeatEntries"] = 1] = "RepeatEntries";
|
|
3609
3803
|
LineManipulationType[LineManipulationType["MoveEntries"] = 2] = "MoveEntries";
|
|
3610
3804
|
LineManipulationType[LineManipulationType["OverwriteCurrent"] = 3] = "OverwriteCurrent";
|
|
3611
3805
|
})(exports.LineManipulationType || (exports.LineManipulationType = {}));
|
|
3806
|
+
exports.DataViewOutputType = void 0;
|
|
3612
3807
|
(function (DataViewOutputType) {
|
|
3613
3808
|
DataViewOutputType["Xml"] = "X";
|
|
3614
3809
|
DataViewOutputType["ClientFile"] = "C";
|
|
3615
3810
|
})(exports.DataViewOutputType || (exports.DataViewOutputType = {}));
|
|
3811
|
+
exports.UndoRedoAction = void 0;
|
|
3616
3812
|
(function (UndoRedoAction) {
|
|
3617
3813
|
UndoRedoAction[UndoRedoAction["Undo"] = 0] = "Undo";
|
|
3618
3814
|
UndoRedoAction[UndoRedoAction["Redo"] = 1] = "Redo";
|
|
3619
3815
|
})(exports.UndoRedoAction || (exports.UndoRedoAction = {}));
|
|
3816
|
+
exports.OrientationLock = void 0;
|
|
3620
3817
|
(function (OrientationLock) {
|
|
3621
3818
|
OrientationLock[OrientationLock["No"] = 1] = "No";
|
|
3622
3819
|
OrientationLock[OrientationLock["Portrait"] = 2] = "Portrait";
|
|
3623
3820
|
OrientationLock[OrientationLock["Landscape"] = 3] = "Landscape";
|
|
3624
3821
|
})(exports.OrientationLock || (exports.OrientationLock = {}));
|
|
3822
|
+
exports.EnterAnimation = void 0;
|
|
3625
3823
|
(function (EnterAnimation) {
|
|
3626
3824
|
EnterAnimation[EnterAnimation["Default"] = 1] = "Default";
|
|
3627
3825
|
EnterAnimation[EnterAnimation["Left"] = 2] = "Left";
|
|
@@ -3632,6 +3830,7 @@
|
|
|
3632
3830
|
EnterAnimation[EnterAnimation["Fade"] = 7] = "Fade";
|
|
3633
3831
|
EnterAnimation[EnterAnimation["None"] = 8] = "None";
|
|
3634
3832
|
})(exports.EnterAnimation || (exports.EnterAnimation = {}));
|
|
3833
|
+
exports.ExitAnimation = void 0;
|
|
3635
3834
|
(function (ExitAnimation) {
|
|
3636
3835
|
ExitAnimation[ExitAnimation["Default"] = 1] = "Default";
|
|
3637
3836
|
ExitAnimation[ExitAnimation["Left"] = 2] = "Left";
|
|
@@ -3642,6 +3841,7 @@
|
|
|
3642
3841
|
ExitAnimation[ExitAnimation["Fade"] = 7] = "Fade";
|
|
3643
3842
|
ExitAnimation[ExitAnimation["None"] = 8] = "None";
|
|
3644
3843
|
})(exports.ExitAnimation || (exports.ExitAnimation = {}));
|
|
3844
|
+
exports.KeyboardTypes = void 0;
|
|
3645
3845
|
(function (KeyboardTypes) {
|
|
3646
3846
|
KeyboardTypes[KeyboardTypes["Default"] = 1] = "Default";
|
|
3647
3847
|
KeyboardTypes[KeyboardTypes["Numeric"] = 2] = "Numeric";
|
|
@@ -3651,6 +3851,7 @@
|
|
|
3651
3851
|
KeyboardTypes[KeyboardTypes["NamePhonePad"] = 6] = "NamePhonePad";
|
|
3652
3852
|
KeyboardTypes[KeyboardTypes["Email"] = 7] = "Email";
|
|
3653
3853
|
})(exports.KeyboardTypes || (exports.KeyboardTypes = {}));
|
|
3854
|
+
exports.KeyboardReturnKeys = void 0;
|
|
3654
3855
|
(function (KeyboardReturnKeys) {
|
|
3655
3856
|
KeyboardReturnKeys[KeyboardReturnKeys["Default"] = 1] = "Default";
|
|
3656
3857
|
KeyboardReturnKeys[KeyboardReturnKeys["Go"] = 2] = "Go";
|
|
@@ -3659,11 +3860,13 @@
|
|
|
3659
3860
|
KeyboardReturnKeys[KeyboardReturnKeys["Search"] = 5] = "Search";
|
|
3660
3861
|
KeyboardReturnKeys[KeyboardReturnKeys["Done"] = 6] = "Done";
|
|
3661
3862
|
})(exports.KeyboardReturnKeys || (exports.KeyboardReturnKeys = {}));
|
|
3863
|
+
exports.OpenEditDialog = void 0;
|
|
3662
3864
|
(function (OpenEditDialog) {
|
|
3663
3865
|
OpenEditDialog[OpenEditDialog["Default"] = 1] = "Default";
|
|
3664
3866
|
OpenEditDialog[OpenEditDialog["Yes"] = 2] = "Yes";
|
|
3665
3867
|
OpenEditDialog[OpenEditDialog["No"] = 3] = "No";
|
|
3666
3868
|
})(exports.OpenEditDialog || (exports.OpenEditDialog = {}));
|
|
3869
|
+
exports.FrameLayoutTypes = void 0;
|
|
3667
3870
|
(function (FrameLayoutTypes) {
|
|
3668
3871
|
FrameLayoutTypes[FrameLayoutTypes["TwoFramesHorizontal"] = 7901] = "TwoFramesHorizontal";
|
|
3669
3872
|
FrameLayoutTypes[FrameLayoutTypes["TwoFramesVertical"] = 7902] = "TwoFramesVertical";
|
|
@@ -3672,16 +3875,19 @@
|
|
|
3672
3875
|
FrameLayoutTypes[FrameLayoutTypes["ThreeFramesTop"] = 7905] = "ThreeFramesTop";
|
|
3673
3876
|
FrameLayoutTypes[FrameLayoutTypes["ThreeFramesLeft"] = 7906] = "ThreeFramesLeft";
|
|
3674
3877
|
})(exports.FrameLayoutTypes || (exports.FrameLayoutTypes = {}));
|
|
3878
|
+
exports.LineDirection = void 0;
|
|
3675
3879
|
(function (LineDirection) {
|
|
3676
3880
|
LineDirection[LineDirection["Horizontal"] = 0] = "Horizontal";
|
|
3677
3881
|
LineDirection[LineDirection["Vertical"] = 1] = "Vertical";
|
|
3678
3882
|
LineDirection[LineDirection["NESW"] = 2] = "NESW";
|
|
3679
3883
|
LineDirection[LineDirection["NWSE"] = 3] = "NWSE";
|
|
3680
3884
|
})(exports.LineDirection || (exports.LineDirection = {}));
|
|
3885
|
+
exports.ScrollBarThumbType = void 0;
|
|
3681
3886
|
(function (ScrollBarThumbType) {
|
|
3682
3887
|
ScrollBarThumbType[ScrollBarThumbType["Incremental"] = 1] = "Incremental";
|
|
3683
3888
|
ScrollBarThumbType[ScrollBarThumbType["Absolute"] = 2] = "Absolute";
|
|
3684
3889
|
})(exports.ScrollBarThumbType || (exports.ScrollBarThumbType = {}));
|
|
3890
|
+
exports.StorageAttribute = void 0;
|
|
3685
3891
|
(function (StorageAttribute) {
|
|
3686
3892
|
StorageAttribute["NONE"] = " ";
|
|
3687
3893
|
StorageAttribute["ALPHA"] = "A";
|
|
@@ -3696,6 +3902,7 @@
|
|
|
3696
3902
|
StorageAttribute["SKIP"] = "0";
|
|
3697
3903
|
StorageAttribute["DOTNET"] = "E";
|
|
3698
3904
|
})(exports.StorageAttribute || (exports.StorageAttribute = {}));
|
|
3905
|
+
exports.NotifyCollectionChangedAction = void 0;
|
|
3699
3906
|
(function (NotifyCollectionChangedAction) {
|
|
3700
3907
|
NotifyCollectionChangedAction[NotifyCollectionChangedAction["Add"] = 0] = "Add";
|
|
3701
3908
|
NotifyCollectionChangedAction[NotifyCollectionChangedAction["Remove"] = 1] = "Remove";
|
|
@@ -3978,7 +4185,6 @@
|
|
|
3978
4185
|
InternalInterface.MG_ACT_SERVER_TERMINATION = 420;
|
|
3979
4186
|
InternalInterface.MG_ACT_SUBFORM_REFRESH = 432;
|
|
3980
4187
|
InternalInterface.MG_ACT_CONTEXT_MENU = 439;
|
|
3981
|
-
InternalInterface.MG_ACT_DEFAULT_BUTTON = 459;
|
|
3982
4188
|
InternalInterface.MG_ACT_NEXT_RT_WINDOW = 462;
|
|
3983
4189
|
InternalInterface.MG_ACT_PREV_RT_WINDOW = 463;
|
|
3984
4190
|
InternalInterface.MG_ACT_EMPTY_DATAVIEW = 521;
|
|
@@ -4012,7 +4218,8 @@
|
|
|
4012
4218
|
InternalInterface.MG_ACT_CRELINE_ABOVE = 634;
|
|
4013
4219
|
InternalInterface.MG_ACT_CONTEXT_TERMINATION = 635;
|
|
4014
4220
|
InternalInterface.MG_ACT_CONTEXT_TIMEOUT_RESET = 636;
|
|
4015
|
-
InternalInterface.
|
|
4221
|
+
InternalInterface.MG_ACT_CONTEXT_REMOVE = 647;
|
|
4222
|
+
InternalInterface.MG_ACT_TOT_CNT = 648;
|
|
4016
4223
|
InternalInterface.MG_ACT_TASK_PREFIX = 1001;
|
|
4017
4224
|
InternalInterface.MG_ACT_TASK_SUFFIX = 1002;
|
|
4018
4225
|
InternalInterface.MG_ACT_REC_PREFIX = 1003;
|
|
@@ -4093,6 +4300,7 @@
|
|
|
4093
4300
|
return RequestInfo;
|
|
4094
4301
|
}());
|
|
4095
4302
|
|
|
4303
|
+
exports.LogType = void 0;
|
|
4096
4304
|
(function (LogType) {
|
|
4097
4305
|
LogType[LogType["info"] = 1] = "info";
|
|
4098
4306
|
LogType[LogType["warning"] = 2] = "warning";
|
|
@@ -4307,11 +4515,13 @@
|
|
|
4307
4515
|
}());
|
|
4308
4516
|
Logger.instance = null;
|
|
4309
4517
|
|
|
4518
|
+
exports.MagicProperties = void 0;
|
|
4310
4519
|
(function (MagicProperties) {
|
|
4311
4520
|
MagicProperties["LineDivider"] = "line_divider";
|
|
4312
4521
|
MagicProperties["ImageFile"] = "image_file";
|
|
4313
4522
|
MagicProperties["Wallpaper"] = "wallpaper";
|
|
4314
4523
|
})(exports.MagicProperties || (exports.MagicProperties = {}));
|
|
4524
|
+
exports.BindingLevel = void 0;
|
|
4315
4525
|
(function (BindingLevel) {
|
|
4316
4526
|
BindingLevel[BindingLevel["Control"] = 1] = "Control";
|
|
4317
4527
|
BindingLevel[BindingLevel["Character"] = 2] = "Character";
|
|
@@ -5267,5 +5477,5 @@
|
|
|
5267
5477
|
|
|
5268
5478
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
5269
5479
|
|
|
5270
|
-
}))
|
|
5480
|
+
}));
|
|
5271
5481
|
//# sourceMappingURL=magic-xpa-utils.umd.js.map
|