uudev 1.1.9 → 1.2.0
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/apptemplate/office/src_acc/App.vue +11 -0
- package/apptemplate/office/src_acc/demo/demo.vue +128 -0
- package/apptemplate/office/src_acc/main.ts +9 -0
- package/apptemplate/office/src_acc/router/index.ts +19 -0
- package/dtstype/acc.d.ts +5104 -0
- package/dtstype/adodb.d.ts +263 -0
- package/dtstype/dao.d.ts +385 -0
- package/dtstype/enum/acc_enum.d.ts +2883 -0
- package/dtstype/enum/adodb_enum.d.ts +1026 -0
- package/dtstype/enum/dao_enum.d.ts +510 -0
- package/main.js +4 -4
- package/package.json +4 -1
|
@@ -0,0 +1,2883 @@
|
|
|
1
|
+
|
|
2
|
+
declare enum AcModuleType
|
|
3
|
+
{
|
|
4
|
+
acStandardModule = 0,
|
|
5
|
+
acClassModule = 1
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
declare enum AcCloseSave
|
|
9
|
+
{
|
|
10
|
+
acSavePrompt = 0,
|
|
11
|
+
acSaveYes = 1,
|
|
12
|
+
acSaveNo = 2
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
declare enum AcQuitOption
|
|
16
|
+
{
|
|
17
|
+
acQuitPrompt = 0,
|
|
18
|
+
acQuitSaveAll = 1,
|
|
19
|
+
acQuitSaveNone = 2
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
declare enum AcSection
|
|
23
|
+
{
|
|
24
|
+
acDetail = 0,
|
|
25
|
+
acHeader = 1,
|
|
26
|
+
acFooter = 2,
|
|
27
|
+
acPageHeader = 3,
|
|
28
|
+
acPageFooter = 4,
|
|
29
|
+
acGroupLevel1Header = 5,
|
|
30
|
+
acGroupLevel1Footer = 6,
|
|
31
|
+
acGroupLevel2Header = 7,
|
|
32
|
+
acGroupLevel2Footer = 8
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
declare enum AcControlType
|
|
36
|
+
{
|
|
37
|
+
acLabel = 100,
|
|
38
|
+
acRectangle = 101,
|
|
39
|
+
acLine = 102,
|
|
40
|
+
acImage = 103,
|
|
41
|
+
acCommandButton = 104,
|
|
42
|
+
acOptionButton = 105,
|
|
43
|
+
acCheckBox = 106,
|
|
44
|
+
acOptionGroup = 107,
|
|
45
|
+
acBoundObjectFrame = 108,
|
|
46
|
+
acTextBox = 109,
|
|
47
|
+
acListBox = 110,
|
|
48
|
+
acComboBox = 111,
|
|
49
|
+
acSubform = 112,
|
|
50
|
+
acObjectFrame = 114,
|
|
51
|
+
acPageBreak = 118,
|
|
52
|
+
acCustomControl = 119,
|
|
53
|
+
acToggleButton = 122,
|
|
54
|
+
acTabCtl = 123,
|
|
55
|
+
acPage = 124,
|
|
56
|
+
acAttachment = 126,
|
|
57
|
+
acEmptyCell = 127,
|
|
58
|
+
acWebBrowser = 128,
|
|
59
|
+
acNavigationControl = 129,
|
|
60
|
+
acNavigationButton = 130,
|
|
61
|
+
acChart = 133,
|
|
62
|
+
acEdgeBrowser = 134
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
declare enum AcDataObjectType
|
|
66
|
+
{
|
|
67
|
+
acActiveDataObject = -1,
|
|
68
|
+
acDataTable = 0,
|
|
69
|
+
acDataQuery = 1,
|
|
70
|
+
acDataForm = 2,
|
|
71
|
+
acDataReport = 3,
|
|
72
|
+
acDataServerView = 7,
|
|
73
|
+
acDataStoredProcedure = 9,
|
|
74
|
+
acDataFunction = 10
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
declare enum AcDataTransferType
|
|
78
|
+
{
|
|
79
|
+
acImport = 0,
|
|
80
|
+
acExport = 1,
|
|
81
|
+
acLink = 2
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
declare enum AcSendObjectType
|
|
85
|
+
{
|
|
86
|
+
acSendNoObject = -1,
|
|
87
|
+
acSendTable = 0,
|
|
88
|
+
acSendQuery = 1,
|
|
89
|
+
acSendForm = 2,
|
|
90
|
+
acSendReport = 3,
|
|
91
|
+
acSendModule = 5,
|
|
92
|
+
acSendDataAccessPage = 6
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
declare enum AcObjectType
|
|
96
|
+
{
|
|
97
|
+
acDefault = -1,
|
|
98
|
+
acTable = 0,
|
|
99
|
+
acQuery = 1,
|
|
100
|
+
acForm = 2,
|
|
101
|
+
acReport = 3,
|
|
102
|
+
acMacro = 4,
|
|
103
|
+
acModule = 5,
|
|
104
|
+
acDataAccessPage = 6,
|
|
105
|
+
acServerView = 7,
|
|
106
|
+
acDiagram = 8,
|
|
107
|
+
acStoredProcedure = 9,
|
|
108
|
+
acFunction = 10,
|
|
109
|
+
acDatabaseProperties = 11,
|
|
110
|
+
acTableDataMacro = 12
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
declare enum AcFindField
|
|
114
|
+
{
|
|
115
|
+
acCurrent = -1,
|
|
116
|
+
acAll = 0
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
declare enum AcFindMatch
|
|
120
|
+
{
|
|
121
|
+
acAnywhere = 0,
|
|
122
|
+
acEntire = 1,
|
|
123
|
+
acStart = 2
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
declare enum AcFormView
|
|
127
|
+
{
|
|
128
|
+
acNormal = 0,
|
|
129
|
+
acDesign = 1,
|
|
130
|
+
acPreview = 2,
|
|
131
|
+
acFormDS = 3,
|
|
132
|
+
acFormPivotTable = 4,
|
|
133
|
+
acFormPivotChart = 5,
|
|
134
|
+
acLayout = 6
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
declare enum AcDataAccessPageView
|
|
138
|
+
{
|
|
139
|
+
acDataAccessPageBrowse = 0,
|
|
140
|
+
acDataAccessPageDesign = 1
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
declare enum AcOpenDataMode
|
|
144
|
+
{
|
|
145
|
+
acAdd = 0,
|
|
146
|
+
acEdit = 1,
|
|
147
|
+
acReadOnly = 2
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
declare enum AcFormOpenDataMode
|
|
151
|
+
{
|
|
152
|
+
acFormPropertySettings = -1,
|
|
153
|
+
acFormAdd = 0,
|
|
154
|
+
acFormEdit = 1,
|
|
155
|
+
acFormReadOnly = 2
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
declare enum AcOutputObjectType
|
|
159
|
+
{
|
|
160
|
+
acOutputTable = 0,
|
|
161
|
+
acOutputQuery = 1,
|
|
162
|
+
acOutputForm = 2,
|
|
163
|
+
acOutputReport = 3,
|
|
164
|
+
acOutputModule = 5,
|
|
165
|
+
acOutputDataAccessPage = 6,
|
|
166
|
+
acOutputServerView = 7,
|
|
167
|
+
acOutputStoredProcedure = 9,
|
|
168
|
+
acOutputFunction = 10
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
declare enum AcPrintQuality
|
|
172
|
+
{
|
|
173
|
+
acHigh = 0,
|
|
174
|
+
acMedium = 1,
|
|
175
|
+
acLow = 2,
|
|
176
|
+
acDraft = 3
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
declare enum AcPrintRange
|
|
180
|
+
{
|
|
181
|
+
acPrintAll = 0,
|
|
182
|
+
acSelection = 1,
|
|
183
|
+
acPages = 2
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
declare enum AcRecord
|
|
187
|
+
{
|
|
188
|
+
acPrevious = 0,
|
|
189
|
+
acNext = 1,
|
|
190
|
+
acFirst = 2,
|
|
191
|
+
acLast = 3,
|
|
192
|
+
acGoTo = 4,
|
|
193
|
+
acNewRec = 5
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
declare enum AcSearchDirection
|
|
197
|
+
{
|
|
198
|
+
acUp = 0,
|
|
199
|
+
acDown = 1,
|
|
200
|
+
acSearchAll = 2
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
declare enum AcSysCmdAction
|
|
204
|
+
{
|
|
205
|
+
acSysCmdInitMeter = 1,
|
|
206
|
+
acSysCmdUpdateMeter = 2,
|
|
207
|
+
acSysCmdRemoveMeter = 3,
|
|
208
|
+
acSysCmdSetStatus = 4,
|
|
209
|
+
acSysCmdClearStatus = 5,
|
|
210
|
+
acSysCmdRuntime = 6,
|
|
211
|
+
acSysCmdAccessVer = 7,
|
|
212
|
+
acSysCmdIniFile = 8,
|
|
213
|
+
acSysCmdAccessDir = 9,
|
|
214
|
+
acSysCmdGetObjectState = 10,
|
|
215
|
+
acSysCmdClearHelpTopic = 11,
|
|
216
|
+
acSysCmdProfile = 12,
|
|
217
|
+
acSysCmdGetWorkgroupFile = 13,
|
|
218
|
+
acSysCmdCompile = 603,
|
|
219
|
+
acSysCmdGetMsoBuildNumber = 715,
|
|
220
|
+
acSysCmdGetFullVersion = 720,
|
|
221
|
+
acSysCmdGetVersion = 721,
|
|
222
|
+
acSysCmdGetFullBuildNumber = 722,
|
|
223
|
+
acSysCmdGetChannelName = 723,
|
|
224
|
+
acSysCmdGetBitness = 724,
|
|
225
|
+
acSysCmdGetBuildNumber = 725
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
declare enum AcTextTransferType
|
|
229
|
+
{
|
|
230
|
+
acImportDelim = 0,
|
|
231
|
+
acImportFixed = 1,
|
|
232
|
+
acExportDelim = 2,
|
|
233
|
+
acExportFixed = 3,
|
|
234
|
+
acExportMerge = 4,
|
|
235
|
+
acLinkDelim = 5,
|
|
236
|
+
acLinkFixed = 6,
|
|
237
|
+
acImportHTML = 7,
|
|
238
|
+
acExportHTML = 8,
|
|
239
|
+
acLinkHTML = 9
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
declare enum AcView
|
|
243
|
+
{
|
|
244
|
+
acViewNormal = 0,
|
|
245
|
+
acViewDesign = 1,
|
|
246
|
+
acViewPreview = 2,
|
|
247
|
+
acViewPivotTable = 3,
|
|
248
|
+
acViewPivotChart = 4,
|
|
249
|
+
acViewReport = 5,
|
|
250
|
+
acViewLayout = 6,
|
|
251
|
+
acViewSql = 7
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
declare enum AcWindowMode
|
|
255
|
+
{
|
|
256
|
+
acWindowNormal = 0,
|
|
257
|
+
acHidden = 1,
|
|
258
|
+
acIcon = 2,
|
|
259
|
+
acDialog = 3
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
declare enum AcFilterType
|
|
263
|
+
{
|
|
264
|
+
acFilterNormal = 0,
|
|
265
|
+
acServerFilter = 1
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
declare enum AcSpreadSheetType
|
|
269
|
+
{
|
|
270
|
+
acSpreadsheetTypeExcel3 = 0,
|
|
271
|
+
acSpreadsheetTypeLotusWK1 = 2,
|
|
272
|
+
acSpreadsheetTypeLotusWK3 = 3,
|
|
273
|
+
acSpreadsheetTypeLotusWJ2 = 4,
|
|
274
|
+
acSpreadsheetTypeExcel5 = 5,
|
|
275
|
+
acSpreadsheetTypeExcel7 = 5,
|
|
276
|
+
acSpreadsheetTypeExcel4 = 6,
|
|
277
|
+
acSpreadsheetTypeLotusWK4 = 7,
|
|
278
|
+
acSpreadsheetTypeExcel97 = 8,
|
|
279
|
+
acSpreadsheetTypeExcel8 = 8,
|
|
280
|
+
acSpreadsheetTypeExcel9 = 8,
|
|
281
|
+
acSpreadsheetTypeExcel12 = 9,
|
|
282
|
+
acSpreadsheetTypeExcel12Xml = 10
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
declare enum AcImeMode
|
|
286
|
+
{
|
|
287
|
+
acImeModeNoControl = 0,
|
|
288
|
+
acImeModeOn = 1,
|
|
289
|
+
acImeModeOff = 2,
|
|
290
|
+
acImeModeDisable = 3,
|
|
291
|
+
acImeModeHiragana = 4,
|
|
292
|
+
acImeModeKatakana = 5,
|
|
293
|
+
acImeModeKatakanaHalf = 6,
|
|
294
|
+
acImeModeAlphaFull = 7,
|
|
295
|
+
acImeModeAlpha = 8,
|
|
296
|
+
acImeModeHangulFull = 9,
|
|
297
|
+
acImeModeHangul = 10
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
declare enum AcImeSentenceMode
|
|
301
|
+
{
|
|
302
|
+
acImeSentenceModePhrasePredict = 0,
|
|
303
|
+
acImeSentenceModePluralClause = 1,
|
|
304
|
+
acImeSentenceModeConversation = 2,
|
|
305
|
+
acImeSentenceModeNone = 3
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
declare enum AcHyperlinkPart
|
|
309
|
+
{
|
|
310
|
+
acDisplayedValue = 0,
|
|
311
|
+
acDisplayText = 1,
|
|
312
|
+
acAddress = 2,
|
|
313
|
+
acSubAddress = 3,
|
|
314
|
+
acScreenTip = 4,
|
|
315
|
+
acFullAddress = 5
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
declare enum AcProjectType
|
|
319
|
+
{
|
|
320
|
+
acNull = 0,
|
|
321
|
+
acADP = 1,
|
|
322
|
+
acMDB = 2
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
declare enum AcCommand
|
|
326
|
+
{
|
|
327
|
+
acCmdWindowUnhide = 1,
|
|
328
|
+
acCmdWindowHide = 2,
|
|
329
|
+
acCmdExit = 3,
|
|
330
|
+
acCmdCompactDatabase = 4,
|
|
331
|
+
acCmdEncryptDecryptDatabase = 5,
|
|
332
|
+
acCmdRepairDatabase = 6,
|
|
333
|
+
acCmdMakeMDEFile = 7,
|
|
334
|
+
acCmdMoreWindows = 8,
|
|
335
|
+
acCmdAppRestore = 9,
|
|
336
|
+
acCmdAppMaximize = 10,
|
|
337
|
+
acCmdAppMinimize = 11,
|
|
338
|
+
acCmdAppMove = 12,
|
|
339
|
+
acCmdAppSize = 13,
|
|
340
|
+
acCmdDocRestore = 14,
|
|
341
|
+
acCmdDocMaximize = 15,
|
|
342
|
+
acCmdDocMove = 16,
|
|
343
|
+
acCmdDocSize = 17,
|
|
344
|
+
acCmdRefresh = 18,
|
|
345
|
+
acCmdFont = 19,
|
|
346
|
+
acCmdSave = 20,
|
|
347
|
+
acCmdSaveAs = 21,
|
|
348
|
+
acCmdWindowCascade = 22,
|
|
349
|
+
acCmdTileVertically = 23,
|
|
350
|
+
acCmdWindowArrangeIcons = 24,
|
|
351
|
+
acCmdOpenDatabase = 25,
|
|
352
|
+
acCmdNewDatabase = 26,
|
|
353
|
+
acCmdOLEDDELinks = 27,
|
|
354
|
+
acCmdRecordsGoToNew = 28,
|
|
355
|
+
acCmdReplace = 29,
|
|
356
|
+
acCmdFind = 30,
|
|
357
|
+
acCmdRunMacro = 31,
|
|
358
|
+
acCmdPageSetup = 32,
|
|
359
|
+
acCmdInsertObject = 33,
|
|
360
|
+
acCmdDuplicate = 34,
|
|
361
|
+
acCmdAboutMicrosoftAccess = 35,
|
|
362
|
+
acCmdFormHdrFtr = 36,
|
|
363
|
+
acCmdReportHdrFtr = 37,
|
|
364
|
+
acCmdPasteAppend = 38,
|
|
365
|
+
acCmdInsertFile = 39,
|
|
366
|
+
acCmdSelectForm = 40,
|
|
367
|
+
acCmdTabOrder = 41,
|
|
368
|
+
acCmdFieldList = 42,
|
|
369
|
+
acCmdAlignLeft = 43,
|
|
370
|
+
acCmdAlignRight = 44,
|
|
371
|
+
acCmdAlignTop = 45,
|
|
372
|
+
acCmdAlignBottom = 46,
|
|
373
|
+
acCmdAlignToGrid = 47,
|
|
374
|
+
acCmdSizeToGrid = 48,
|
|
375
|
+
acCmdOptions = 49,
|
|
376
|
+
acCmdSelectRecord = 50,
|
|
377
|
+
acCmdSortingAndGrouping = 51,
|
|
378
|
+
acCmdBringToFront = 52,
|
|
379
|
+
acCmdSendToBack = 53,
|
|
380
|
+
acCmdPrintPreview = 54,
|
|
381
|
+
acCmdApplyDefault = 55,
|
|
382
|
+
acCmdSetControlDefaults = 56,
|
|
383
|
+
acCmdOLEObjectDefaultVerb = 57,
|
|
384
|
+
acCmdClose = 58,
|
|
385
|
+
acCmdSizeToFit = 59,
|
|
386
|
+
acCmdDocMinimize = 60,
|
|
387
|
+
acCmdViewRuler = 61,
|
|
388
|
+
acCmdSnapToGrid = 62,
|
|
389
|
+
acCmdViewGrid = 63,
|
|
390
|
+
acCmdPasteSpecial = 64,
|
|
391
|
+
acCmdRecordsGoToNext = 65,
|
|
392
|
+
acCmdRecordsGoToPrevious = 66,
|
|
393
|
+
acCmdRecordsGoToFirst = 67,
|
|
394
|
+
acCmdRecordsGoToLast = 68,
|
|
395
|
+
acCmdSizeToFitForm = 69,
|
|
396
|
+
acCmdEditingAllowed = 70,
|
|
397
|
+
acCmdClearGrid = 71,
|
|
398
|
+
acCmdJoinProperties = 72,
|
|
399
|
+
acCmdQueryTotals = 73,
|
|
400
|
+
acCmdQueryTypeCrosstab = 74,
|
|
401
|
+
acCmdTableNames = 75,
|
|
402
|
+
acCmdQueryParameters = 76,
|
|
403
|
+
acCmdFormatCells = 77,
|
|
404
|
+
acCmdDataEntry = 78,
|
|
405
|
+
acCmdHideColumns = 79,
|
|
406
|
+
acCmdUnhideColumns = 80,
|
|
407
|
+
acCmdDeleteQueryColumn = 81,
|
|
408
|
+
acCmdInsertQueryColumn = 82,
|
|
409
|
+
acCmdRemoveTable = 84,
|
|
410
|
+
acCmdViewToolbox = 85,
|
|
411
|
+
acCmdMacroNames = 86,
|
|
412
|
+
acCmdMacroConditions = 87,
|
|
413
|
+
acCmdSingleStep = 88,
|
|
414
|
+
acCmdQueryTypeSelect = 89,
|
|
415
|
+
acCmdQueryTypeUpdate = 90,
|
|
416
|
+
acCmdQueryTypeAppend = 91,
|
|
417
|
+
acCmdQueryTypeDelete = 92,
|
|
418
|
+
acCmdApplyFilterSort = 93,
|
|
419
|
+
acCmdQueryTypeMakeTable = 94,
|
|
420
|
+
acCmdLoadFromQuery = 95,
|
|
421
|
+
acCmdSaveAsQuery = 96,
|
|
422
|
+
acCmdSaveRecord = 97,
|
|
423
|
+
acCmdAdvancedFilterSort = 99,
|
|
424
|
+
acCmdMicrosoftAccessHelpTopics = 100,
|
|
425
|
+
acCmdLinkTables = 102,
|
|
426
|
+
acCmdUserAndGroupPermissions = 103,
|
|
427
|
+
acCmdUserAndGroupAccounts = 104,
|
|
428
|
+
acCmdFreezeColumn = 105,
|
|
429
|
+
acCmdUnfreezeAllColumns = 106,
|
|
430
|
+
acCmdPrimaryKey = 107,
|
|
431
|
+
acCmdSubformDatasheet = 108,
|
|
432
|
+
acCmdSelectAllRecords = 109,
|
|
433
|
+
acCmdViewTables = 110,
|
|
434
|
+
acCmdViewQueries = 111,
|
|
435
|
+
acCmdViewForms = 112,
|
|
436
|
+
acCmdViewReports = 113,
|
|
437
|
+
acCmdViewMacros = 114,
|
|
438
|
+
acCmdViewModules = 115,
|
|
439
|
+
acCmdRowHeight = 116,
|
|
440
|
+
acCmdColumnWidth = 117,
|
|
441
|
+
acCmdInsertFileIntoModule = 118,
|
|
442
|
+
acCmdSaveModuleAsText = 119,
|
|
443
|
+
acCmdFindPrevious = 120,
|
|
444
|
+
acCmdWindowSplit = 121,
|
|
445
|
+
acCmdProcedureDefinition = 122,
|
|
446
|
+
acCmdDebugWindow = 123,
|
|
447
|
+
acCmdReset = 124,
|
|
448
|
+
acCmdCompileAllModules = 125,
|
|
449
|
+
acCmdCompileAndSaveAllModules = 126,
|
|
450
|
+
acCmdGoContinue = 127,
|
|
451
|
+
acCmdStepOver = 128,
|
|
452
|
+
acCmdSetNextStatement = 129,
|
|
453
|
+
acCmdShowNextStatement = 130,
|
|
454
|
+
acCmdToggleBreakpoint = 131,
|
|
455
|
+
acCmdClearAllBreakpoints = 132,
|
|
456
|
+
acCmdRelationships = 133,
|
|
457
|
+
acCmdNewObjectTable = 134,
|
|
458
|
+
acCmdNewObjectQuery = 135,
|
|
459
|
+
acCmdNewObjectForm = 136,
|
|
460
|
+
acCmdNewObjectReport = 137,
|
|
461
|
+
acCmdNewObjectMacro = 138,
|
|
462
|
+
acCmdNewObjectModule = 139,
|
|
463
|
+
acCmdNewObjectClassModule = 140,
|
|
464
|
+
acCmdLayoutPreview = 141,
|
|
465
|
+
acCmdSaveAsReport = 142,
|
|
466
|
+
acCmdRename = 143,
|
|
467
|
+
acCmdRemoveFilterSort = 144,
|
|
468
|
+
acCmdSaveLayout = 145,
|
|
469
|
+
acCmdClearAll = 146,
|
|
470
|
+
acCmdHideTable = 147,
|
|
471
|
+
acCmdShowDirectRelationships = 148,
|
|
472
|
+
acCmdShowAllRelationships = 149,
|
|
473
|
+
acCmdCreateRelationship = 150,
|
|
474
|
+
acCmdEditRelationship = 151,
|
|
475
|
+
acCmdIndexes = 152,
|
|
476
|
+
acCmdAlignToShortest = 153,
|
|
477
|
+
acCmdAlignToTallest = 154,
|
|
478
|
+
acCmdSizeToNarrowest = 155,
|
|
479
|
+
acCmdSizeToWidest = 156,
|
|
480
|
+
acCmdHorizontalSpacingMakeEqual = 157,
|
|
481
|
+
acCmdHorizontalSpacingDecrease = 158,
|
|
482
|
+
acCmdHorizontalSpacingIncrease = 159,
|
|
483
|
+
acCmdVerticalSpacingMakeEqual = 160,
|
|
484
|
+
acCmdVerticalSpacingDecrease = 161,
|
|
485
|
+
acCmdVerticalSpacingIncrease = 162,
|
|
486
|
+
acCmdSortAscending = 163,
|
|
487
|
+
acCmdSortDescending = 164,
|
|
488
|
+
acCmdToolbarsCustomize = 165,
|
|
489
|
+
acCmdOLEObjectConvert = 167,
|
|
490
|
+
acCmdQueryTypeSQLDataDefinition = 168,
|
|
491
|
+
acCmdQueryTypeSQLPassThrough = 169,
|
|
492
|
+
acCmdViewCode = 170,
|
|
493
|
+
acCmdConvertDatabase = 171,
|
|
494
|
+
acCmdCallStack = 172,
|
|
495
|
+
acCmdSend = 173,
|
|
496
|
+
acCmdOutputToExcel = 175,
|
|
497
|
+
acCmdOutputToRTF = 176,
|
|
498
|
+
acCmdOutputToText = 177,
|
|
499
|
+
acCmdInvokeBuilder = 178,
|
|
500
|
+
acCmdZoomBox = 179,
|
|
501
|
+
acCmdQueryTypeSQLUnion = 180,
|
|
502
|
+
acCmdRun = 181,
|
|
503
|
+
acCmdPageHdrFtr = 182,
|
|
504
|
+
acCmdDesignView = 183,
|
|
505
|
+
acCmdSQLView = 184,
|
|
506
|
+
acCmdShowTable = 185,
|
|
507
|
+
acCmdCloseWindow = 186,
|
|
508
|
+
acCmdInsertRows = 187,
|
|
509
|
+
acCmdDeleteRows = 188,
|
|
510
|
+
acCmdCut = 189,
|
|
511
|
+
acCmdCopy = 190,
|
|
512
|
+
acCmdPaste = 191,
|
|
513
|
+
acCmdAutoDial = 192,
|
|
514
|
+
acCmdNewObjectAutoForm = 193,
|
|
515
|
+
acCmdNewObjectAutoReport = 194,
|
|
516
|
+
acCmdWordMailMerge = 195,
|
|
517
|
+
acCmdTestValidationRules = 196,
|
|
518
|
+
acCmdControlWizardsToggle = 197,
|
|
519
|
+
acCmdEnd = 198,
|
|
520
|
+
acCmdRedo = 199,
|
|
521
|
+
acCmdObjectBrowser = 200,
|
|
522
|
+
acCmdAddWatch = 201,
|
|
523
|
+
acCmdEditWatch = 202,
|
|
524
|
+
acCmdQuickWatch = 203,
|
|
525
|
+
acCmdStepToCursor = 204,
|
|
526
|
+
acCmdIndent = 205,
|
|
527
|
+
acCmdOutdent = 206,
|
|
528
|
+
acCmdFilterByForm = 207,
|
|
529
|
+
acCmdFilterBySelection = 208,
|
|
530
|
+
acCmdViewLargeIcons = 209,
|
|
531
|
+
acCmdViewDetails = 210,
|
|
532
|
+
acCmdViewSmallIcons = 211,
|
|
533
|
+
acCmdViewList = 212,
|
|
534
|
+
acCmdLineUpIcons = 213,
|
|
535
|
+
acCmdArrangeIconsByName = 214,
|
|
536
|
+
acCmdArrangeIconsByType = 215,
|
|
537
|
+
acCmdArrangeIconsByCreated = 216,
|
|
538
|
+
acCmdArrangeIconsByModified = 217,
|
|
539
|
+
acCmdArrangeIconsAuto = 218,
|
|
540
|
+
acCmdCreateShortcut = 219,
|
|
541
|
+
acCmdToggleFilter = 220,
|
|
542
|
+
acCmdOpenTable = 221,
|
|
543
|
+
acCmdInsertPicture = 222,
|
|
544
|
+
acCmdDeleteRecord = 223,
|
|
545
|
+
acCmdStartupProperties = 224,
|
|
546
|
+
acCmdPageNumber = 225,
|
|
547
|
+
acCmdDateAndTime = 226,
|
|
548
|
+
acCmdChangeToTextBox = 227,
|
|
549
|
+
acCmdChangeToLabel = 228,
|
|
550
|
+
acCmdChangeToListBox = 229,
|
|
551
|
+
acCmdChangeToComboBox = 230,
|
|
552
|
+
acCmdChangeToCheckBox = 231,
|
|
553
|
+
acCmdChangeToToggleButton = 232,
|
|
554
|
+
acCmdChangeToOptionButton = 233,
|
|
555
|
+
acCmdChangeToImage = 234,
|
|
556
|
+
acCmdAnswerWizard = 235,
|
|
557
|
+
acCmdMicrosoftOnTheWeb = 236,
|
|
558
|
+
acCmdClearItemDefaults = 237,
|
|
559
|
+
acCmdZoom200 = 238,
|
|
560
|
+
acCmdZoom150 = 239,
|
|
561
|
+
acCmdZoom100 = 240,
|
|
562
|
+
acCmdZoom75 = 241,
|
|
563
|
+
acCmdZoom50 = 242,
|
|
564
|
+
acCmdZoom25 = 243,
|
|
565
|
+
acCmdZoom10 = 244,
|
|
566
|
+
acCmdFitToWindow = 245,
|
|
567
|
+
acCmdPreviewOnePage = 246,
|
|
568
|
+
acCmdPreviewTwoPages = 247,
|
|
569
|
+
acCmdPreviewFourPages = 248,
|
|
570
|
+
acCmdPreviewEightPages = 249,
|
|
571
|
+
acCmdPreviewTwelvePages = 250,
|
|
572
|
+
acCmdOpenURL = 251,
|
|
573
|
+
acCmdOpenStartPage = 252,
|
|
574
|
+
acCmdOpenSearchPage = 253,
|
|
575
|
+
acCmdRegisterActiveXControls = 254,
|
|
576
|
+
acCmdDeleteTab = 255,
|
|
577
|
+
acCmdDatabaseProperties = 256,
|
|
578
|
+
acCmdImport = 257,
|
|
579
|
+
acCmdInsertActiveXControl = 258,
|
|
580
|
+
acCmdInsertHyperlink = 259,
|
|
581
|
+
acCmdReferences = 260,
|
|
582
|
+
acCmdAutoCorrect = 261,
|
|
583
|
+
acCmdInsertProcedure = 262,
|
|
584
|
+
acCmdCreateReplica = 263,
|
|
585
|
+
acCmdSynchronizeNow = 264,
|
|
586
|
+
acCmdRecoverDesignMaster = 265,
|
|
587
|
+
acCmdResolveConflicts = 266,
|
|
588
|
+
acCmdDeleteWatch = 267,
|
|
589
|
+
acCmdSpelling = 269,
|
|
590
|
+
acCmdAutoFormat = 270,
|
|
591
|
+
acCmdDeleteTableColumn = 271,
|
|
592
|
+
acCmdInsertTableColumn = 272,
|
|
593
|
+
acCmdInsertLookupColumn = 273,
|
|
594
|
+
acCmdRenameColumn = 274,
|
|
595
|
+
acCmdSetDatabasePassword = 275,
|
|
596
|
+
acCmdUserLevelSecurityWizard = 276,
|
|
597
|
+
acCmdFilterExcludingSelection = 277,
|
|
598
|
+
acCmdQuickPrint = 278,
|
|
599
|
+
acCmdConvertMacrosToVisualBasic = 279,
|
|
600
|
+
acCmdSaveAllModules = 280,
|
|
601
|
+
acCmdFormView = 281,
|
|
602
|
+
acCmdDatasheetView = 282,
|
|
603
|
+
acCmdAnalyzePerformance = 283,
|
|
604
|
+
acCmdAnalyzeTable = 284,
|
|
605
|
+
acCmdDocumenter = 285,
|
|
606
|
+
acCmdTileHorizontally = 286,
|
|
607
|
+
acCmdProperties = 287,
|
|
608
|
+
acCmdTransparentBackground = 288,
|
|
609
|
+
acCmdTransparentBorder = 289,
|
|
610
|
+
acCmdCompileLoadedModules = 290,
|
|
611
|
+
acCmdInsertLookupField = 291,
|
|
612
|
+
acCmdUndo = 292,
|
|
613
|
+
acCmdInsertChart = 293,
|
|
614
|
+
acCmdGoBack = 294,
|
|
615
|
+
acCmdGoForward = 295,
|
|
616
|
+
acCmdStopLoadingPage = 296,
|
|
617
|
+
acCmdRefreshPage = 297,
|
|
618
|
+
acCmdFavoritesOpen = 298,
|
|
619
|
+
acCmdFavoritesAddTo = 299,
|
|
620
|
+
acCmdShowOnlyWebToolbar = 300,
|
|
621
|
+
acCmdToolbarControlProperties = 301,
|
|
622
|
+
acCmdShowMembers = 302,
|
|
623
|
+
acCmdListConstants = 303,
|
|
624
|
+
acCmdQuickInfo = 304,
|
|
625
|
+
acCmdParameterInfo = 305,
|
|
626
|
+
acCmdCompleteWord = 306,
|
|
627
|
+
acCmdBookmarksToggle = 307,
|
|
628
|
+
acCmdBookmarksNext = 308,
|
|
629
|
+
acCmdBookmarksPrevious = 309,
|
|
630
|
+
acCmdBookmarksClearAll = 310,
|
|
631
|
+
acCmdStepOut = 311,
|
|
632
|
+
acCmdFindPrevWordUnderCursor = 312,
|
|
633
|
+
acCmdFindNextWordUnderCursor = 313,
|
|
634
|
+
acCmdObjBrwFindWholeWordOnly = 314,
|
|
635
|
+
acCmdObjBrwShowHiddenMembers = 315,
|
|
636
|
+
acCmdObjBrwHelp = 316,
|
|
637
|
+
acCmdObjBrwViewDefinition = 317,
|
|
638
|
+
acCmdObjBrwGroupMembers = 318,
|
|
639
|
+
acCmdSelectReport = 319,
|
|
640
|
+
acCmdSaveAsHTML = 321,
|
|
641
|
+
acCmdSaveAsIDC = 322,
|
|
642
|
+
acCmdSaveAsASP = 323,
|
|
643
|
+
acCmdPublishDefaults = 324,
|
|
644
|
+
acCmdEditHyperlink = 325,
|
|
645
|
+
acCmdOpenHyperlink = 326,
|
|
646
|
+
acCmdOpenNewHyperlink = 327,
|
|
647
|
+
acCmdCopyHyperlink = 328,
|
|
648
|
+
acCmdHyperlinkDisplayText = 329,
|
|
649
|
+
acCmdTabControlPageOrder = 330,
|
|
650
|
+
acCmdInsertPage = 331,
|
|
651
|
+
acCmdDeletePage = 332,
|
|
652
|
+
acCmdSelectAll = 333,
|
|
653
|
+
acCmdCreateMenuFromMacro = 334,
|
|
654
|
+
acCmdCreateToolbarFromMacro = 335,
|
|
655
|
+
acCmdCreateShortcutMenuFromMacro = 336,
|
|
656
|
+
acCmdDelete = 337,
|
|
657
|
+
acCmdRunOpenMacro = 338,
|
|
658
|
+
acCmdLastPosition = 339,
|
|
659
|
+
acCmdPrint = 340,
|
|
660
|
+
acCmdFindNext = 341,
|
|
661
|
+
acCmdStepInto = 342,
|
|
662
|
+
acCmdClearHyperlink = 343,
|
|
663
|
+
acCmdDataAccessPageBrowse = 344,
|
|
664
|
+
acCmdNewObjectDataAccessPage = 346,
|
|
665
|
+
acCmdSelectDataAccessPage = 347,
|
|
666
|
+
acCmdViewDataAccessPages = 349,
|
|
667
|
+
acCmdNewObjectView = 350,
|
|
668
|
+
acCmdNewObjectStoredProcedure = 351,
|
|
669
|
+
acCmdNewObjectDiagram = 352,
|
|
670
|
+
acCmdViewFieldList = 353,
|
|
671
|
+
acCmdViewDiagrams = 354,
|
|
672
|
+
acCmdViewStoredProcedures = 355,
|
|
673
|
+
acCmdViewViews = 356,
|
|
674
|
+
acCmdViewShowPaneSQL = 357,
|
|
675
|
+
acCmdViewShowPaneDiagram = 358,
|
|
676
|
+
acCmdViewShowPaneGrid = 359,
|
|
677
|
+
acCmdViewVerifySQL = 360,
|
|
678
|
+
acCmdQueryGroupBy = 361,
|
|
679
|
+
acCmdQueryAddToOutput = 362,
|
|
680
|
+
acCmdViewTableColumnNames = 363,
|
|
681
|
+
acCmdViewTableNameOnly = 364,
|
|
682
|
+
acCmdHidePane = 365,
|
|
683
|
+
acCmdRemove = 366,
|
|
684
|
+
acCmdViewTableColumnProperties = 368,
|
|
685
|
+
acCmdViewTableKeys = 369,
|
|
686
|
+
acCmdViewTableUserView = 370,
|
|
687
|
+
acCmdZoomSelection = 371,
|
|
688
|
+
acCmdDiagramNewLabel = 372,
|
|
689
|
+
acCmdDiagramAddRelatedTables = 373,
|
|
690
|
+
acCmdDiagramShowRelationshipLabels = 374,
|
|
691
|
+
acCmdDiagramModifyUserDefinedView = 375,
|
|
692
|
+
acCmdDiagramViewPageBreaks = 376,
|
|
693
|
+
acCmdDiagramRecalculatePageBreaks = 377,
|
|
694
|
+
acCmdDiagramAutosizeSelectedTables = 378,
|
|
695
|
+
acCmdDiagramLayoutSelection = 379,
|
|
696
|
+
acCmdDiagramLayoutDiagram = 380,
|
|
697
|
+
acCmdDiagramNewTable = 381,
|
|
698
|
+
acCmdDiagramDeleteRelationship = 382,
|
|
699
|
+
acCmdConnection = 383,
|
|
700
|
+
acCmdEditTriggers = 384,
|
|
701
|
+
acCmdDataAccessPageDesignView = 385,
|
|
702
|
+
acCmdPromote = 386,
|
|
703
|
+
acCmdGroupByTable = 387,
|
|
704
|
+
acCmdDemote = 388,
|
|
705
|
+
acCmdSaveAsDataAccessPage = 389,
|
|
706
|
+
acCmdMicrosoftScriptEditor = 390,
|
|
707
|
+
acCmdWorkgroupAdministrator = 391,
|
|
708
|
+
acCmdNewObjectFunction = 394,
|
|
709
|
+
acCmdViewFunctions = 395,
|
|
710
|
+
acCmdPivotTableView = 396,
|
|
711
|
+
acCmdPivotChartView = 397,
|
|
712
|
+
acCmdPivotAutoFilter = 398,
|
|
713
|
+
acCmdPivotTableSubtotal = 399,
|
|
714
|
+
acCmdPivotCollapse = 400,
|
|
715
|
+
acCmdPivotExpand = 401,
|
|
716
|
+
acCmdPivotTableHideDetails = 402,
|
|
717
|
+
acCmdPivotTableShowDetails = 403,
|
|
718
|
+
acCmdPivotRefresh = 404,
|
|
719
|
+
acCmdPivotTableExportToExcel = 405,
|
|
720
|
+
acCmdPivotTableMoveToRowArea = 406,
|
|
721
|
+
acCmdPivotTableMoveToColumnArea = 407,
|
|
722
|
+
acCmdPivotTableMoveToFilterArea = 408,
|
|
723
|
+
acCmdPivotTableMoveToDetailArea = 409,
|
|
724
|
+
acCmdPivotTablePromote = 410,
|
|
725
|
+
acCmdPivotTableDemote = 411,
|
|
726
|
+
acCmdPivotAutoSum = 412,
|
|
727
|
+
acCmdPivotAutoCount = 413,
|
|
728
|
+
acCmdPivotAutoMin = 414,
|
|
729
|
+
acCmdPivotAutoMax = 415,
|
|
730
|
+
acCmdPivotAutoAverage = 416,
|
|
731
|
+
acCmdPivotAutoStdDev = 417,
|
|
732
|
+
acCmdPivotAutoVar = 418,
|
|
733
|
+
acCmdPivotAutoStdDevP = 419,
|
|
734
|
+
acCmdPivotAutoVarP = 420,
|
|
735
|
+
acCmdPivotShowTop1 = 421,
|
|
736
|
+
acCmdPivotShowTop2 = 422,
|
|
737
|
+
acCmdPivotShowTop5 = 423,
|
|
738
|
+
acCmdPivotShowTop10 = 424,
|
|
739
|
+
acCmdPivotShowTop25 = 425,
|
|
740
|
+
acCmdPivotShowTop1Percent = 426,
|
|
741
|
+
acCmdPivotShowTop2Percent = 427,
|
|
742
|
+
acCmdPivotShowTop5Percent = 428,
|
|
743
|
+
acCmdPivotShowTop10Percent = 429,
|
|
744
|
+
acCmdPivotShowTop25Percent = 430,
|
|
745
|
+
acCmdPivotShowTopOther = 431,
|
|
746
|
+
acCmdPivotShowBottom1 = 432,
|
|
747
|
+
acCmdPivotShowBottom2 = 433,
|
|
748
|
+
acCmdPivotShowBottom5 = 434,
|
|
749
|
+
acCmdPivotShowBottom10 = 435,
|
|
750
|
+
acCmdPivotShowBottom25 = 436,
|
|
751
|
+
acCmdPivotShowBottom1Percent = 437,
|
|
752
|
+
acCmdPivotShowBottom2Percent = 438,
|
|
753
|
+
acCmdPivotShowBottom5Percent = 439,
|
|
754
|
+
acCmdPivotShowBottom10Percent = 440,
|
|
755
|
+
acCmdPivotShowBottom25Percent = 441,
|
|
756
|
+
acCmdPivotShowBottomOther = 442,
|
|
757
|
+
acCmdPivotTableCreateCalcTotal = 443,
|
|
758
|
+
acCmdPivotTableCreateCalcField = 444,
|
|
759
|
+
acCmdPivotTableShowAsNormal = 445,
|
|
760
|
+
acCmdPivotTablePercentRowTotal = 446,
|
|
761
|
+
acCmdPivotTablePercentColumnTotal = 447,
|
|
762
|
+
acCmdPivotTablePercentParentRowItem = 448,
|
|
763
|
+
acCmdPivotTablePercentParentColumnItem = 449,
|
|
764
|
+
acCmdPivotTablePercentGrandTotal = 450,
|
|
765
|
+
acCmdPivotTableExpandIndicators = 451,
|
|
766
|
+
acCmdPivotDropAreas = 452,
|
|
767
|
+
acCmdPivotChartType = 453,
|
|
768
|
+
acCmdPivotDelete = 454,
|
|
769
|
+
acCmdPivotChartShowLegend = 455,
|
|
770
|
+
acCmdPivotChartByRowByColumn = 456,
|
|
771
|
+
acCmdPivotChartDrillInto = 457,
|
|
772
|
+
acCmdPivotChartMultiplePlots = 458,
|
|
773
|
+
acCmdPivotChartMultiplePlotsUnifiedScale = 459,
|
|
774
|
+
acCmdPivotChartUndo = 460,
|
|
775
|
+
acCmdPivotShowAll = 461,
|
|
776
|
+
acCmdSubformFormView = 462,
|
|
777
|
+
acCmdSubformDatasheetView = 463,
|
|
778
|
+
acCmdSubformPivotTableView = 464,
|
|
779
|
+
acCmdSubformPivotChartView = 465,
|
|
780
|
+
acCmdWebPagePreview = 466,
|
|
781
|
+
acCmdPageProperties = 467,
|
|
782
|
+
acCmdDataOutline = 468,
|
|
783
|
+
acCmdInsertMovieFromFile = 469,
|
|
784
|
+
acCmdInsertPivotTable = 470,
|
|
785
|
+
acCmdInsertSpreadsheet = 471,
|
|
786
|
+
acCmdInsertUnboundSection = 472,
|
|
787
|
+
acCmdWebTheme = 473,
|
|
788
|
+
acCmdBackgroundPicture = 474,
|
|
789
|
+
acCmdBackgroundSound = 475,
|
|
790
|
+
acCmdAlignMiddle = 476,
|
|
791
|
+
acCmdAlignCenter = 477,
|
|
792
|
+
acCmdAlignmentAndSizing = 478,
|
|
793
|
+
acCmdDataAccessPageFieldListRefresh = 479,
|
|
794
|
+
acCmdDataAccessPageAddToPage = 480,
|
|
795
|
+
acCmdZoom500 = 481,
|
|
796
|
+
acCmdZoom1000 = 482,
|
|
797
|
+
acCmdPrintRelationships = 483,
|
|
798
|
+
acCmdGroupControls = 484,
|
|
799
|
+
acCmdUngroupControls = 485,
|
|
800
|
+
acCmdWebPageProperties = 486,
|
|
801
|
+
acCmdExport = 487,
|
|
802
|
+
acCmdOfficeClipboard = 488,
|
|
803
|
+
acCmdDeleteTable = 489,
|
|
804
|
+
acCmdPasteAsHyperlink = 490,
|
|
805
|
+
acCmdNewGroup = 491,
|
|
806
|
+
acCmdRenameGroup = 492,
|
|
807
|
+
acCmdDeleteGroup = 493,
|
|
808
|
+
acCmdAddToNewGroup = 494,
|
|
809
|
+
acCmdSubformInNewWindow = 495,
|
|
810
|
+
acCmdServerProperties = 496,
|
|
811
|
+
acCmdTableCustomView = 497,
|
|
812
|
+
acCmdTableAddTable = 498,
|
|
813
|
+
acCmdInsertSubdatasheet = 499,
|
|
814
|
+
acCmdConditionalFormatting = 500,
|
|
815
|
+
acCmdChangeToCommandButton = 501,
|
|
816
|
+
acCmdSubdatasheetExpandAll = 504,
|
|
817
|
+
acCmdSubdatasheetCollapseAll = 505,
|
|
818
|
+
acCmdSubdatasheetRemove = 506,
|
|
819
|
+
acCmdServerFilterByForm = 507,
|
|
820
|
+
acCmdMaximiumRecords = 508,
|
|
821
|
+
acCmdSpeech = 511,
|
|
822
|
+
acCmdBackup = 513,
|
|
823
|
+
acCmdRestore = 514,
|
|
824
|
+
acCmdTransferSQLDatabase = 515,
|
|
825
|
+
acCmdCopyDatabaseFile = 516,
|
|
826
|
+
acCmdDropSQLDatabase = 517,
|
|
827
|
+
acCmdLinkedTableManager = 519,
|
|
828
|
+
acCmdDatabaseSplitter = 520,
|
|
829
|
+
acCmdSwitchboardManager = 521,
|
|
830
|
+
acCmdUpsizingWizard = 522,
|
|
831
|
+
acCmdPartialReplicaWizard = 524,
|
|
832
|
+
acCmdVisualBasicEditor = 525,
|
|
833
|
+
acCmdAddInManager = 526,
|
|
834
|
+
acCmdPivotTableClearCustomOrdering = 527,
|
|
835
|
+
acCmdPivotTableFilterBySelection = 528,
|
|
836
|
+
acCmdPivotTableRemove = 529,
|
|
837
|
+
acCmdPivotTableGroupItems = 530,
|
|
838
|
+
acCmdPivotTableUngroupItems = 531,
|
|
839
|
+
acCmdPivotChartDrillOut = 532,
|
|
840
|
+
acCmdShowEnvelope = 533,
|
|
841
|
+
acCmdPivotChartSortAscByTotal = 534,
|
|
842
|
+
acCmdPivotChartSortDescByTotal = 535,
|
|
843
|
+
acCmdViewObjectDependencies = 536,
|
|
844
|
+
acCmdPublishDatabase = 537,
|
|
845
|
+
acCmdCloseDatabase = 538,
|
|
846
|
+
acCmdReportView = 539,
|
|
847
|
+
acCmdToggleOffline = 540,
|
|
848
|
+
acCmdRefreshData = 541,
|
|
849
|
+
acCmdShareOnSharePoint = 542,
|
|
850
|
+
acCmdSavedImports = 543,
|
|
851
|
+
acCmdImportAttachAccess = 544,
|
|
852
|
+
acCmdImportAttachExcel = 545,
|
|
853
|
+
acCmdImportAttachText = 546,
|
|
854
|
+
acCmdImportAttachSharePointList = 547,
|
|
855
|
+
acCmdImportAttachXML = 548,
|
|
856
|
+
acCmdImportAttachODBC = 549,
|
|
857
|
+
acCmdImportAttachHTML = 550,
|
|
858
|
+
acCmdImportAttachOutlook = 551,
|
|
859
|
+
acCmdImportAttachdBase = 552,
|
|
860
|
+
acCmdImportAttachParadox = 553,
|
|
861
|
+
acCmdImportAttachLotus = 554,
|
|
862
|
+
acCmdSavedExports = 555,
|
|
863
|
+
acCmdExportExcel = 556,
|
|
864
|
+
acCmdExportSharePointList = 557,
|
|
865
|
+
acCmdExportRTF = 558,
|
|
866
|
+
acCmdExportAccess = 559,
|
|
867
|
+
acCmdExportText = 560,
|
|
868
|
+
acCmdExportXML = 561,
|
|
869
|
+
acCmdExportODBC = 562,
|
|
870
|
+
acCmdExportSnapShot = 563,
|
|
871
|
+
acCmdExportHTML = 564,
|
|
872
|
+
acCmdExportdBase = 565,
|
|
873
|
+
acCmdExportParadox = 566,
|
|
874
|
+
acCmdExportLotus = 567,
|
|
875
|
+
acCmdStackedLayout = 568,
|
|
876
|
+
acCmdTabularLayout = 569,
|
|
877
|
+
acCmdSelectEntireRow = 570,
|
|
878
|
+
acCmdSelectEntireColumn = 571,
|
|
879
|
+
acCmdMoveColumnCellUp = 572,
|
|
880
|
+
acCmdMoveColumnCellDown = 573,
|
|
881
|
+
acCmdLayoutGridlinesBoth = 574,
|
|
882
|
+
acCmdLayoutGridlinesVertical = 575,
|
|
883
|
+
acCmdLayoutGridlinesHorizontal = 576,
|
|
884
|
+
acCmdLayoutGridlinesNone = 577,
|
|
885
|
+
acCmdLayoutGridlinesCrossHatch = 578,
|
|
886
|
+
acCmdLayoutGridlinesTop = 579,
|
|
887
|
+
acCmdLayoutGridlinesBottom = 580,
|
|
888
|
+
acCmdLayoutGridlinesOutline = 581,
|
|
889
|
+
acCmdRemoveFromLayout = 582,
|
|
890
|
+
acCmdAddFromOutlook = 583,
|
|
891
|
+
acCmdSaveAsOutlookContact = 584,
|
|
892
|
+
acCmdInsertLogo = 585,
|
|
893
|
+
acCmdInsertTitle = 586,
|
|
894
|
+
acCmdPasteFormatting = 587,
|
|
895
|
+
acCmdMacroArguments = 588,
|
|
896
|
+
acCmdMacroAllActions = 589,
|
|
897
|
+
acCmdPrintSelection = 590,
|
|
898
|
+
acCmdPublishFixedFormat = 591,
|
|
899
|
+
acCmdExportFixedFormat = 592,
|
|
900
|
+
acCmdLayoutView = 593,
|
|
901
|
+
acCmdNewObjectContinuousForm = 594,
|
|
902
|
+
acCmdNewObjectSplitForm = 595,
|
|
903
|
+
acCmdNewObjectPivotChart = 596,
|
|
904
|
+
acCmdNewObjectPivotTable = 597,
|
|
905
|
+
acCmdNewObjectDatasheetForm = 598,
|
|
906
|
+
acCmdNewObjectModalForm = 599,
|
|
907
|
+
acCmdNewObjectBlankForm = 600,
|
|
908
|
+
acCmdNewObjectLabelsReport = 601,
|
|
909
|
+
acCmdNewObjectBlankReport = 602,
|
|
910
|
+
acCmdNewObjectDesignQuery = 603,
|
|
911
|
+
acCmdNewObjectDesignForm = 604,
|
|
912
|
+
acCmdNewObjectDesignReport = 605,
|
|
913
|
+
acCmdNewObjectDesignTable = 606,
|
|
914
|
+
acCmdEditListItems = 607,
|
|
915
|
+
acCmdCollectDataViaEmail = 608,
|
|
916
|
+
acCmdManageReplies = 609,
|
|
917
|
+
acCmdAnchorTopLeft = 610,
|
|
918
|
+
acCmdAnchorStretchAcross = 611,
|
|
919
|
+
acCmdAnchorTopRight = 612,
|
|
920
|
+
acCmdAnchorStretchDown = 613,
|
|
921
|
+
acCmdAnchorStretchDownAcross = 614,
|
|
922
|
+
acCmdAnchorStretchDownRight = 615,
|
|
923
|
+
acCmdAnchorBottomLeft = 616,
|
|
924
|
+
acCmdAnchorBottomStretchAcross = 617,
|
|
925
|
+
acCmdAnchorBottomRight = 618,
|
|
926
|
+
acCmdFilterMenu = 619,
|
|
927
|
+
acCmdShowColumnHistory = 620,
|
|
928
|
+
acCmdBrowseSharePointList = 621,
|
|
929
|
+
acCmdModifySharePointList = 622,
|
|
930
|
+
acCmdModifySharePointListAlerts = 623,
|
|
931
|
+
acCmdModifySharePointListWorkflow = 624,
|
|
932
|
+
acCmdModifySharePointListPermissions = 625,
|
|
933
|
+
acCmdRefreshSharePointList = 626,
|
|
934
|
+
acCmdDeleteSharePointList = 627,
|
|
935
|
+
acCmdControlMarginsNone = 628,
|
|
936
|
+
acCmdControlMarginsNarrow = 629,
|
|
937
|
+
acCmdControlMarginsMedium = 630,
|
|
938
|
+
acCmdControlMarginsWide = 631,
|
|
939
|
+
acCmdControlPaddingNone = 632,
|
|
940
|
+
acCmdControlPaddingNarrow = 633,
|
|
941
|
+
acCmdControlPaddingMedium = 634,
|
|
942
|
+
acCmdControlPaddingWide = 635,
|
|
943
|
+
acCmdShowDatePicker = 636,
|
|
944
|
+
acCmdSetCaption = 637,
|
|
945
|
+
acCmdSynchronize = 638,
|
|
946
|
+
acCmdDiscardChanges = 639,
|
|
947
|
+
acCmdDiscardChangesAndRefresh = 640,
|
|
948
|
+
acCmdSharePointSiteRecycleBin = 641,
|
|
949
|
+
acCmdToggleCacheListData = 642,
|
|
950
|
+
acCmdRemoveFilterFromCurrentColumn = 643,
|
|
951
|
+
acCmdRemoveAllFilters = 644,
|
|
952
|
+
acCmdRemoveAllSorts = 645,
|
|
953
|
+
acCmdCloseAll = 646,
|
|
954
|
+
acCmdFieldTemplates = 647,
|
|
955
|
+
acCmdApplyAutoFormat1 = 648,
|
|
956
|
+
acCmdApplyAutoFormat2 = 649,
|
|
957
|
+
acCmdApplyAutoFormat3 = 650,
|
|
958
|
+
acCmdApplyAutoFormat4 = 651,
|
|
959
|
+
acCmdApplyAutoFormat5 = 652,
|
|
960
|
+
acCmdApplyAutoFormat6 = 653,
|
|
961
|
+
acCmdApplyAutoFormat7 = 654,
|
|
962
|
+
acCmdApplyAutoFormat8 = 655,
|
|
963
|
+
acCmdApplyAutoFormat9 = 656,
|
|
964
|
+
acCmdApplyAutoFormat10 = 657,
|
|
965
|
+
acCmdApplyAutoFormat11 = 658,
|
|
966
|
+
acCmdApplyAutoFormat12 = 659,
|
|
967
|
+
acCmdApplyAutoFormat13 = 660,
|
|
968
|
+
acCmdApplyAutoFormat14 = 661,
|
|
969
|
+
acCmdApplyAutoFormat15 = 662,
|
|
970
|
+
acCmdApplyAutoFormat16 = 663,
|
|
971
|
+
acCmdApplyAutoFormat17 = 664,
|
|
972
|
+
acCmdApplyAutoFormat18 = 665,
|
|
973
|
+
acCmdApplyAutoFormat19 = 666,
|
|
974
|
+
acCmdApplyAutoFormat20 = 667,
|
|
975
|
+
acCmdApplyAutoFormat21 = 668,
|
|
976
|
+
acCmdApplyAutoFormat22 = 669,
|
|
977
|
+
acCmdApplyAutoFormat23 = 670,
|
|
978
|
+
acCmdApplyAutoFormat24 = 671,
|
|
979
|
+
acCmdApplyAutoFormat25 = 672,
|
|
980
|
+
acCmdManageAttachments = 673,
|
|
981
|
+
acCmdWorkflowTasks = 674,
|
|
982
|
+
acCmdStartNewWorkflow = 675,
|
|
983
|
+
acCmdShowMessageBar = 676,
|
|
984
|
+
acCmdHideMessageBar = 677,
|
|
985
|
+
acCmdLayoutInsertRowAbove = 678,
|
|
986
|
+
acCmdLayoutInsertRowBelow = 679,
|
|
987
|
+
acCmdLayoutInsertColumnLeft = 680,
|
|
988
|
+
acCmdLayoutInsertColumnRight = 681,
|
|
989
|
+
acCmdLayoutMergeCells = 682,
|
|
990
|
+
acCmdLayoutSplitColumnCell = 683,
|
|
991
|
+
acCmdLayoutSplitRowCell = 684,
|
|
992
|
+
acCmdShowLogicCatalog = 685,
|
|
993
|
+
acCmdSaveAsTemplate = 686,
|
|
994
|
+
acCmdSaveDatabaseAsNewTemplatePart = 687,
|
|
995
|
+
acCmdSaveSelectionAsNewDataType = 688,
|
|
996
|
+
acCmdNewObjectNavigationTop = 689,
|
|
997
|
+
acCmdNewObjectNavigationLeft = 690,
|
|
998
|
+
acCmdNewObjectNavigationRight = 691,
|
|
999
|
+
acCmdNewObjectNavigationTopTop = 692,
|
|
1000
|
+
acCmdNewObjectNavigationTopLeft = 693,
|
|
1001
|
+
acCmdNewObjectNavigationTopRight = 694,
|
|
1002
|
+
acCmdCompatCheckDatabase = 695,
|
|
1003
|
+
acCmdCompatCheckCurrentObject = 696,
|
|
1004
|
+
acCmdDesignObject = 697,
|
|
1005
|
+
acCmdCalculatedColumn = 698,
|
|
1006
|
+
acCmdSyncWebApplication = 699,
|
|
1007
|
+
acCmdConvertLinkedTableToLocal = 700,
|
|
1008
|
+
acCmdNewObjectContinuousFormWeb = 701,
|
|
1009
|
+
acCmdNewObjectDatasheetFormWeb = 702,
|
|
1010
|
+
acCmdNewObjectBlankFormWeb = 703,
|
|
1011
|
+
acCmdNewObjectBlankReportWeb = 704,
|
|
1012
|
+
acCmdNewObjectAutoFormWeb = 705,
|
|
1013
|
+
acCmdNewObjectAutoReportWeb = 706,
|
|
1014
|
+
acCmdNewObjectQueryWeb = 707,
|
|
1015
|
+
acCmdNewObjectMacroWeb = 708,
|
|
1016
|
+
acCmdNewObjectNavigationTopWeb = 709,
|
|
1017
|
+
acCmdNewObjectNavigationLeftWeb = 710,
|
|
1018
|
+
acCmdNewObjectNavigationRightWeb = 711,
|
|
1019
|
+
acCmdNewObjectNavigationTopTopWeb = 712,
|
|
1020
|
+
acCmdNewObjectNavigationTopLeftWeb = 713,
|
|
1021
|
+
acCmdNewObjectNavigationTopRightWeb = 714,
|
|
1022
|
+
acCmdSelectEntireLayout = 715,
|
|
1023
|
+
acCmdPrepareDatabaseForWeb = 716,
|
|
1024
|
+
acCmdManageTableEvents = 717,
|
|
1025
|
+
acCmdAddDataMacroAfterInsert = 718,
|
|
1026
|
+
acCmdAddDataMacroAfterUpdate = 719,
|
|
1027
|
+
acCmdAddDataMacroAfterDelete = 720,
|
|
1028
|
+
acCmdAddDataMacroBeforeDelete = 721,
|
|
1029
|
+
acCmdAddDataMacroBeforeChange = 722,
|
|
1030
|
+
acCmdAddNamedDataMacro = 723,
|
|
1031
|
+
acCmdInsertNavigationButton = 724
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
declare enum AcShowToolbar
|
|
1035
|
+
{
|
|
1036
|
+
acToolbarYes = 0,
|
|
1037
|
+
acToolbarWhereApprop = 1,
|
|
1038
|
+
acToolbarNo = 2
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
declare enum AcFormatConditionType
|
|
1042
|
+
{
|
|
1043
|
+
acFieldValue = 0,
|
|
1044
|
+
acExpression = 1,
|
|
1045
|
+
acFieldHasFocus = 2,
|
|
1046
|
+
acDataBar = 3
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
declare enum AcFormatConditionOperator
|
|
1050
|
+
{
|
|
1051
|
+
acBetween = 0,
|
|
1052
|
+
acNotBetween = 1,
|
|
1053
|
+
acEqual = 2,
|
|
1054
|
+
acNotEqual = 3,
|
|
1055
|
+
acGreaterThan = 4,
|
|
1056
|
+
acLessThan = 5,
|
|
1057
|
+
acGreaterThanOrEqual = 6,
|
|
1058
|
+
acLessThanOrEqual = 7
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
declare enum AcColorIndex
|
|
1062
|
+
{
|
|
1063
|
+
acColorIndexBlack = 0,
|
|
1064
|
+
acColorIndexMaroon = 1,
|
|
1065
|
+
acColorIndexGreen = 2,
|
|
1066
|
+
acColorIndexOlive = 3,
|
|
1067
|
+
acColorIndexDarkBlue = 4,
|
|
1068
|
+
acColorIndexViolet = 5,
|
|
1069
|
+
acColorIndexTeal = 6,
|
|
1070
|
+
acColorIndexGray = 7,
|
|
1071
|
+
acColorIndexSilver = 8,
|
|
1072
|
+
acColorIndexRed = 9,
|
|
1073
|
+
acColorIndexBrightGreen = 10,
|
|
1074
|
+
acColorIndexYellow = 11,
|
|
1075
|
+
acColorIndexBlue = 12,
|
|
1076
|
+
acColorIndexFuschia = 13,
|
|
1077
|
+
acColorIndexAqua = 14,
|
|
1078
|
+
acColorIndexWhite = 15
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
declare enum RefKind
|
|
1082
|
+
{
|
|
1083
|
+
TypeLib = 0,
|
|
1084
|
+
Project = 1
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
declare enum ProcKind
|
|
1088
|
+
{
|
|
1089
|
+
Proc = 0,
|
|
1090
|
+
Let = 1,
|
|
1091
|
+
Set = 2,
|
|
1092
|
+
Get = 3
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
declare enum AcDefView
|
|
1096
|
+
{
|
|
1097
|
+
acDefViewSingle = 0,
|
|
1098
|
+
acDefViewContinuous = 1,
|
|
1099
|
+
acDefViewDatasheet = 2,
|
|
1100
|
+
acDefViewPivotTable = 3,
|
|
1101
|
+
acDefViewPivotChart = 4,
|
|
1102
|
+
acDefViewSplitForm = 5
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
declare enum AcCurrentView
|
|
1106
|
+
{
|
|
1107
|
+
acCurViewDesign = 0,
|
|
1108
|
+
acCurViewFormBrowse = 1,
|
|
1109
|
+
acCurViewDatasheet = 2,
|
|
1110
|
+
acCurViewPivotTable = 3,
|
|
1111
|
+
acCurViewPivotChart = 4,
|
|
1112
|
+
acCurViewPreview = 5,
|
|
1113
|
+
acCurViewReportBrowse = 6,
|
|
1114
|
+
acCurViewLayout = 7
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
declare enum AcFileFormat
|
|
1118
|
+
{
|
|
1119
|
+
acFileFormatAccess2 = 2,
|
|
1120
|
+
acFileFormatAccess95 = 7,
|
|
1121
|
+
acFileFormatAccess97 = 8,
|
|
1122
|
+
acFileFormatAccess2000 = 9,
|
|
1123
|
+
acFileFormatAccess2002 = 10,
|
|
1124
|
+
acFileFormatAccess2007 = 12
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
declare enum AcExportXMLObjectType
|
|
1128
|
+
{
|
|
1129
|
+
acExportTable = 0,
|
|
1130
|
+
acExportQuery = 1,
|
|
1131
|
+
acExportForm = 2,
|
|
1132
|
+
acExportReport = 3,
|
|
1133
|
+
acExportServerView = 7,
|
|
1134
|
+
acExportStoredProcedure = 9,
|
|
1135
|
+
acExportFunction = 10
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
declare enum AcExportXMLSchemaFormat
|
|
1139
|
+
{
|
|
1140
|
+
acSchemaNone = 0,
|
|
1141
|
+
acSchemaXSD = 1
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
declare enum AcExportXMLEncoding
|
|
1145
|
+
{
|
|
1146
|
+
acUTF8 = 0,
|
|
1147
|
+
acUTF16 = 1
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
declare enum AcPrintColor
|
|
1151
|
+
{
|
|
1152
|
+
acPRCMMonochrome = 1,
|
|
1153
|
+
acPRCMColor = 2
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
declare enum AcPrintDuplex
|
|
1157
|
+
{
|
|
1158
|
+
acPRDPSimplex = 1,
|
|
1159
|
+
acPRDPHorizontal = 2,
|
|
1160
|
+
acPRDPVertical = 3
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
declare enum AcPrintOrientation
|
|
1164
|
+
{
|
|
1165
|
+
acPRORPortrait = 1,
|
|
1166
|
+
acPRORLandscape = 2
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
declare enum AcPrintObjQuality
|
|
1170
|
+
{
|
|
1171
|
+
acPRPQDraft = -1,
|
|
1172
|
+
acPRPQLow = -2,
|
|
1173
|
+
acPRPQMedium = -3,
|
|
1174
|
+
acPRPQHigh = -4
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
declare enum AcPrintPaperBin
|
|
1178
|
+
{
|
|
1179
|
+
acPRBNUpper = 1,
|
|
1180
|
+
acPRBNLower = 2,
|
|
1181
|
+
acPRBNMiddle = 3,
|
|
1182
|
+
acPRBNManual = 4,
|
|
1183
|
+
acPRBNEnvelope = 5,
|
|
1184
|
+
acPRBNEnvManual = 6,
|
|
1185
|
+
acPRBNAuto = 7,
|
|
1186
|
+
acPRBNTractor = 8,
|
|
1187
|
+
acPRBNSmallFmt = 9,
|
|
1188
|
+
acPRBNLargeFmt = 10,
|
|
1189
|
+
acPRBNLargeCapacity = 11,
|
|
1190
|
+
acPRBNCassette = 14,
|
|
1191
|
+
acPRBNFormSource = 15
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
declare enum AcPrintPaperSize
|
|
1195
|
+
{
|
|
1196
|
+
acPRPSLetter = 1,
|
|
1197
|
+
acPRPSLetterSmall = 2,
|
|
1198
|
+
acPRPSTabloid = 3,
|
|
1199
|
+
acPRPSLedger = 4,
|
|
1200
|
+
acPRPSLegal = 5,
|
|
1201
|
+
acPRPSStatement = 6,
|
|
1202
|
+
acPRPSExecutive = 7,
|
|
1203
|
+
acPRPSA3 = 8,
|
|
1204
|
+
acPRPSA4 = 9,
|
|
1205
|
+
acPRPSA4Small = 10,
|
|
1206
|
+
acPRPSA5 = 11,
|
|
1207
|
+
acPRPSB4 = 12,
|
|
1208
|
+
acPRPSB5 = 13,
|
|
1209
|
+
acPRPSFolio = 14,
|
|
1210
|
+
acPRPSQuarto = 15,
|
|
1211
|
+
acPRPS10x14 = 16,
|
|
1212
|
+
acPRPS11x17 = 17,
|
|
1213
|
+
acPRPSNote = 18,
|
|
1214
|
+
acPRPSEnv9 = 19,
|
|
1215
|
+
acPRPSEnv10 = 20,
|
|
1216
|
+
acPRPSEnv11 = 21,
|
|
1217
|
+
acPRPSEnv12 = 22,
|
|
1218
|
+
acPRPSEnv14 = 23,
|
|
1219
|
+
acPRPSCSheet = 24,
|
|
1220
|
+
acPRPSDSheet = 25,
|
|
1221
|
+
acPRPSESheet = 26,
|
|
1222
|
+
acPRPSEnvDL = 27,
|
|
1223
|
+
acPRPSEnvC3 = 29,
|
|
1224
|
+
acPRPSEnvC4 = 30,
|
|
1225
|
+
acPRPSEnvC5 = 28,
|
|
1226
|
+
acPRPSEnvC6 = 31,
|
|
1227
|
+
acPRPSEnvC65 = 32,
|
|
1228
|
+
acPRPSEnvB4 = 33,
|
|
1229
|
+
acPRPSEnvB5 = 34,
|
|
1230
|
+
acPRPSEnvB6 = 35,
|
|
1231
|
+
acPRPSEnvItaly = 36,
|
|
1232
|
+
acPRPSEnvMonarch = 37,
|
|
1233
|
+
acPRPSEnvPersonal = 38,
|
|
1234
|
+
acPRPSFanfoldUS = 39,
|
|
1235
|
+
acPRPSFanfoldStdGerman = 40,
|
|
1236
|
+
acPRPSFanfoldLglGerman = 41,
|
|
1237
|
+
acPRPSUser = 256
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
declare enum AcPrintItemLayout
|
|
1241
|
+
{
|
|
1242
|
+
acPRHorizontalColumnLayout = 1953,
|
|
1243
|
+
acPRVerticalColumnLayout = 1954
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
declare enum AcImportXMLOption
|
|
1247
|
+
{
|
|
1248
|
+
acStructureOnly = 0,
|
|
1249
|
+
acStructureAndData = 1,
|
|
1250
|
+
acAppendData = 2
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1253
|
+
declare enum AcExportXMLOtherFlags
|
|
1254
|
+
{
|
|
1255
|
+
acEmbedSchema = 1,
|
|
1256
|
+
acExcludePrimaryKeyAndIndexes = 2,
|
|
1257
|
+
acRunFromServer = 4,
|
|
1258
|
+
acLiveReportSource = 8,
|
|
1259
|
+
acPersistReportML = 16,
|
|
1260
|
+
acExportAllTableAndFieldProperties = 32
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
declare enum AcTransformXMLScriptOption
|
|
1264
|
+
{
|
|
1265
|
+
acEnableScript = 0,
|
|
1266
|
+
acPromptScript = 1,
|
|
1267
|
+
acDisableScript = 2
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
declare enum AcSplitFormPrinting
|
|
1271
|
+
{
|
|
1272
|
+
acFormOnly = 0,
|
|
1273
|
+
acGridOnly = 1
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
declare enum AcSplitFormOrientation
|
|
1277
|
+
{
|
|
1278
|
+
acDatasheetOnTop = 0,
|
|
1279
|
+
acDatasheetOnBottom = 1,
|
|
1280
|
+
acDatasheetOnLeft = 2,
|
|
1281
|
+
acDatasheetOnRight = 3
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
declare enum AcSplitFormDatasheet
|
|
1285
|
+
{
|
|
1286
|
+
acDatasheetAllowEdits = 0,
|
|
1287
|
+
acDatasheetReadOnly = 1
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
declare enum AcLayoutType
|
|
1291
|
+
{
|
|
1292
|
+
acLayoutNone = 0,
|
|
1293
|
+
acLayoutTabular = 1,
|
|
1294
|
+
acLayoutStacked = 2
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
declare enum AcTextFormat
|
|
1298
|
+
{
|
|
1299
|
+
acTextFormatPlain = 0,
|
|
1300
|
+
acTextFormatHTMLRichText = 1
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
declare enum AcSeparatorCharacters
|
|
1304
|
+
{
|
|
1305
|
+
acSeparatorCharactersSystemSeparator = 0,
|
|
1306
|
+
acSeparatorCharactersNewLine = 1,
|
|
1307
|
+
acSeparatorCharactersSemiColon = 2,
|
|
1308
|
+
acSeparatorCharactersComma = 3
|
|
1309
|
+
}
|
|
1310
|
+
|
|
1311
|
+
declare enum AcHorizontalAnchor
|
|
1312
|
+
{
|
|
1313
|
+
acHorizontalAnchorLeft = 0,
|
|
1314
|
+
acHorizontalAnchorRight = 1,
|
|
1315
|
+
acHorizontalAnchorBoth = 2
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
declare enum AcVerticalAnchor
|
|
1319
|
+
{
|
|
1320
|
+
acVerticalAnchorTop = 0,
|
|
1321
|
+
acVerticalAnchorBottom = 1,
|
|
1322
|
+
acVerticalAnchorBoth = 2
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
declare enum AcDisplayAs
|
|
1326
|
+
{
|
|
1327
|
+
acDisplayAsImageIcon = 0,
|
|
1328
|
+
acDisplayAsIcon = 1,
|
|
1329
|
+
acDisplayAsPaperclip = 2
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
declare enum AcExportQuality
|
|
1333
|
+
{
|
|
1334
|
+
acExportQualityPrint = 0,
|
|
1335
|
+
acExportQualityScreen = 1
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
declare enum AcDefReportView
|
|
1339
|
+
{
|
|
1340
|
+
acDefViewPreview = 0,
|
|
1341
|
+
acDefViewReportBrowse = 1
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
declare enum AcSharePointListTransferType
|
|
1345
|
+
{
|
|
1346
|
+
acImportSharePointList = 0,
|
|
1347
|
+
acLinkSharePointList = 1
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
declare enum AcProperty
|
|
1351
|
+
{
|
|
1352
|
+
acPropertyEnabled = 0,
|
|
1353
|
+
acPropertyVisible = 1,
|
|
1354
|
+
acPropertyLocked = 2,
|
|
1355
|
+
acPropertyLeft = 3,
|
|
1356
|
+
acPropertyTop = 4,
|
|
1357
|
+
acPropertyWidth = 5,
|
|
1358
|
+
acPropertyHeight = 6,
|
|
1359
|
+
acPropertyForeColor = 7,
|
|
1360
|
+
acPropertyBackColor = 8,
|
|
1361
|
+
acPropertyCaption = 9,
|
|
1362
|
+
acPropertyValue = 10
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
declare enum AcNewDatabaseFormat
|
|
1366
|
+
{
|
|
1367
|
+
acNewDatabaseFormatUserDefault = 0,
|
|
1368
|
+
acNewDatabaseFormatAccess2000 = 9,
|
|
1369
|
+
acNewDatabaseFormatAccess2002 = 10,
|
|
1370
|
+
acNewDatabaseFormatAccess2007 = 12
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
declare enum AcCursorOnHover
|
|
1374
|
+
{
|
|
1375
|
+
acCursorOnHoverDefault = 0,
|
|
1376
|
+
acCursorOnHoverHyperlinkHand = 1
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
declare enum AcDisplayAsHyperlink
|
|
1380
|
+
{
|
|
1381
|
+
acDisplayAsHyperlinkIfHyperlink = 0,
|
|
1382
|
+
acDisplayAsHyperlinkAlways = 1,
|
|
1383
|
+
acDisplayAsHyperlinkOnScreenOnly = 2
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
declare enum AcPictureCaptionArrangement
|
|
1387
|
+
{
|
|
1388
|
+
acNoPictureCaption = 0,
|
|
1389
|
+
acGeneral = 1,
|
|
1390
|
+
acTop = 2,
|
|
1391
|
+
acBottom = 3,
|
|
1392
|
+
acLeft = 4,
|
|
1393
|
+
acRight = 5
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
declare enum AcWebBrowserState
|
|
1397
|
+
{
|
|
1398
|
+
acUnintialized = 0,
|
|
1399
|
+
acLoading = 1,
|
|
1400
|
+
acLoaded = 2,
|
|
1401
|
+
acInteractive = 3,
|
|
1402
|
+
acComplete = 4
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
declare enum AcWebBrowserScrollBars
|
|
1406
|
+
{
|
|
1407
|
+
acScrollAuto = 0,
|
|
1408
|
+
acScrollYes = 1,
|
|
1409
|
+
acScrollNo = 2
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
declare enum AcFormatBarLimits
|
|
1413
|
+
{
|
|
1414
|
+
acAutomatic = 0,
|
|
1415
|
+
acNumber = 1,
|
|
1416
|
+
acPercent = 2
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
declare enum AcBrowseToObjectType
|
|
1420
|
+
{
|
|
1421
|
+
acBrowseToForm = 2,
|
|
1422
|
+
acBrowseToReport = 3
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
declare enum AcWebUserDisplay
|
|
1426
|
+
{
|
|
1427
|
+
acWebUserID = 0,
|
|
1428
|
+
acWebUserName = 1,
|
|
1429
|
+
acWebUserLoginName = 2,
|
|
1430
|
+
acWebUserEmail = 3
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
declare enum AcWebUserGroupsDisplay
|
|
1434
|
+
{
|
|
1435
|
+
acWebUserGroupID = 0,
|
|
1436
|
+
acWebUserGroupName = 1
|
|
1437
|
+
}
|
|
1438
|
+
|
|
1439
|
+
declare enum AcResourceType
|
|
1440
|
+
{
|
|
1441
|
+
acResourceTheme = 0,
|
|
1442
|
+
acResourceImage = 1
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
declare enum AcNavigationSpan
|
|
1446
|
+
{
|
|
1447
|
+
acHorizontal = 0,
|
|
1448
|
+
acVertical = 1
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
declare enum AcChartType
|
|
1452
|
+
{
|
|
1453
|
+
acChartColumnClustered = 0,
|
|
1454
|
+
acChartColumnStacked = 1,
|
|
1455
|
+
acChartColumnStacked100 = 2,
|
|
1456
|
+
acChartBarClustered = 3,
|
|
1457
|
+
acChartBarStacked = 4,
|
|
1458
|
+
acChartBarStacked100 = 5,
|
|
1459
|
+
acChartLine = 6,
|
|
1460
|
+
acChartLineStacked = 7,
|
|
1461
|
+
acChartLineStacked100 = 8,
|
|
1462
|
+
acChartPie = 9,
|
|
1463
|
+
acChartCombo = 10,
|
|
1464
|
+
acChartArea = 11,
|
|
1465
|
+
acChartAreaStacked = 12,
|
|
1466
|
+
acChartAreaStacked100 = 13,
|
|
1467
|
+
acChartRadar = 14,
|
|
1468
|
+
acChartRadarFilled = 15,
|
|
1469
|
+
acChartBoxWhisker = 16,
|
|
1470
|
+
acChartBubble = 17,
|
|
1471
|
+
acChartDoughnut = 18,
|
|
1472
|
+
acChartFunnel = 19,
|
|
1473
|
+
acChartScatter = 20,
|
|
1474
|
+
acChartWaterfall = 21,
|
|
1475
|
+
acChartWordCloud = 22,
|
|
1476
|
+
acChartArc = 23,
|
|
1477
|
+
acChartPareto = 24
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
declare enum AcLegendPosition
|
|
1481
|
+
{
|
|
1482
|
+
acLegendPositionLeft = 0,
|
|
1483
|
+
acLegendPositionTop = 1,
|
|
1484
|
+
acLegendPositionRight = 2,
|
|
1485
|
+
acLegendPositionBottom = 3
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
declare enum AcAxisUnits
|
|
1489
|
+
{
|
|
1490
|
+
acAxisUnitsNone = 0,
|
|
1491
|
+
acAxisUnitsPercentage = 1,
|
|
1492
|
+
acAxisUnitsHundreds = 2,
|
|
1493
|
+
acAxisUnitsThousands = 3,
|
|
1494
|
+
acAxisUnitsTenThousands = 4,
|
|
1495
|
+
acAxisUnitsHundredThousands = 5,
|
|
1496
|
+
acAxisUnitsMillions = 6,
|
|
1497
|
+
acAxisUnitsTenMillions = 7,
|
|
1498
|
+
acAxisUnitsHundredMillions = 8,
|
|
1499
|
+
acAxisUnitsBillions = 9,
|
|
1500
|
+
acAxisUnitsTenBillions = 10,
|
|
1501
|
+
acAxisUnitsHundredBillions = 11,
|
|
1502
|
+
acAxisUnitsTrillions = 12
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
declare enum AcAxisRange
|
|
1506
|
+
{
|
|
1507
|
+
acAxisRangeAuto = 0,
|
|
1508
|
+
acAxisRangeFixed = 1
|
|
1509
|
+
}
|
|
1510
|
+
|
|
1511
|
+
declare enum AcValueAxis
|
|
1512
|
+
{
|
|
1513
|
+
acPrimaryAxis = 0,
|
|
1514
|
+
acSecondaryAxis = 1
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
declare enum AcTrendlineOptions
|
|
1518
|
+
{
|
|
1519
|
+
acTrendlineNone = 0,
|
|
1520
|
+
acTrendlineLinear = 1,
|
|
1521
|
+
acTrendlineExponential = 2,
|
|
1522
|
+
acTrendlineLogarithmic = 3,
|
|
1523
|
+
acTrendlinePolynomial = 4,
|
|
1524
|
+
acTrendlinePower = 5,
|
|
1525
|
+
acTrendlineMovingAverage = 6
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
declare enum AcDashType
|
|
1529
|
+
{
|
|
1530
|
+
acDashTypeSolid = 0,
|
|
1531
|
+
acDashTypeDash = 1,
|
|
1532
|
+
acDashTypeDot = 2,
|
|
1533
|
+
acDashTypeDashDot = 3,
|
|
1534
|
+
acDashTypeDashDotDot = 4
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
declare enum AcGridlineType
|
|
1538
|
+
{
|
|
1539
|
+
acGridlineTypeNone = 0,
|
|
1540
|
+
acGridlineTypeMajor = 1,
|
|
1541
|
+
acGridlineTypeMinor = 2,
|
|
1542
|
+
acGridlineTypeMajorMinor = 3
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
declare enum AcDataLabelPosition
|
|
1546
|
+
{
|
|
1547
|
+
acBestFit = 0,
|
|
1548
|
+
acInsideCenter = 1,
|
|
1549
|
+
acInsideEnd = 2,
|
|
1550
|
+
acOutsideCircle = 3,
|
|
1551
|
+
acOutsideEnd = 4
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
declare enum AcWordCloudShape
|
|
1555
|
+
{
|
|
1556
|
+
acWordCloudRectangle = 0,
|
|
1557
|
+
acWordCloudOval = 1,
|
|
1558
|
+
acWordCloudHeart = 2
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
declare enum AcWordCloudWordOrientation
|
|
1562
|
+
{
|
|
1563
|
+
acWordCloudHorizontalVertical = 0,
|
|
1564
|
+
acWordCloudHorizontal = 1,
|
|
1565
|
+
acWordCloudVertical = 2
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
declare enum AcPercentageDataLabelDecimalPlaces
|
|
1569
|
+
{
|
|
1570
|
+
acDecimalPlaces0 = 0,
|
|
1571
|
+
acDecimalPlaces1 = 1,
|
|
1572
|
+
acDecimalPlaces2 = 2,
|
|
1573
|
+
acDecimalPlaces3 = 3,
|
|
1574
|
+
acDecimalPlaces4 = 4,
|
|
1575
|
+
acDecimalPlaces5 = 5,
|
|
1576
|
+
acDecimalPlaces6 = 6,
|
|
1577
|
+
acDecimalPlaces7 = 7
|
|
1578
|
+
}
|
|
1579
|
+
|
|
1580
|
+
declare enum AcDataLabelDisplayFormat
|
|
1581
|
+
{
|
|
1582
|
+
acDataLabelDisplayNone = 0,
|
|
1583
|
+
acDataLabelDisplayNumber = 1,
|
|
1584
|
+
acDataLabelDisplayPercentage = 2
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
declare enum AcSortOrderType
|
|
1588
|
+
{
|
|
1589
|
+
acSortOrderTypeNone = 0,
|
|
1590
|
+
acSortOrderTypeAscending = 1,
|
|
1591
|
+
acSortOrderTypeDescending = 2
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
declare enum AcMissingDataPolicy
|
|
1595
|
+
{
|
|
1596
|
+
acPlotAsZero = 0,
|
|
1597
|
+
acDoNotPlot = 1,
|
|
1598
|
+
acPlotAsInterpolated = 2
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
declare enum AcMarkerType
|
|
1602
|
+
{
|
|
1603
|
+
acMarkerNone = 0,
|
|
1604
|
+
acMarkerSquare = 1,
|
|
1605
|
+
acMarkerDiamond = 2,
|
|
1606
|
+
acMarkerTriangle = 3,
|
|
1607
|
+
acMarkerX = 4,
|
|
1608
|
+
acMarkerAsterisk = 5,
|
|
1609
|
+
acMarkerShortDash = 6,
|
|
1610
|
+
acMarkerLongDash = 7,
|
|
1611
|
+
acMarkerCircle = 8,
|
|
1612
|
+
acMarkerPlus = 9
|
|
1613
|
+
}
|
|
1614
|
+
|
|
1615
|
+
declare enum AcDateGroupType
|
|
1616
|
+
{
|
|
1617
|
+
acDateGroupNone = 0,
|
|
1618
|
+
acDateGroupYear = 1,
|
|
1619
|
+
acDateGroupQuarter = 2,
|
|
1620
|
+
acDateGroupMonth = 3,
|
|
1621
|
+
acDateGroupDay = 4
|
|
1622
|
+
}
|
|
1623
|
+
|
|
1624
|
+
declare enum AcAggregateType
|
|
1625
|
+
{
|
|
1626
|
+
acAggregateNone = 0,
|
|
1627
|
+
acAggregateSum = 1,
|
|
1628
|
+
acAggregateAverage = 2,
|
|
1629
|
+
acAggregateMinimum = 3,
|
|
1630
|
+
acAggregateMaximum = 4,
|
|
1631
|
+
acAggregateCountDistinct = 5,
|
|
1632
|
+
acAggregateCount = 6
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1635
|
+
declare const acStandardModule: AcModuleType.acStandardModule;
|
|
1636
|
+
declare const acClassModule: AcModuleType.acClassModule;
|
|
1637
|
+
declare const acSavePrompt: AcCloseSave.acSavePrompt;
|
|
1638
|
+
declare const acSaveYes: AcCloseSave.acSaveYes;
|
|
1639
|
+
declare const acSaveNo: AcCloseSave.acSaveNo;
|
|
1640
|
+
declare const acQuitPrompt: AcQuitOption.acQuitPrompt;
|
|
1641
|
+
declare const acQuitSaveAll: AcQuitOption.acQuitSaveAll;
|
|
1642
|
+
declare const acQuitSaveNone: AcQuitOption.acQuitSaveNone;
|
|
1643
|
+
declare const acDetail: AcSection.acDetail;
|
|
1644
|
+
declare const acHeader: AcSection.acHeader;
|
|
1645
|
+
declare const acFooter: AcSection.acFooter;
|
|
1646
|
+
declare const acPageHeader: AcSection.acPageHeader;
|
|
1647
|
+
declare const acPageFooter: AcSection.acPageFooter;
|
|
1648
|
+
declare const acGroupLevel1Header: AcSection.acGroupLevel1Header;
|
|
1649
|
+
declare const acGroupLevel1Footer: AcSection.acGroupLevel1Footer;
|
|
1650
|
+
declare const acGroupLevel2Header: AcSection.acGroupLevel2Header;
|
|
1651
|
+
declare const acGroupLevel2Footer: AcSection.acGroupLevel2Footer;
|
|
1652
|
+
declare const acLabel: AcControlType.acLabel;
|
|
1653
|
+
declare const acRectangle: AcControlType.acRectangle;
|
|
1654
|
+
declare const acLine: AcControlType.acLine;
|
|
1655
|
+
declare const acImage: AcControlType.acImage;
|
|
1656
|
+
declare const acCommandButton: AcControlType.acCommandButton;
|
|
1657
|
+
declare const acOptionButton: AcControlType.acOptionButton;
|
|
1658
|
+
declare const acCheckBox: AcControlType.acCheckBox;
|
|
1659
|
+
declare const acOptionGroup: AcControlType.acOptionGroup;
|
|
1660
|
+
declare const acBoundObjectFrame: AcControlType.acBoundObjectFrame;
|
|
1661
|
+
declare const acTextBox: AcControlType.acTextBox;
|
|
1662
|
+
declare const acListBox: AcControlType.acListBox;
|
|
1663
|
+
declare const acComboBox: AcControlType.acComboBox;
|
|
1664
|
+
declare const acSubform: AcControlType.acSubform;
|
|
1665
|
+
declare const acObjectFrame: AcControlType.acObjectFrame;
|
|
1666
|
+
declare const acPageBreak: AcControlType.acPageBreak;
|
|
1667
|
+
declare const acCustomControl: AcControlType.acCustomControl;
|
|
1668
|
+
declare const acToggleButton: AcControlType.acToggleButton;
|
|
1669
|
+
declare const acTabCtl: AcControlType.acTabCtl;
|
|
1670
|
+
declare const acPage: AcControlType.acPage;
|
|
1671
|
+
declare const acAttachment: AcControlType.acAttachment;
|
|
1672
|
+
declare const acEmptyCell: AcControlType.acEmptyCell;
|
|
1673
|
+
declare const acWebBrowser: AcControlType.acWebBrowser;
|
|
1674
|
+
declare const acNavigationControl: AcControlType.acNavigationControl;
|
|
1675
|
+
declare const acNavigationButton: AcControlType.acNavigationButton;
|
|
1676
|
+
declare const acChart: AcControlType.acChart;
|
|
1677
|
+
declare const acEdgeBrowser: AcControlType.acEdgeBrowser;
|
|
1678
|
+
declare const acActiveDataObject: AcDataObjectType.acActiveDataObject;
|
|
1679
|
+
declare const acDataTable: AcDataObjectType.acDataTable;
|
|
1680
|
+
declare const acDataQuery: AcDataObjectType.acDataQuery;
|
|
1681
|
+
declare const acDataForm: AcDataObjectType.acDataForm;
|
|
1682
|
+
declare const acDataReport: AcDataObjectType.acDataReport;
|
|
1683
|
+
declare const acDataServerView: AcDataObjectType.acDataServerView;
|
|
1684
|
+
declare const acDataStoredProcedure: AcDataObjectType.acDataStoredProcedure;
|
|
1685
|
+
declare const acDataFunction: AcDataObjectType.acDataFunction;
|
|
1686
|
+
declare const acImport: AcDataTransferType.acImport;
|
|
1687
|
+
declare const acExport: AcDataTransferType.acExport;
|
|
1688
|
+
declare const acLink: AcDataTransferType.acLink;
|
|
1689
|
+
declare const acSendNoObject: AcSendObjectType.acSendNoObject;
|
|
1690
|
+
declare const acSendTable: AcSendObjectType.acSendTable;
|
|
1691
|
+
declare const acSendQuery: AcSendObjectType.acSendQuery;
|
|
1692
|
+
declare const acSendForm: AcSendObjectType.acSendForm;
|
|
1693
|
+
declare const acSendReport: AcSendObjectType.acSendReport;
|
|
1694
|
+
declare const acSendModule: AcSendObjectType.acSendModule;
|
|
1695
|
+
declare const acSendDataAccessPage: AcSendObjectType.acSendDataAccessPage;
|
|
1696
|
+
declare const acDefault: AcObjectType.acDefault;
|
|
1697
|
+
declare const acTable: AcObjectType.acTable;
|
|
1698
|
+
declare const acQuery: AcObjectType.acQuery;
|
|
1699
|
+
declare const acForm: AcObjectType.acForm;
|
|
1700
|
+
declare const acReport: AcObjectType.acReport;
|
|
1701
|
+
declare const acMacro: AcObjectType.acMacro;
|
|
1702
|
+
declare const acModule: AcObjectType.acModule;
|
|
1703
|
+
declare const acDataAccessPage: AcObjectType.acDataAccessPage;
|
|
1704
|
+
declare const acServerView: AcObjectType.acServerView;
|
|
1705
|
+
declare const acDiagram: AcObjectType.acDiagram;
|
|
1706
|
+
declare const acStoredProcedure: AcObjectType.acStoredProcedure;
|
|
1707
|
+
declare const acFunction: AcObjectType.acFunction;
|
|
1708
|
+
declare const acDatabaseProperties: AcObjectType.acDatabaseProperties;
|
|
1709
|
+
declare const acTableDataMacro: AcObjectType.acTableDataMacro;
|
|
1710
|
+
declare const acCurrent: AcFindField.acCurrent;
|
|
1711
|
+
declare const acAll: AcFindField.acAll;
|
|
1712
|
+
declare const acAnywhere: AcFindMatch.acAnywhere;
|
|
1713
|
+
declare const acEntire: AcFindMatch.acEntire;
|
|
1714
|
+
declare const acStart: AcFindMatch.acStart;
|
|
1715
|
+
declare const acNormal: AcFormView.acNormal;
|
|
1716
|
+
declare const acDesign: AcFormView.acDesign;
|
|
1717
|
+
declare const acPreview: AcFormView.acPreview;
|
|
1718
|
+
declare const acFormDS: AcFormView.acFormDS;
|
|
1719
|
+
declare const acFormPivotTable: AcFormView.acFormPivotTable;
|
|
1720
|
+
declare const acFormPivotChart: AcFormView.acFormPivotChart;
|
|
1721
|
+
declare const acLayout: AcFormView.acLayout;
|
|
1722
|
+
declare const acDataAccessPageBrowse: AcDataAccessPageView.acDataAccessPageBrowse;
|
|
1723
|
+
declare const acDataAccessPageDesign: AcDataAccessPageView.acDataAccessPageDesign;
|
|
1724
|
+
declare const acAdd: AcOpenDataMode.acAdd;
|
|
1725
|
+
declare const acEdit: AcOpenDataMode.acEdit;
|
|
1726
|
+
declare const acReadOnly: AcOpenDataMode.acReadOnly;
|
|
1727
|
+
declare const acFormPropertySettings: AcFormOpenDataMode.acFormPropertySettings;
|
|
1728
|
+
declare const acFormAdd: AcFormOpenDataMode.acFormAdd;
|
|
1729
|
+
declare const acFormEdit: AcFormOpenDataMode.acFormEdit;
|
|
1730
|
+
declare const acFormReadOnly: AcFormOpenDataMode.acFormReadOnly;
|
|
1731
|
+
declare const acOutputTable: AcOutputObjectType.acOutputTable;
|
|
1732
|
+
declare const acOutputQuery: AcOutputObjectType.acOutputQuery;
|
|
1733
|
+
declare const acOutputForm: AcOutputObjectType.acOutputForm;
|
|
1734
|
+
declare const acOutputReport: AcOutputObjectType.acOutputReport;
|
|
1735
|
+
declare const acOutputModule: AcOutputObjectType.acOutputModule;
|
|
1736
|
+
declare const acOutputDataAccessPage: AcOutputObjectType.acOutputDataAccessPage;
|
|
1737
|
+
declare const acOutputServerView: AcOutputObjectType.acOutputServerView;
|
|
1738
|
+
declare const acOutputStoredProcedure: AcOutputObjectType.acOutputStoredProcedure;
|
|
1739
|
+
declare const acOutputFunction: AcOutputObjectType.acOutputFunction;
|
|
1740
|
+
declare const acHigh: AcPrintQuality.acHigh;
|
|
1741
|
+
declare const acMedium: AcPrintQuality.acMedium;
|
|
1742
|
+
declare const acLow: AcPrintQuality.acLow;
|
|
1743
|
+
declare const acDraft: AcPrintQuality.acDraft;
|
|
1744
|
+
declare const acPrintAll: AcPrintRange.acPrintAll;
|
|
1745
|
+
declare const acSelection: AcPrintRange.acSelection;
|
|
1746
|
+
declare const acPages: AcPrintRange.acPages;
|
|
1747
|
+
declare const acPrevious: AcRecord.acPrevious;
|
|
1748
|
+
declare const acNext: AcRecord.acNext;
|
|
1749
|
+
declare const acFirst: AcRecord.acFirst;
|
|
1750
|
+
declare const acLast: AcRecord.acLast;
|
|
1751
|
+
declare const acGoTo: AcRecord.acGoTo;
|
|
1752
|
+
declare const acNewRec: AcRecord.acNewRec;
|
|
1753
|
+
declare const acUp: AcSearchDirection.acUp;
|
|
1754
|
+
declare const acDown: AcSearchDirection.acDown;
|
|
1755
|
+
declare const acSearchAll: AcSearchDirection.acSearchAll;
|
|
1756
|
+
declare const acSysCmdInitMeter: AcSysCmdAction.acSysCmdInitMeter;
|
|
1757
|
+
declare const acSysCmdUpdateMeter: AcSysCmdAction.acSysCmdUpdateMeter;
|
|
1758
|
+
declare const acSysCmdRemoveMeter: AcSysCmdAction.acSysCmdRemoveMeter;
|
|
1759
|
+
declare const acSysCmdSetStatus: AcSysCmdAction.acSysCmdSetStatus;
|
|
1760
|
+
declare const acSysCmdClearStatus: AcSysCmdAction.acSysCmdClearStatus;
|
|
1761
|
+
declare const acSysCmdRuntime: AcSysCmdAction.acSysCmdRuntime;
|
|
1762
|
+
declare const acSysCmdAccessVer: AcSysCmdAction.acSysCmdAccessVer;
|
|
1763
|
+
declare const acSysCmdIniFile: AcSysCmdAction.acSysCmdIniFile;
|
|
1764
|
+
declare const acSysCmdAccessDir: AcSysCmdAction.acSysCmdAccessDir;
|
|
1765
|
+
declare const acSysCmdGetObjectState: AcSysCmdAction.acSysCmdGetObjectState;
|
|
1766
|
+
declare const acSysCmdClearHelpTopic: AcSysCmdAction.acSysCmdClearHelpTopic;
|
|
1767
|
+
declare const acSysCmdProfile: AcSysCmdAction.acSysCmdProfile;
|
|
1768
|
+
declare const acSysCmdGetWorkgroupFile: AcSysCmdAction.acSysCmdGetWorkgroupFile;
|
|
1769
|
+
declare const acSysCmdCompile: AcSysCmdAction.acSysCmdCompile;
|
|
1770
|
+
declare const acSysCmdGetMsoBuildNumber: AcSysCmdAction.acSysCmdGetMsoBuildNumber;
|
|
1771
|
+
declare const acSysCmdGetFullVersion: AcSysCmdAction.acSysCmdGetFullVersion;
|
|
1772
|
+
declare const acSysCmdGetVersion: AcSysCmdAction.acSysCmdGetVersion;
|
|
1773
|
+
declare const acSysCmdGetFullBuildNumber: AcSysCmdAction.acSysCmdGetFullBuildNumber;
|
|
1774
|
+
declare const acSysCmdGetChannelName: AcSysCmdAction.acSysCmdGetChannelName;
|
|
1775
|
+
declare const acSysCmdGetBitness: AcSysCmdAction.acSysCmdGetBitness;
|
|
1776
|
+
declare const acSysCmdGetBuildNumber: AcSysCmdAction.acSysCmdGetBuildNumber;
|
|
1777
|
+
declare const acImportDelim: AcTextTransferType.acImportDelim;
|
|
1778
|
+
declare const acImportFixed: AcTextTransferType.acImportFixed;
|
|
1779
|
+
declare const acExportDelim: AcTextTransferType.acExportDelim;
|
|
1780
|
+
declare const acExportFixed: AcTextTransferType.acExportFixed;
|
|
1781
|
+
declare const acExportMerge: AcTextTransferType.acExportMerge;
|
|
1782
|
+
declare const acLinkDelim: AcTextTransferType.acLinkDelim;
|
|
1783
|
+
declare const acLinkFixed: AcTextTransferType.acLinkFixed;
|
|
1784
|
+
declare const acImportHTML: AcTextTransferType.acImportHTML;
|
|
1785
|
+
declare const acExportHTML: AcTextTransferType.acExportHTML;
|
|
1786
|
+
declare const acLinkHTML: AcTextTransferType.acLinkHTML;
|
|
1787
|
+
declare const acViewNormal: AcView.acViewNormal;
|
|
1788
|
+
declare const acViewDesign: AcView.acViewDesign;
|
|
1789
|
+
declare const acViewPreview: AcView.acViewPreview;
|
|
1790
|
+
declare const acViewPivotTable: AcView.acViewPivotTable;
|
|
1791
|
+
declare const acViewPivotChart: AcView.acViewPivotChart;
|
|
1792
|
+
declare const acViewReport: AcView.acViewReport;
|
|
1793
|
+
declare const acViewLayout: AcView.acViewLayout;
|
|
1794
|
+
declare const acViewSql: AcView.acViewSql;
|
|
1795
|
+
declare const acWindowNormal: AcWindowMode.acWindowNormal;
|
|
1796
|
+
declare const acHidden: AcWindowMode.acHidden;
|
|
1797
|
+
declare const acIcon: AcWindowMode.acIcon;
|
|
1798
|
+
declare const acDialog: AcWindowMode.acDialog;
|
|
1799
|
+
declare const acFilterNormal: AcFilterType.acFilterNormal;
|
|
1800
|
+
declare const acServerFilter: AcFilterType.acServerFilter;
|
|
1801
|
+
declare const acSpreadsheetTypeExcel3: AcSpreadSheetType.acSpreadsheetTypeExcel3;
|
|
1802
|
+
declare const acSpreadsheetTypeLotusWK1: AcSpreadSheetType.acSpreadsheetTypeLotusWK1;
|
|
1803
|
+
declare const acSpreadsheetTypeLotusWK3: AcSpreadSheetType.acSpreadsheetTypeLotusWK3;
|
|
1804
|
+
declare const acSpreadsheetTypeLotusWJ2: AcSpreadSheetType.acSpreadsheetTypeLotusWJ2;
|
|
1805
|
+
declare const acSpreadsheetTypeExcel5: AcSpreadSheetType.acSpreadsheetTypeExcel5;
|
|
1806
|
+
declare const acSpreadsheetTypeExcel7: AcSpreadSheetType.acSpreadsheetTypeExcel7;
|
|
1807
|
+
declare const acSpreadsheetTypeExcel4: AcSpreadSheetType.acSpreadsheetTypeExcel4;
|
|
1808
|
+
declare const acSpreadsheetTypeLotusWK4: AcSpreadSheetType.acSpreadsheetTypeLotusWK4;
|
|
1809
|
+
declare const acSpreadsheetTypeExcel97: AcSpreadSheetType.acSpreadsheetTypeExcel97;
|
|
1810
|
+
declare const acSpreadsheetTypeExcel8: AcSpreadSheetType.acSpreadsheetTypeExcel8;
|
|
1811
|
+
declare const acSpreadsheetTypeExcel9: AcSpreadSheetType.acSpreadsheetTypeExcel9;
|
|
1812
|
+
declare const acSpreadsheetTypeExcel12: AcSpreadSheetType.acSpreadsheetTypeExcel12;
|
|
1813
|
+
declare const acSpreadsheetTypeExcel12Xml: AcSpreadSheetType.acSpreadsheetTypeExcel12Xml;
|
|
1814
|
+
declare const acImeModeNoControl: AcImeMode.acImeModeNoControl;
|
|
1815
|
+
declare const acImeModeOn: AcImeMode.acImeModeOn;
|
|
1816
|
+
declare const acImeModeOff: AcImeMode.acImeModeOff;
|
|
1817
|
+
declare const acImeModeDisable: AcImeMode.acImeModeDisable;
|
|
1818
|
+
declare const acImeModeHiragana: AcImeMode.acImeModeHiragana;
|
|
1819
|
+
declare const acImeModeKatakana: AcImeMode.acImeModeKatakana;
|
|
1820
|
+
declare const acImeModeKatakanaHalf: AcImeMode.acImeModeKatakanaHalf;
|
|
1821
|
+
declare const acImeModeAlphaFull: AcImeMode.acImeModeAlphaFull;
|
|
1822
|
+
declare const acImeModeAlpha: AcImeMode.acImeModeAlpha;
|
|
1823
|
+
declare const acImeModeHangulFull: AcImeMode.acImeModeHangulFull;
|
|
1824
|
+
declare const acImeModeHangul: AcImeMode.acImeModeHangul;
|
|
1825
|
+
declare const acImeSentenceModePhrasePredict: AcImeSentenceMode.acImeSentenceModePhrasePredict;
|
|
1826
|
+
declare const acImeSentenceModePluralClause: AcImeSentenceMode.acImeSentenceModePluralClause;
|
|
1827
|
+
declare const acImeSentenceModeConversation: AcImeSentenceMode.acImeSentenceModeConversation;
|
|
1828
|
+
declare const acImeSentenceModeNone: AcImeSentenceMode.acImeSentenceModeNone;
|
|
1829
|
+
declare const acDisplayedValue: AcHyperlinkPart.acDisplayedValue;
|
|
1830
|
+
declare const acDisplayText: AcHyperlinkPart.acDisplayText;
|
|
1831
|
+
declare const acAddress: AcHyperlinkPart.acAddress;
|
|
1832
|
+
declare const acSubAddress: AcHyperlinkPart.acSubAddress;
|
|
1833
|
+
declare const acScreenTip: AcHyperlinkPart.acScreenTip;
|
|
1834
|
+
declare const acFullAddress: AcHyperlinkPart.acFullAddress;
|
|
1835
|
+
declare const acNull: AcProjectType.acNull;
|
|
1836
|
+
declare const acADP: AcProjectType.acADP;
|
|
1837
|
+
declare const acMDB: AcProjectType.acMDB;
|
|
1838
|
+
declare const acCmdWindowUnhide: AcCommand.acCmdWindowUnhide;
|
|
1839
|
+
declare const acCmdWindowHide: AcCommand.acCmdWindowHide;
|
|
1840
|
+
declare const acCmdExit: AcCommand.acCmdExit;
|
|
1841
|
+
declare const acCmdCompactDatabase: AcCommand.acCmdCompactDatabase;
|
|
1842
|
+
declare const acCmdEncryptDecryptDatabase: AcCommand.acCmdEncryptDecryptDatabase;
|
|
1843
|
+
declare const acCmdRepairDatabase: AcCommand.acCmdRepairDatabase;
|
|
1844
|
+
declare const acCmdMakeMDEFile: AcCommand.acCmdMakeMDEFile;
|
|
1845
|
+
declare const acCmdMoreWindows: AcCommand.acCmdMoreWindows;
|
|
1846
|
+
declare const acCmdAppRestore: AcCommand.acCmdAppRestore;
|
|
1847
|
+
declare const acCmdAppMaximize: AcCommand.acCmdAppMaximize;
|
|
1848
|
+
declare const acCmdAppMinimize: AcCommand.acCmdAppMinimize;
|
|
1849
|
+
declare const acCmdAppMove: AcCommand.acCmdAppMove;
|
|
1850
|
+
declare const acCmdAppSize: AcCommand.acCmdAppSize;
|
|
1851
|
+
declare const acCmdDocRestore: AcCommand.acCmdDocRestore;
|
|
1852
|
+
declare const acCmdDocMaximize: AcCommand.acCmdDocMaximize;
|
|
1853
|
+
declare const acCmdDocMove: AcCommand.acCmdDocMove;
|
|
1854
|
+
declare const acCmdDocSize: AcCommand.acCmdDocSize;
|
|
1855
|
+
declare const acCmdRefresh: AcCommand.acCmdRefresh;
|
|
1856
|
+
declare const acCmdFont: AcCommand.acCmdFont;
|
|
1857
|
+
declare const acCmdSave: AcCommand.acCmdSave;
|
|
1858
|
+
declare const acCmdSaveAs: AcCommand.acCmdSaveAs;
|
|
1859
|
+
declare const acCmdWindowCascade: AcCommand.acCmdWindowCascade;
|
|
1860
|
+
declare const acCmdTileVertically: AcCommand.acCmdTileVertically;
|
|
1861
|
+
declare const acCmdWindowArrangeIcons: AcCommand.acCmdWindowArrangeIcons;
|
|
1862
|
+
declare const acCmdOpenDatabase: AcCommand.acCmdOpenDatabase;
|
|
1863
|
+
declare const acCmdNewDatabase: AcCommand.acCmdNewDatabase;
|
|
1864
|
+
declare const acCmdOLEDDELinks: AcCommand.acCmdOLEDDELinks;
|
|
1865
|
+
declare const acCmdRecordsGoToNew: AcCommand.acCmdRecordsGoToNew;
|
|
1866
|
+
declare const acCmdReplace: AcCommand.acCmdReplace;
|
|
1867
|
+
declare const acCmdFind: AcCommand.acCmdFind;
|
|
1868
|
+
declare const acCmdRunMacro: AcCommand.acCmdRunMacro;
|
|
1869
|
+
declare const acCmdPageSetup: AcCommand.acCmdPageSetup;
|
|
1870
|
+
declare const acCmdInsertObject: AcCommand.acCmdInsertObject;
|
|
1871
|
+
declare const acCmdDuplicate: AcCommand.acCmdDuplicate;
|
|
1872
|
+
declare const acCmdAboutMicrosoftAccess: AcCommand.acCmdAboutMicrosoftAccess;
|
|
1873
|
+
declare const acCmdFormHdrFtr: AcCommand.acCmdFormHdrFtr;
|
|
1874
|
+
declare const acCmdReportHdrFtr: AcCommand.acCmdReportHdrFtr;
|
|
1875
|
+
declare const acCmdPasteAppend: AcCommand.acCmdPasteAppend;
|
|
1876
|
+
declare const acCmdInsertFile: AcCommand.acCmdInsertFile;
|
|
1877
|
+
declare const acCmdSelectForm: AcCommand.acCmdSelectForm;
|
|
1878
|
+
declare const acCmdTabOrder: AcCommand.acCmdTabOrder;
|
|
1879
|
+
declare const acCmdFieldList: AcCommand.acCmdFieldList;
|
|
1880
|
+
declare const acCmdAlignLeft: AcCommand.acCmdAlignLeft;
|
|
1881
|
+
declare const acCmdAlignRight: AcCommand.acCmdAlignRight;
|
|
1882
|
+
declare const acCmdAlignTop: AcCommand.acCmdAlignTop;
|
|
1883
|
+
declare const acCmdAlignBottom: AcCommand.acCmdAlignBottom;
|
|
1884
|
+
declare const acCmdAlignToGrid: AcCommand.acCmdAlignToGrid;
|
|
1885
|
+
declare const acCmdSizeToGrid: AcCommand.acCmdSizeToGrid;
|
|
1886
|
+
declare const acCmdOptions: AcCommand.acCmdOptions;
|
|
1887
|
+
declare const acCmdSelectRecord: AcCommand.acCmdSelectRecord;
|
|
1888
|
+
declare const acCmdSortingAndGrouping: AcCommand.acCmdSortingAndGrouping;
|
|
1889
|
+
declare const acCmdBringToFront: AcCommand.acCmdBringToFront;
|
|
1890
|
+
declare const acCmdSendToBack: AcCommand.acCmdSendToBack;
|
|
1891
|
+
declare const acCmdPrintPreview: AcCommand.acCmdPrintPreview;
|
|
1892
|
+
declare const acCmdApplyDefault: AcCommand.acCmdApplyDefault;
|
|
1893
|
+
declare const acCmdSetControlDefaults: AcCommand.acCmdSetControlDefaults;
|
|
1894
|
+
declare const acCmdOLEObjectDefaultVerb: AcCommand.acCmdOLEObjectDefaultVerb;
|
|
1895
|
+
declare const acCmdClose: AcCommand.acCmdClose;
|
|
1896
|
+
declare const acCmdSizeToFit: AcCommand.acCmdSizeToFit;
|
|
1897
|
+
declare const acCmdDocMinimize: AcCommand.acCmdDocMinimize;
|
|
1898
|
+
declare const acCmdViewRuler: AcCommand.acCmdViewRuler;
|
|
1899
|
+
declare const acCmdSnapToGrid: AcCommand.acCmdSnapToGrid;
|
|
1900
|
+
declare const acCmdViewGrid: AcCommand.acCmdViewGrid;
|
|
1901
|
+
declare const acCmdPasteSpecial: AcCommand.acCmdPasteSpecial;
|
|
1902
|
+
declare const acCmdRecordsGoToNext: AcCommand.acCmdRecordsGoToNext;
|
|
1903
|
+
declare const acCmdRecordsGoToPrevious: AcCommand.acCmdRecordsGoToPrevious;
|
|
1904
|
+
declare const acCmdRecordsGoToFirst: AcCommand.acCmdRecordsGoToFirst;
|
|
1905
|
+
declare const acCmdRecordsGoToLast: AcCommand.acCmdRecordsGoToLast;
|
|
1906
|
+
declare const acCmdSizeToFitForm: AcCommand.acCmdSizeToFitForm;
|
|
1907
|
+
declare const acCmdEditingAllowed: AcCommand.acCmdEditingAllowed;
|
|
1908
|
+
declare const acCmdClearGrid: AcCommand.acCmdClearGrid;
|
|
1909
|
+
declare const acCmdJoinProperties: AcCommand.acCmdJoinProperties;
|
|
1910
|
+
declare const acCmdQueryTotals: AcCommand.acCmdQueryTotals;
|
|
1911
|
+
declare const acCmdQueryTypeCrosstab: AcCommand.acCmdQueryTypeCrosstab;
|
|
1912
|
+
declare const acCmdTableNames: AcCommand.acCmdTableNames;
|
|
1913
|
+
declare const acCmdQueryParameters: AcCommand.acCmdQueryParameters;
|
|
1914
|
+
declare const acCmdFormatCells: AcCommand.acCmdFormatCells;
|
|
1915
|
+
declare const acCmdDataEntry: AcCommand.acCmdDataEntry;
|
|
1916
|
+
declare const acCmdHideColumns: AcCommand.acCmdHideColumns;
|
|
1917
|
+
declare const acCmdUnhideColumns: AcCommand.acCmdUnhideColumns;
|
|
1918
|
+
declare const acCmdDeleteQueryColumn: AcCommand.acCmdDeleteQueryColumn;
|
|
1919
|
+
declare const acCmdInsertQueryColumn: AcCommand.acCmdInsertQueryColumn;
|
|
1920
|
+
declare const acCmdRemoveTable: AcCommand.acCmdRemoveTable;
|
|
1921
|
+
declare const acCmdViewToolbox: AcCommand.acCmdViewToolbox;
|
|
1922
|
+
declare const acCmdMacroNames: AcCommand.acCmdMacroNames;
|
|
1923
|
+
declare const acCmdMacroConditions: AcCommand.acCmdMacroConditions;
|
|
1924
|
+
declare const acCmdSingleStep: AcCommand.acCmdSingleStep;
|
|
1925
|
+
declare const acCmdQueryTypeSelect: AcCommand.acCmdQueryTypeSelect;
|
|
1926
|
+
declare const acCmdQueryTypeUpdate: AcCommand.acCmdQueryTypeUpdate;
|
|
1927
|
+
declare const acCmdQueryTypeAppend: AcCommand.acCmdQueryTypeAppend;
|
|
1928
|
+
declare const acCmdQueryTypeDelete: AcCommand.acCmdQueryTypeDelete;
|
|
1929
|
+
declare const acCmdApplyFilterSort: AcCommand.acCmdApplyFilterSort;
|
|
1930
|
+
declare const acCmdQueryTypeMakeTable: AcCommand.acCmdQueryTypeMakeTable;
|
|
1931
|
+
declare const acCmdLoadFromQuery: AcCommand.acCmdLoadFromQuery;
|
|
1932
|
+
declare const acCmdSaveAsQuery: AcCommand.acCmdSaveAsQuery;
|
|
1933
|
+
declare const acCmdSaveRecord: AcCommand.acCmdSaveRecord;
|
|
1934
|
+
declare const acCmdAdvancedFilterSort: AcCommand.acCmdAdvancedFilterSort;
|
|
1935
|
+
declare const acCmdMicrosoftAccessHelpTopics: AcCommand.acCmdMicrosoftAccessHelpTopics;
|
|
1936
|
+
declare const acCmdLinkTables: AcCommand.acCmdLinkTables;
|
|
1937
|
+
declare const acCmdUserAndGroupPermissions: AcCommand.acCmdUserAndGroupPermissions;
|
|
1938
|
+
declare const acCmdUserAndGroupAccounts: AcCommand.acCmdUserAndGroupAccounts;
|
|
1939
|
+
declare const acCmdFreezeColumn: AcCommand.acCmdFreezeColumn;
|
|
1940
|
+
declare const acCmdUnfreezeAllColumns: AcCommand.acCmdUnfreezeAllColumns;
|
|
1941
|
+
declare const acCmdPrimaryKey: AcCommand.acCmdPrimaryKey;
|
|
1942
|
+
declare const acCmdSubformDatasheet: AcCommand.acCmdSubformDatasheet;
|
|
1943
|
+
declare const acCmdSelectAllRecords: AcCommand.acCmdSelectAllRecords;
|
|
1944
|
+
declare const acCmdViewTables: AcCommand.acCmdViewTables;
|
|
1945
|
+
declare const acCmdViewQueries: AcCommand.acCmdViewQueries;
|
|
1946
|
+
declare const acCmdViewForms: AcCommand.acCmdViewForms;
|
|
1947
|
+
declare const acCmdViewReports: AcCommand.acCmdViewReports;
|
|
1948
|
+
declare const acCmdViewMacros: AcCommand.acCmdViewMacros;
|
|
1949
|
+
declare const acCmdViewModules: AcCommand.acCmdViewModules;
|
|
1950
|
+
declare const acCmdRowHeight: AcCommand.acCmdRowHeight;
|
|
1951
|
+
declare const acCmdColumnWidth: AcCommand.acCmdColumnWidth;
|
|
1952
|
+
declare const acCmdInsertFileIntoModule: AcCommand.acCmdInsertFileIntoModule;
|
|
1953
|
+
declare const acCmdSaveModuleAsText: AcCommand.acCmdSaveModuleAsText;
|
|
1954
|
+
declare const acCmdFindPrevious: AcCommand.acCmdFindPrevious;
|
|
1955
|
+
declare const acCmdWindowSplit: AcCommand.acCmdWindowSplit;
|
|
1956
|
+
declare const acCmdProcedureDefinition: AcCommand.acCmdProcedureDefinition;
|
|
1957
|
+
declare const acCmdDebugWindow: AcCommand.acCmdDebugWindow;
|
|
1958
|
+
declare const acCmdReset: AcCommand.acCmdReset;
|
|
1959
|
+
declare const acCmdCompileAllModules: AcCommand.acCmdCompileAllModules;
|
|
1960
|
+
declare const acCmdCompileAndSaveAllModules: AcCommand.acCmdCompileAndSaveAllModules;
|
|
1961
|
+
declare const acCmdGoContinue: AcCommand.acCmdGoContinue;
|
|
1962
|
+
declare const acCmdStepOver: AcCommand.acCmdStepOver;
|
|
1963
|
+
declare const acCmdSetNextStatement: AcCommand.acCmdSetNextStatement;
|
|
1964
|
+
declare const acCmdShowNextStatement: AcCommand.acCmdShowNextStatement;
|
|
1965
|
+
declare const acCmdToggleBreakpoint: AcCommand.acCmdToggleBreakpoint;
|
|
1966
|
+
declare const acCmdClearAllBreakpoints: AcCommand.acCmdClearAllBreakpoints;
|
|
1967
|
+
declare const acCmdRelationships: AcCommand.acCmdRelationships;
|
|
1968
|
+
declare const acCmdNewObjectTable: AcCommand.acCmdNewObjectTable;
|
|
1969
|
+
declare const acCmdNewObjectQuery: AcCommand.acCmdNewObjectQuery;
|
|
1970
|
+
declare const acCmdNewObjectForm: AcCommand.acCmdNewObjectForm;
|
|
1971
|
+
declare const acCmdNewObjectReport: AcCommand.acCmdNewObjectReport;
|
|
1972
|
+
declare const acCmdNewObjectMacro: AcCommand.acCmdNewObjectMacro;
|
|
1973
|
+
declare const acCmdNewObjectModule: AcCommand.acCmdNewObjectModule;
|
|
1974
|
+
declare const acCmdNewObjectClassModule: AcCommand.acCmdNewObjectClassModule;
|
|
1975
|
+
declare const acCmdLayoutPreview: AcCommand.acCmdLayoutPreview;
|
|
1976
|
+
declare const acCmdSaveAsReport: AcCommand.acCmdSaveAsReport;
|
|
1977
|
+
declare const acCmdRename: AcCommand.acCmdRename;
|
|
1978
|
+
declare const acCmdRemoveFilterSort: AcCommand.acCmdRemoveFilterSort;
|
|
1979
|
+
declare const acCmdSaveLayout: AcCommand.acCmdSaveLayout;
|
|
1980
|
+
declare const acCmdClearAll: AcCommand.acCmdClearAll;
|
|
1981
|
+
declare const acCmdHideTable: AcCommand.acCmdHideTable;
|
|
1982
|
+
declare const acCmdShowDirectRelationships: AcCommand.acCmdShowDirectRelationships;
|
|
1983
|
+
declare const acCmdShowAllRelationships: AcCommand.acCmdShowAllRelationships;
|
|
1984
|
+
declare const acCmdCreateRelationship: AcCommand.acCmdCreateRelationship;
|
|
1985
|
+
declare const acCmdEditRelationship: AcCommand.acCmdEditRelationship;
|
|
1986
|
+
declare const acCmdIndexes: AcCommand.acCmdIndexes;
|
|
1987
|
+
declare const acCmdAlignToShortest: AcCommand.acCmdAlignToShortest;
|
|
1988
|
+
declare const acCmdAlignToTallest: AcCommand.acCmdAlignToTallest;
|
|
1989
|
+
declare const acCmdSizeToNarrowest: AcCommand.acCmdSizeToNarrowest;
|
|
1990
|
+
declare const acCmdSizeToWidest: AcCommand.acCmdSizeToWidest;
|
|
1991
|
+
declare const acCmdHorizontalSpacingMakeEqual: AcCommand.acCmdHorizontalSpacingMakeEqual;
|
|
1992
|
+
declare const acCmdHorizontalSpacingDecrease: AcCommand.acCmdHorizontalSpacingDecrease;
|
|
1993
|
+
declare const acCmdHorizontalSpacingIncrease: AcCommand.acCmdHorizontalSpacingIncrease;
|
|
1994
|
+
declare const acCmdVerticalSpacingMakeEqual: AcCommand.acCmdVerticalSpacingMakeEqual;
|
|
1995
|
+
declare const acCmdVerticalSpacingDecrease: AcCommand.acCmdVerticalSpacingDecrease;
|
|
1996
|
+
declare const acCmdVerticalSpacingIncrease: AcCommand.acCmdVerticalSpacingIncrease;
|
|
1997
|
+
declare const acCmdSortAscending: AcCommand.acCmdSortAscending;
|
|
1998
|
+
declare const acCmdSortDescending: AcCommand.acCmdSortDescending;
|
|
1999
|
+
declare const acCmdToolbarsCustomize: AcCommand.acCmdToolbarsCustomize;
|
|
2000
|
+
declare const acCmdOLEObjectConvert: AcCommand.acCmdOLEObjectConvert;
|
|
2001
|
+
declare const acCmdQueryTypeSQLDataDefinition: AcCommand.acCmdQueryTypeSQLDataDefinition;
|
|
2002
|
+
declare const acCmdQueryTypeSQLPassThrough: AcCommand.acCmdQueryTypeSQLPassThrough;
|
|
2003
|
+
declare const acCmdViewCode: AcCommand.acCmdViewCode;
|
|
2004
|
+
declare const acCmdConvertDatabase: AcCommand.acCmdConvertDatabase;
|
|
2005
|
+
declare const acCmdCallStack: AcCommand.acCmdCallStack;
|
|
2006
|
+
declare const acCmdSend: AcCommand.acCmdSend;
|
|
2007
|
+
declare const acCmdOutputToExcel: AcCommand.acCmdOutputToExcel;
|
|
2008
|
+
declare const acCmdOutputToRTF: AcCommand.acCmdOutputToRTF;
|
|
2009
|
+
declare const acCmdOutputToText: AcCommand.acCmdOutputToText;
|
|
2010
|
+
declare const acCmdInvokeBuilder: AcCommand.acCmdInvokeBuilder;
|
|
2011
|
+
declare const acCmdZoomBox: AcCommand.acCmdZoomBox;
|
|
2012
|
+
declare const acCmdQueryTypeSQLUnion: AcCommand.acCmdQueryTypeSQLUnion;
|
|
2013
|
+
declare const acCmdRun: AcCommand.acCmdRun;
|
|
2014
|
+
declare const acCmdPageHdrFtr: AcCommand.acCmdPageHdrFtr;
|
|
2015
|
+
declare const acCmdDesignView: AcCommand.acCmdDesignView;
|
|
2016
|
+
declare const acCmdSQLView: AcCommand.acCmdSQLView;
|
|
2017
|
+
declare const acCmdShowTable: AcCommand.acCmdShowTable;
|
|
2018
|
+
declare const acCmdCloseWindow: AcCommand.acCmdCloseWindow;
|
|
2019
|
+
declare const acCmdInsertRows: AcCommand.acCmdInsertRows;
|
|
2020
|
+
declare const acCmdDeleteRows: AcCommand.acCmdDeleteRows;
|
|
2021
|
+
declare const acCmdCut: AcCommand.acCmdCut;
|
|
2022
|
+
declare const acCmdCopy: AcCommand.acCmdCopy;
|
|
2023
|
+
declare const acCmdPaste: AcCommand.acCmdPaste;
|
|
2024
|
+
declare const acCmdAutoDial: AcCommand.acCmdAutoDial;
|
|
2025
|
+
declare const acCmdNewObjectAutoForm: AcCommand.acCmdNewObjectAutoForm;
|
|
2026
|
+
declare const acCmdNewObjectAutoReport: AcCommand.acCmdNewObjectAutoReport;
|
|
2027
|
+
declare const acCmdWordMailMerge: AcCommand.acCmdWordMailMerge;
|
|
2028
|
+
declare const acCmdTestValidationRules: AcCommand.acCmdTestValidationRules;
|
|
2029
|
+
declare const acCmdControlWizardsToggle: AcCommand.acCmdControlWizardsToggle;
|
|
2030
|
+
declare const acCmdEnd: AcCommand.acCmdEnd;
|
|
2031
|
+
declare const acCmdRedo: AcCommand.acCmdRedo;
|
|
2032
|
+
declare const acCmdObjectBrowser: AcCommand.acCmdObjectBrowser;
|
|
2033
|
+
declare const acCmdAddWatch: AcCommand.acCmdAddWatch;
|
|
2034
|
+
declare const acCmdEditWatch: AcCommand.acCmdEditWatch;
|
|
2035
|
+
declare const acCmdQuickWatch: AcCommand.acCmdQuickWatch;
|
|
2036
|
+
declare const acCmdStepToCursor: AcCommand.acCmdStepToCursor;
|
|
2037
|
+
declare const acCmdIndent: AcCommand.acCmdIndent;
|
|
2038
|
+
declare const acCmdOutdent: AcCommand.acCmdOutdent;
|
|
2039
|
+
declare const acCmdFilterByForm: AcCommand.acCmdFilterByForm;
|
|
2040
|
+
declare const acCmdFilterBySelection: AcCommand.acCmdFilterBySelection;
|
|
2041
|
+
declare const acCmdViewLargeIcons: AcCommand.acCmdViewLargeIcons;
|
|
2042
|
+
declare const acCmdViewDetails: AcCommand.acCmdViewDetails;
|
|
2043
|
+
declare const acCmdViewSmallIcons: AcCommand.acCmdViewSmallIcons;
|
|
2044
|
+
declare const acCmdViewList: AcCommand.acCmdViewList;
|
|
2045
|
+
declare const acCmdLineUpIcons: AcCommand.acCmdLineUpIcons;
|
|
2046
|
+
declare const acCmdArrangeIconsByName: AcCommand.acCmdArrangeIconsByName;
|
|
2047
|
+
declare const acCmdArrangeIconsByType: AcCommand.acCmdArrangeIconsByType;
|
|
2048
|
+
declare const acCmdArrangeIconsByCreated: AcCommand.acCmdArrangeIconsByCreated;
|
|
2049
|
+
declare const acCmdArrangeIconsByModified: AcCommand.acCmdArrangeIconsByModified;
|
|
2050
|
+
declare const acCmdArrangeIconsAuto: AcCommand.acCmdArrangeIconsAuto;
|
|
2051
|
+
declare const acCmdCreateShortcut: AcCommand.acCmdCreateShortcut;
|
|
2052
|
+
declare const acCmdToggleFilter: AcCommand.acCmdToggleFilter;
|
|
2053
|
+
declare const acCmdOpenTable: AcCommand.acCmdOpenTable;
|
|
2054
|
+
declare const acCmdInsertPicture: AcCommand.acCmdInsertPicture;
|
|
2055
|
+
declare const acCmdDeleteRecord: AcCommand.acCmdDeleteRecord;
|
|
2056
|
+
declare const acCmdStartupProperties: AcCommand.acCmdStartupProperties;
|
|
2057
|
+
declare const acCmdPageNumber: AcCommand.acCmdPageNumber;
|
|
2058
|
+
declare const acCmdDateAndTime: AcCommand.acCmdDateAndTime;
|
|
2059
|
+
declare const acCmdChangeToTextBox: AcCommand.acCmdChangeToTextBox;
|
|
2060
|
+
declare const acCmdChangeToLabel: AcCommand.acCmdChangeToLabel;
|
|
2061
|
+
declare const acCmdChangeToListBox: AcCommand.acCmdChangeToListBox;
|
|
2062
|
+
declare const acCmdChangeToComboBox: AcCommand.acCmdChangeToComboBox;
|
|
2063
|
+
declare const acCmdChangeToCheckBox: AcCommand.acCmdChangeToCheckBox;
|
|
2064
|
+
declare const acCmdChangeToToggleButton: AcCommand.acCmdChangeToToggleButton;
|
|
2065
|
+
declare const acCmdChangeToOptionButton: AcCommand.acCmdChangeToOptionButton;
|
|
2066
|
+
declare const acCmdChangeToImage: AcCommand.acCmdChangeToImage;
|
|
2067
|
+
declare const acCmdAnswerWizard: AcCommand.acCmdAnswerWizard;
|
|
2068
|
+
declare const acCmdMicrosoftOnTheWeb: AcCommand.acCmdMicrosoftOnTheWeb;
|
|
2069
|
+
declare const acCmdClearItemDefaults: AcCommand.acCmdClearItemDefaults;
|
|
2070
|
+
declare const acCmdZoom200: AcCommand.acCmdZoom200;
|
|
2071
|
+
declare const acCmdZoom150: AcCommand.acCmdZoom150;
|
|
2072
|
+
declare const acCmdZoom100: AcCommand.acCmdZoom100;
|
|
2073
|
+
declare const acCmdZoom75: AcCommand.acCmdZoom75;
|
|
2074
|
+
declare const acCmdZoom50: AcCommand.acCmdZoom50;
|
|
2075
|
+
declare const acCmdZoom25: AcCommand.acCmdZoom25;
|
|
2076
|
+
declare const acCmdZoom10: AcCommand.acCmdZoom10;
|
|
2077
|
+
declare const acCmdFitToWindow: AcCommand.acCmdFitToWindow;
|
|
2078
|
+
declare const acCmdPreviewOnePage: AcCommand.acCmdPreviewOnePage;
|
|
2079
|
+
declare const acCmdPreviewTwoPages: AcCommand.acCmdPreviewTwoPages;
|
|
2080
|
+
declare const acCmdPreviewFourPages: AcCommand.acCmdPreviewFourPages;
|
|
2081
|
+
declare const acCmdPreviewEightPages: AcCommand.acCmdPreviewEightPages;
|
|
2082
|
+
declare const acCmdPreviewTwelvePages: AcCommand.acCmdPreviewTwelvePages;
|
|
2083
|
+
declare const acCmdOpenURL: AcCommand.acCmdOpenURL;
|
|
2084
|
+
declare const acCmdOpenStartPage: AcCommand.acCmdOpenStartPage;
|
|
2085
|
+
declare const acCmdOpenSearchPage: AcCommand.acCmdOpenSearchPage;
|
|
2086
|
+
declare const acCmdRegisterActiveXControls: AcCommand.acCmdRegisterActiveXControls;
|
|
2087
|
+
declare const acCmdDeleteTab: AcCommand.acCmdDeleteTab;
|
|
2088
|
+
declare const acCmdDatabaseProperties: AcCommand.acCmdDatabaseProperties;
|
|
2089
|
+
declare const acCmdImport: AcCommand.acCmdImport;
|
|
2090
|
+
declare const acCmdInsertActiveXControl: AcCommand.acCmdInsertActiveXControl;
|
|
2091
|
+
declare const acCmdInsertHyperlink: AcCommand.acCmdInsertHyperlink;
|
|
2092
|
+
declare const acCmdReferences: AcCommand.acCmdReferences;
|
|
2093
|
+
declare const acCmdAutoCorrect: AcCommand.acCmdAutoCorrect;
|
|
2094
|
+
declare const acCmdInsertProcedure: AcCommand.acCmdInsertProcedure;
|
|
2095
|
+
declare const acCmdCreateReplica: AcCommand.acCmdCreateReplica;
|
|
2096
|
+
declare const acCmdSynchronizeNow: AcCommand.acCmdSynchronizeNow;
|
|
2097
|
+
declare const acCmdRecoverDesignMaster: AcCommand.acCmdRecoverDesignMaster;
|
|
2098
|
+
declare const acCmdResolveConflicts: AcCommand.acCmdResolveConflicts;
|
|
2099
|
+
declare const acCmdDeleteWatch: AcCommand.acCmdDeleteWatch;
|
|
2100
|
+
declare const acCmdSpelling: AcCommand.acCmdSpelling;
|
|
2101
|
+
declare const acCmdAutoFormat: AcCommand.acCmdAutoFormat;
|
|
2102
|
+
declare const acCmdDeleteTableColumn: AcCommand.acCmdDeleteTableColumn;
|
|
2103
|
+
declare const acCmdInsertTableColumn: AcCommand.acCmdInsertTableColumn;
|
|
2104
|
+
declare const acCmdInsertLookupColumn: AcCommand.acCmdInsertLookupColumn;
|
|
2105
|
+
declare const acCmdRenameColumn: AcCommand.acCmdRenameColumn;
|
|
2106
|
+
declare const acCmdSetDatabasePassword: AcCommand.acCmdSetDatabasePassword;
|
|
2107
|
+
declare const acCmdUserLevelSecurityWizard: AcCommand.acCmdUserLevelSecurityWizard;
|
|
2108
|
+
declare const acCmdFilterExcludingSelection: AcCommand.acCmdFilterExcludingSelection;
|
|
2109
|
+
declare const acCmdQuickPrint: AcCommand.acCmdQuickPrint;
|
|
2110
|
+
declare const acCmdConvertMacrosToVisualBasic: AcCommand.acCmdConvertMacrosToVisualBasic;
|
|
2111
|
+
declare const acCmdSaveAllModules: AcCommand.acCmdSaveAllModules;
|
|
2112
|
+
declare const acCmdFormView: AcCommand.acCmdFormView;
|
|
2113
|
+
declare const acCmdDatasheetView: AcCommand.acCmdDatasheetView;
|
|
2114
|
+
declare const acCmdAnalyzePerformance: AcCommand.acCmdAnalyzePerformance;
|
|
2115
|
+
declare const acCmdAnalyzeTable: AcCommand.acCmdAnalyzeTable;
|
|
2116
|
+
declare const acCmdDocumenter: AcCommand.acCmdDocumenter;
|
|
2117
|
+
declare const acCmdTileHorizontally: AcCommand.acCmdTileHorizontally;
|
|
2118
|
+
declare const acCmdProperties: AcCommand.acCmdProperties;
|
|
2119
|
+
declare const acCmdTransparentBackground: AcCommand.acCmdTransparentBackground;
|
|
2120
|
+
declare const acCmdTransparentBorder: AcCommand.acCmdTransparentBorder;
|
|
2121
|
+
declare const acCmdCompileLoadedModules: AcCommand.acCmdCompileLoadedModules;
|
|
2122
|
+
declare const acCmdInsertLookupField: AcCommand.acCmdInsertLookupField;
|
|
2123
|
+
declare const acCmdUndo: AcCommand.acCmdUndo;
|
|
2124
|
+
declare const acCmdInsertChart: AcCommand.acCmdInsertChart;
|
|
2125
|
+
declare const acCmdGoBack: AcCommand.acCmdGoBack;
|
|
2126
|
+
declare const acCmdGoForward: AcCommand.acCmdGoForward;
|
|
2127
|
+
declare const acCmdStopLoadingPage: AcCommand.acCmdStopLoadingPage;
|
|
2128
|
+
declare const acCmdRefreshPage: AcCommand.acCmdRefreshPage;
|
|
2129
|
+
declare const acCmdFavoritesOpen: AcCommand.acCmdFavoritesOpen;
|
|
2130
|
+
declare const acCmdFavoritesAddTo: AcCommand.acCmdFavoritesAddTo;
|
|
2131
|
+
declare const acCmdShowOnlyWebToolbar: AcCommand.acCmdShowOnlyWebToolbar;
|
|
2132
|
+
declare const acCmdToolbarControlProperties: AcCommand.acCmdToolbarControlProperties;
|
|
2133
|
+
declare const acCmdShowMembers: AcCommand.acCmdShowMembers;
|
|
2134
|
+
declare const acCmdListConstants: AcCommand.acCmdListConstants;
|
|
2135
|
+
declare const acCmdQuickInfo: AcCommand.acCmdQuickInfo;
|
|
2136
|
+
declare const acCmdParameterInfo: AcCommand.acCmdParameterInfo;
|
|
2137
|
+
declare const acCmdCompleteWord: AcCommand.acCmdCompleteWord;
|
|
2138
|
+
declare const acCmdBookmarksToggle: AcCommand.acCmdBookmarksToggle;
|
|
2139
|
+
declare const acCmdBookmarksNext: AcCommand.acCmdBookmarksNext;
|
|
2140
|
+
declare const acCmdBookmarksPrevious: AcCommand.acCmdBookmarksPrevious;
|
|
2141
|
+
declare const acCmdBookmarksClearAll: AcCommand.acCmdBookmarksClearAll;
|
|
2142
|
+
declare const acCmdStepOut: AcCommand.acCmdStepOut;
|
|
2143
|
+
declare const acCmdFindPrevWordUnderCursor: AcCommand.acCmdFindPrevWordUnderCursor;
|
|
2144
|
+
declare const acCmdFindNextWordUnderCursor: AcCommand.acCmdFindNextWordUnderCursor;
|
|
2145
|
+
declare const acCmdObjBrwFindWholeWordOnly: AcCommand.acCmdObjBrwFindWholeWordOnly;
|
|
2146
|
+
declare const acCmdObjBrwShowHiddenMembers: AcCommand.acCmdObjBrwShowHiddenMembers;
|
|
2147
|
+
declare const acCmdObjBrwHelp: AcCommand.acCmdObjBrwHelp;
|
|
2148
|
+
declare const acCmdObjBrwViewDefinition: AcCommand.acCmdObjBrwViewDefinition;
|
|
2149
|
+
declare const acCmdObjBrwGroupMembers: AcCommand.acCmdObjBrwGroupMembers;
|
|
2150
|
+
declare const acCmdSelectReport: AcCommand.acCmdSelectReport;
|
|
2151
|
+
declare const acCmdSaveAsHTML: AcCommand.acCmdSaveAsHTML;
|
|
2152
|
+
declare const acCmdSaveAsIDC: AcCommand.acCmdSaveAsIDC;
|
|
2153
|
+
declare const acCmdSaveAsASP: AcCommand.acCmdSaveAsASP;
|
|
2154
|
+
declare const acCmdPublishDefaults: AcCommand.acCmdPublishDefaults;
|
|
2155
|
+
declare const acCmdEditHyperlink: AcCommand.acCmdEditHyperlink;
|
|
2156
|
+
declare const acCmdOpenHyperlink: AcCommand.acCmdOpenHyperlink;
|
|
2157
|
+
declare const acCmdOpenNewHyperlink: AcCommand.acCmdOpenNewHyperlink;
|
|
2158
|
+
declare const acCmdCopyHyperlink: AcCommand.acCmdCopyHyperlink;
|
|
2159
|
+
declare const acCmdHyperlinkDisplayText: AcCommand.acCmdHyperlinkDisplayText;
|
|
2160
|
+
declare const acCmdTabControlPageOrder: AcCommand.acCmdTabControlPageOrder;
|
|
2161
|
+
declare const acCmdInsertPage: AcCommand.acCmdInsertPage;
|
|
2162
|
+
declare const acCmdDeletePage: AcCommand.acCmdDeletePage;
|
|
2163
|
+
declare const acCmdSelectAll: AcCommand.acCmdSelectAll;
|
|
2164
|
+
declare const acCmdCreateMenuFromMacro: AcCommand.acCmdCreateMenuFromMacro;
|
|
2165
|
+
declare const acCmdCreateToolbarFromMacro: AcCommand.acCmdCreateToolbarFromMacro;
|
|
2166
|
+
declare const acCmdCreateShortcutMenuFromMacro: AcCommand.acCmdCreateShortcutMenuFromMacro;
|
|
2167
|
+
declare const acCmdDelete: AcCommand.acCmdDelete;
|
|
2168
|
+
declare const acCmdRunOpenMacro: AcCommand.acCmdRunOpenMacro;
|
|
2169
|
+
declare const acCmdLastPosition: AcCommand.acCmdLastPosition;
|
|
2170
|
+
declare const acCmdPrint: AcCommand.acCmdPrint;
|
|
2171
|
+
declare const acCmdFindNext: AcCommand.acCmdFindNext;
|
|
2172
|
+
declare const acCmdStepInto: AcCommand.acCmdStepInto;
|
|
2173
|
+
declare const acCmdClearHyperlink: AcCommand.acCmdClearHyperlink;
|
|
2174
|
+
declare const acCmdDataAccessPageBrowse: AcCommand.acCmdDataAccessPageBrowse;
|
|
2175
|
+
declare const acCmdNewObjectDataAccessPage: AcCommand.acCmdNewObjectDataAccessPage;
|
|
2176
|
+
declare const acCmdSelectDataAccessPage: AcCommand.acCmdSelectDataAccessPage;
|
|
2177
|
+
declare const acCmdViewDataAccessPages: AcCommand.acCmdViewDataAccessPages;
|
|
2178
|
+
declare const acCmdNewObjectView: AcCommand.acCmdNewObjectView;
|
|
2179
|
+
declare const acCmdNewObjectStoredProcedure: AcCommand.acCmdNewObjectStoredProcedure;
|
|
2180
|
+
declare const acCmdNewObjectDiagram: AcCommand.acCmdNewObjectDiagram;
|
|
2181
|
+
declare const acCmdViewFieldList: AcCommand.acCmdViewFieldList;
|
|
2182
|
+
declare const acCmdViewDiagrams: AcCommand.acCmdViewDiagrams;
|
|
2183
|
+
declare const acCmdViewStoredProcedures: AcCommand.acCmdViewStoredProcedures;
|
|
2184
|
+
declare const acCmdViewViews: AcCommand.acCmdViewViews;
|
|
2185
|
+
declare const acCmdViewShowPaneSQL: AcCommand.acCmdViewShowPaneSQL;
|
|
2186
|
+
declare const acCmdViewShowPaneDiagram: AcCommand.acCmdViewShowPaneDiagram;
|
|
2187
|
+
declare const acCmdViewShowPaneGrid: AcCommand.acCmdViewShowPaneGrid;
|
|
2188
|
+
declare const acCmdViewVerifySQL: AcCommand.acCmdViewVerifySQL;
|
|
2189
|
+
declare const acCmdQueryGroupBy: AcCommand.acCmdQueryGroupBy;
|
|
2190
|
+
declare const acCmdQueryAddToOutput: AcCommand.acCmdQueryAddToOutput;
|
|
2191
|
+
declare const acCmdViewTableColumnNames: AcCommand.acCmdViewTableColumnNames;
|
|
2192
|
+
declare const acCmdViewTableNameOnly: AcCommand.acCmdViewTableNameOnly;
|
|
2193
|
+
declare const acCmdHidePane: AcCommand.acCmdHidePane;
|
|
2194
|
+
declare const acCmdRemove: AcCommand.acCmdRemove;
|
|
2195
|
+
declare const acCmdViewTableColumnProperties: AcCommand.acCmdViewTableColumnProperties;
|
|
2196
|
+
declare const acCmdViewTableKeys: AcCommand.acCmdViewTableKeys;
|
|
2197
|
+
declare const acCmdViewTableUserView: AcCommand.acCmdViewTableUserView;
|
|
2198
|
+
declare const acCmdZoomSelection: AcCommand.acCmdZoomSelection;
|
|
2199
|
+
declare const acCmdDiagramNewLabel: AcCommand.acCmdDiagramNewLabel;
|
|
2200
|
+
declare const acCmdDiagramAddRelatedTables: AcCommand.acCmdDiagramAddRelatedTables;
|
|
2201
|
+
declare const acCmdDiagramShowRelationshipLabels: AcCommand.acCmdDiagramShowRelationshipLabels;
|
|
2202
|
+
declare const acCmdDiagramModifyUserDefinedView: AcCommand.acCmdDiagramModifyUserDefinedView;
|
|
2203
|
+
declare const acCmdDiagramViewPageBreaks: AcCommand.acCmdDiagramViewPageBreaks;
|
|
2204
|
+
declare const acCmdDiagramRecalculatePageBreaks: AcCommand.acCmdDiagramRecalculatePageBreaks;
|
|
2205
|
+
declare const acCmdDiagramAutosizeSelectedTables: AcCommand.acCmdDiagramAutosizeSelectedTables;
|
|
2206
|
+
declare const acCmdDiagramLayoutSelection: AcCommand.acCmdDiagramLayoutSelection;
|
|
2207
|
+
declare const acCmdDiagramLayoutDiagram: AcCommand.acCmdDiagramLayoutDiagram;
|
|
2208
|
+
declare const acCmdDiagramNewTable: AcCommand.acCmdDiagramNewTable;
|
|
2209
|
+
declare const acCmdDiagramDeleteRelationship: AcCommand.acCmdDiagramDeleteRelationship;
|
|
2210
|
+
declare const acCmdConnection: AcCommand.acCmdConnection;
|
|
2211
|
+
declare const acCmdEditTriggers: AcCommand.acCmdEditTriggers;
|
|
2212
|
+
declare const acCmdDataAccessPageDesignView: AcCommand.acCmdDataAccessPageDesignView;
|
|
2213
|
+
declare const acCmdPromote: AcCommand.acCmdPromote;
|
|
2214
|
+
declare const acCmdGroupByTable: AcCommand.acCmdGroupByTable;
|
|
2215
|
+
declare const acCmdDemote: AcCommand.acCmdDemote;
|
|
2216
|
+
declare const acCmdSaveAsDataAccessPage: AcCommand.acCmdSaveAsDataAccessPage;
|
|
2217
|
+
declare const acCmdMicrosoftScriptEditor: AcCommand.acCmdMicrosoftScriptEditor;
|
|
2218
|
+
declare const acCmdWorkgroupAdministrator: AcCommand.acCmdWorkgroupAdministrator;
|
|
2219
|
+
declare const acCmdNewObjectFunction: AcCommand.acCmdNewObjectFunction;
|
|
2220
|
+
declare const acCmdViewFunctions: AcCommand.acCmdViewFunctions;
|
|
2221
|
+
declare const acCmdPivotTableView: AcCommand.acCmdPivotTableView;
|
|
2222
|
+
declare const acCmdPivotChartView: AcCommand.acCmdPivotChartView;
|
|
2223
|
+
declare const acCmdPivotAutoFilter: AcCommand.acCmdPivotAutoFilter;
|
|
2224
|
+
declare const acCmdPivotTableSubtotal: AcCommand.acCmdPivotTableSubtotal;
|
|
2225
|
+
declare const acCmdPivotCollapse: AcCommand.acCmdPivotCollapse;
|
|
2226
|
+
declare const acCmdPivotExpand: AcCommand.acCmdPivotExpand;
|
|
2227
|
+
declare const acCmdPivotTableHideDetails: AcCommand.acCmdPivotTableHideDetails;
|
|
2228
|
+
declare const acCmdPivotTableShowDetails: AcCommand.acCmdPivotTableShowDetails;
|
|
2229
|
+
declare const acCmdPivotRefresh: AcCommand.acCmdPivotRefresh;
|
|
2230
|
+
declare const acCmdPivotTableExportToExcel: AcCommand.acCmdPivotTableExportToExcel;
|
|
2231
|
+
declare const acCmdPivotTableMoveToRowArea: AcCommand.acCmdPivotTableMoveToRowArea;
|
|
2232
|
+
declare const acCmdPivotTableMoveToColumnArea: AcCommand.acCmdPivotTableMoveToColumnArea;
|
|
2233
|
+
declare const acCmdPivotTableMoveToFilterArea: AcCommand.acCmdPivotTableMoveToFilterArea;
|
|
2234
|
+
declare const acCmdPivotTableMoveToDetailArea: AcCommand.acCmdPivotTableMoveToDetailArea;
|
|
2235
|
+
declare const acCmdPivotTablePromote: AcCommand.acCmdPivotTablePromote;
|
|
2236
|
+
declare const acCmdPivotTableDemote: AcCommand.acCmdPivotTableDemote;
|
|
2237
|
+
declare const acCmdPivotAutoSum: AcCommand.acCmdPivotAutoSum;
|
|
2238
|
+
declare const acCmdPivotAutoCount: AcCommand.acCmdPivotAutoCount;
|
|
2239
|
+
declare const acCmdPivotAutoMin: AcCommand.acCmdPivotAutoMin;
|
|
2240
|
+
declare const acCmdPivotAutoMax: AcCommand.acCmdPivotAutoMax;
|
|
2241
|
+
declare const acCmdPivotAutoAverage: AcCommand.acCmdPivotAutoAverage;
|
|
2242
|
+
declare const acCmdPivotAutoStdDev: AcCommand.acCmdPivotAutoStdDev;
|
|
2243
|
+
declare const acCmdPivotAutoVar: AcCommand.acCmdPivotAutoVar;
|
|
2244
|
+
declare const acCmdPivotAutoStdDevP: AcCommand.acCmdPivotAutoStdDevP;
|
|
2245
|
+
declare const acCmdPivotAutoVarP: AcCommand.acCmdPivotAutoVarP;
|
|
2246
|
+
declare const acCmdPivotShowTop1: AcCommand.acCmdPivotShowTop1;
|
|
2247
|
+
declare const acCmdPivotShowTop2: AcCommand.acCmdPivotShowTop2;
|
|
2248
|
+
declare const acCmdPivotShowTop5: AcCommand.acCmdPivotShowTop5;
|
|
2249
|
+
declare const acCmdPivotShowTop10: AcCommand.acCmdPivotShowTop10;
|
|
2250
|
+
declare const acCmdPivotShowTop25: AcCommand.acCmdPivotShowTop25;
|
|
2251
|
+
declare const acCmdPivotShowTop1Percent: AcCommand.acCmdPivotShowTop1Percent;
|
|
2252
|
+
declare const acCmdPivotShowTop2Percent: AcCommand.acCmdPivotShowTop2Percent;
|
|
2253
|
+
declare const acCmdPivotShowTop5Percent: AcCommand.acCmdPivotShowTop5Percent;
|
|
2254
|
+
declare const acCmdPivotShowTop10Percent: AcCommand.acCmdPivotShowTop10Percent;
|
|
2255
|
+
declare const acCmdPivotShowTop25Percent: AcCommand.acCmdPivotShowTop25Percent;
|
|
2256
|
+
declare const acCmdPivotShowTopOther: AcCommand.acCmdPivotShowTopOther;
|
|
2257
|
+
declare const acCmdPivotShowBottom1: AcCommand.acCmdPivotShowBottom1;
|
|
2258
|
+
declare const acCmdPivotShowBottom2: AcCommand.acCmdPivotShowBottom2;
|
|
2259
|
+
declare const acCmdPivotShowBottom5: AcCommand.acCmdPivotShowBottom5;
|
|
2260
|
+
declare const acCmdPivotShowBottom10: AcCommand.acCmdPivotShowBottom10;
|
|
2261
|
+
declare const acCmdPivotShowBottom25: AcCommand.acCmdPivotShowBottom25;
|
|
2262
|
+
declare const acCmdPivotShowBottom1Percent: AcCommand.acCmdPivotShowBottom1Percent;
|
|
2263
|
+
declare const acCmdPivotShowBottom2Percent: AcCommand.acCmdPivotShowBottom2Percent;
|
|
2264
|
+
declare const acCmdPivotShowBottom5Percent: AcCommand.acCmdPivotShowBottom5Percent;
|
|
2265
|
+
declare const acCmdPivotShowBottom10Percent: AcCommand.acCmdPivotShowBottom10Percent;
|
|
2266
|
+
declare const acCmdPivotShowBottom25Percent: AcCommand.acCmdPivotShowBottom25Percent;
|
|
2267
|
+
declare const acCmdPivotShowBottomOther: AcCommand.acCmdPivotShowBottomOther;
|
|
2268
|
+
declare const acCmdPivotTableCreateCalcTotal: AcCommand.acCmdPivotTableCreateCalcTotal;
|
|
2269
|
+
declare const acCmdPivotTableCreateCalcField: AcCommand.acCmdPivotTableCreateCalcField;
|
|
2270
|
+
declare const acCmdPivotTableShowAsNormal: AcCommand.acCmdPivotTableShowAsNormal;
|
|
2271
|
+
declare const acCmdPivotTablePercentRowTotal: AcCommand.acCmdPivotTablePercentRowTotal;
|
|
2272
|
+
declare const acCmdPivotTablePercentColumnTotal: AcCommand.acCmdPivotTablePercentColumnTotal;
|
|
2273
|
+
declare const acCmdPivotTablePercentParentRowItem: AcCommand.acCmdPivotTablePercentParentRowItem;
|
|
2274
|
+
declare const acCmdPivotTablePercentParentColumnItem: AcCommand.acCmdPivotTablePercentParentColumnItem;
|
|
2275
|
+
declare const acCmdPivotTablePercentGrandTotal: AcCommand.acCmdPivotTablePercentGrandTotal;
|
|
2276
|
+
declare const acCmdPivotTableExpandIndicators: AcCommand.acCmdPivotTableExpandIndicators;
|
|
2277
|
+
declare const acCmdPivotDropAreas: AcCommand.acCmdPivotDropAreas;
|
|
2278
|
+
declare const acCmdPivotChartType: AcCommand.acCmdPivotChartType;
|
|
2279
|
+
declare const acCmdPivotDelete: AcCommand.acCmdPivotDelete;
|
|
2280
|
+
declare const acCmdPivotChartShowLegend: AcCommand.acCmdPivotChartShowLegend;
|
|
2281
|
+
declare const acCmdPivotChartByRowByColumn: AcCommand.acCmdPivotChartByRowByColumn;
|
|
2282
|
+
declare const acCmdPivotChartDrillInto: AcCommand.acCmdPivotChartDrillInto;
|
|
2283
|
+
declare const acCmdPivotChartMultiplePlots: AcCommand.acCmdPivotChartMultiplePlots;
|
|
2284
|
+
declare const acCmdPivotChartMultiplePlotsUnifiedScale: AcCommand.acCmdPivotChartMultiplePlotsUnifiedScale;
|
|
2285
|
+
declare const acCmdPivotChartUndo: AcCommand.acCmdPivotChartUndo;
|
|
2286
|
+
declare const acCmdPivotShowAll: AcCommand.acCmdPivotShowAll;
|
|
2287
|
+
declare const acCmdSubformFormView: AcCommand.acCmdSubformFormView;
|
|
2288
|
+
declare const acCmdSubformDatasheetView: AcCommand.acCmdSubformDatasheetView;
|
|
2289
|
+
declare const acCmdSubformPivotTableView: AcCommand.acCmdSubformPivotTableView;
|
|
2290
|
+
declare const acCmdSubformPivotChartView: AcCommand.acCmdSubformPivotChartView;
|
|
2291
|
+
declare const acCmdWebPagePreview: AcCommand.acCmdWebPagePreview;
|
|
2292
|
+
declare const acCmdPageProperties: AcCommand.acCmdPageProperties;
|
|
2293
|
+
declare const acCmdDataOutline: AcCommand.acCmdDataOutline;
|
|
2294
|
+
declare const acCmdInsertMovieFromFile: AcCommand.acCmdInsertMovieFromFile;
|
|
2295
|
+
declare const acCmdInsertPivotTable: AcCommand.acCmdInsertPivotTable;
|
|
2296
|
+
declare const acCmdInsertSpreadsheet: AcCommand.acCmdInsertSpreadsheet;
|
|
2297
|
+
declare const acCmdInsertUnboundSection: AcCommand.acCmdInsertUnboundSection;
|
|
2298
|
+
declare const acCmdWebTheme: AcCommand.acCmdWebTheme;
|
|
2299
|
+
declare const acCmdBackgroundPicture: AcCommand.acCmdBackgroundPicture;
|
|
2300
|
+
declare const acCmdBackgroundSound: AcCommand.acCmdBackgroundSound;
|
|
2301
|
+
declare const acCmdAlignMiddle: AcCommand.acCmdAlignMiddle;
|
|
2302
|
+
declare const acCmdAlignCenter: AcCommand.acCmdAlignCenter;
|
|
2303
|
+
declare const acCmdAlignmentAndSizing: AcCommand.acCmdAlignmentAndSizing;
|
|
2304
|
+
declare const acCmdDataAccessPageFieldListRefresh: AcCommand.acCmdDataAccessPageFieldListRefresh;
|
|
2305
|
+
declare const acCmdDataAccessPageAddToPage: AcCommand.acCmdDataAccessPageAddToPage;
|
|
2306
|
+
declare const acCmdZoom500: AcCommand.acCmdZoom500;
|
|
2307
|
+
declare const acCmdZoom1000: AcCommand.acCmdZoom1000;
|
|
2308
|
+
declare const acCmdPrintRelationships: AcCommand.acCmdPrintRelationships;
|
|
2309
|
+
declare const acCmdGroupControls: AcCommand.acCmdGroupControls;
|
|
2310
|
+
declare const acCmdUngroupControls: AcCommand.acCmdUngroupControls;
|
|
2311
|
+
declare const acCmdWebPageProperties: AcCommand.acCmdWebPageProperties;
|
|
2312
|
+
declare const acCmdExport: AcCommand.acCmdExport;
|
|
2313
|
+
declare const acCmdOfficeClipboard: AcCommand.acCmdOfficeClipboard;
|
|
2314
|
+
declare const acCmdDeleteTable: AcCommand.acCmdDeleteTable;
|
|
2315
|
+
declare const acCmdPasteAsHyperlink: AcCommand.acCmdPasteAsHyperlink;
|
|
2316
|
+
declare const acCmdNewGroup: AcCommand.acCmdNewGroup;
|
|
2317
|
+
declare const acCmdRenameGroup: AcCommand.acCmdRenameGroup;
|
|
2318
|
+
declare const acCmdDeleteGroup: AcCommand.acCmdDeleteGroup;
|
|
2319
|
+
declare const acCmdAddToNewGroup: AcCommand.acCmdAddToNewGroup;
|
|
2320
|
+
declare const acCmdSubformInNewWindow: AcCommand.acCmdSubformInNewWindow;
|
|
2321
|
+
declare const acCmdServerProperties: AcCommand.acCmdServerProperties;
|
|
2322
|
+
declare const acCmdTableCustomView: AcCommand.acCmdTableCustomView;
|
|
2323
|
+
declare const acCmdTableAddTable: AcCommand.acCmdTableAddTable;
|
|
2324
|
+
declare const acCmdInsertSubdatasheet: AcCommand.acCmdInsertSubdatasheet;
|
|
2325
|
+
declare const acCmdConditionalFormatting: AcCommand.acCmdConditionalFormatting;
|
|
2326
|
+
declare const acCmdChangeToCommandButton: AcCommand.acCmdChangeToCommandButton;
|
|
2327
|
+
declare const acCmdSubdatasheetExpandAll: AcCommand.acCmdSubdatasheetExpandAll;
|
|
2328
|
+
declare const acCmdSubdatasheetCollapseAll: AcCommand.acCmdSubdatasheetCollapseAll;
|
|
2329
|
+
declare const acCmdSubdatasheetRemove: AcCommand.acCmdSubdatasheetRemove;
|
|
2330
|
+
declare const acCmdServerFilterByForm: AcCommand.acCmdServerFilterByForm;
|
|
2331
|
+
declare const acCmdMaximiumRecords: AcCommand.acCmdMaximiumRecords;
|
|
2332
|
+
declare const acCmdSpeech: AcCommand.acCmdSpeech;
|
|
2333
|
+
declare const acCmdBackup: AcCommand.acCmdBackup;
|
|
2334
|
+
declare const acCmdRestore: AcCommand.acCmdRestore;
|
|
2335
|
+
declare const acCmdTransferSQLDatabase: AcCommand.acCmdTransferSQLDatabase;
|
|
2336
|
+
declare const acCmdCopyDatabaseFile: AcCommand.acCmdCopyDatabaseFile;
|
|
2337
|
+
declare const acCmdDropSQLDatabase: AcCommand.acCmdDropSQLDatabase;
|
|
2338
|
+
declare const acCmdLinkedTableManager: AcCommand.acCmdLinkedTableManager;
|
|
2339
|
+
declare const acCmdDatabaseSplitter: AcCommand.acCmdDatabaseSplitter;
|
|
2340
|
+
declare const acCmdSwitchboardManager: AcCommand.acCmdSwitchboardManager;
|
|
2341
|
+
declare const acCmdUpsizingWizard: AcCommand.acCmdUpsizingWizard;
|
|
2342
|
+
declare const acCmdPartialReplicaWizard: AcCommand.acCmdPartialReplicaWizard;
|
|
2343
|
+
declare const acCmdVisualBasicEditor: AcCommand.acCmdVisualBasicEditor;
|
|
2344
|
+
declare const acCmdAddInManager: AcCommand.acCmdAddInManager;
|
|
2345
|
+
declare const acCmdPivotTableClearCustomOrdering: AcCommand.acCmdPivotTableClearCustomOrdering;
|
|
2346
|
+
declare const acCmdPivotTableFilterBySelection: AcCommand.acCmdPivotTableFilterBySelection;
|
|
2347
|
+
declare const acCmdPivotTableRemove: AcCommand.acCmdPivotTableRemove;
|
|
2348
|
+
declare const acCmdPivotTableGroupItems: AcCommand.acCmdPivotTableGroupItems;
|
|
2349
|
+
declare const acCmdPivotTableUngroupItems: AcCommand.acCmdPivotTableUngroupItems;
|
|
2350
|
+
declare const acCmdPivotChartDrillOut: AcCommand.acCmdPivotChartDrillOut;
|
|
2351
|
+
declare const acCmdShowEnvelope: AcCommand.acCmdShowEnvelope;
|
|
2352
|
+
declare const acCmdPivotChartSortAscByTotal: AcCommand.acCmdPivotChartSortAscByTotal;
|
|
2353
|
+
declare const acCmdPivotChartSortDescByTotal: AcCommand.acCmdPivotChartSortDescByTotal;
|
|
2354
|
+
declare const acCmdViewObjectDependencies: AcCommand.acCmdViewObjectDependencies;
|
|
2355
|
+
declare const acCmdPublishDatabase: AcCommand.acCmdPublishDatabase;
|
|
2356
|
+
declare const acCmdCloseDatabase: AcCommand.acCmdCloseDatabase;
|
|
2357
|
+
declare const acCmdReportView: AcCommand.acCmdReportView;
|
|
2358
|
+
declare const acCmdToggleOffline: AcCommand.acCmdToggleOffline;
|
|
2359
|
+
declare const acCmdRefreshData: AcCommand.acCmdRefreshData;
|
|
2360
|
+
declare const acCmdShareOnSharePoint: AcCommand.acCmdShareOnSharePoint;
|
|
2361
|
+
declare const acCmdSavedImports: AcCommand.acCmdSavedImports;
|
|
2362
|
+
declare const acCmdImportAttachAccess: AcCommand.acCmdImportAttachAccess;
|
|
2363
|
+
declare const acCmdImportAttachExcel: AcCommand.acCmdImportAttachExcel;
|
|
2364
|
+
declare const acCmdImportAttachText: AcCommand.acCmdImportAttachText;
|
|
2365
|
+
declare const acCmdImportAttachSharePointList: AcCommand.acCmdImportAttachSharePointList;
|
|
2366
|
+
declare const acCmdImportAttachXML: AcCommand.acCmdImportAttachXML;
|
|
2367
|
+
declare const acCmdImportAttachODBC: AcCommand.acCmdImportAttachODBC;
|
|
2368
|
+
declare const acCmdImportAttachHTML: AcCommand.acCmdImportAttachHTML;
|
|
2369
|
+
declare const acCmdImportAttachOutlook: AcCommand.acCmdImportAttachOutlook;
|
|
2370
|
+
declare const acCmdImportAttachdBase: AcCommand.acCmdImportAttachdBase;
|
|
2371
|
+
declare const acCmdImportAttachParadox: AcCommand.acCmdImportAttachParadox;
|
|
2372
|
+
declare const acCmdImportAttachLotus: AcCommand.acCmdImportAttachLotus;
|
|
2373
|
+
declare const acCmdSavedExports: AcCommand.acCmdSavedExports;
|
|
2374
|
+
declare const acCmdExportExcel: AcCommand.acCmdExportExcel;
|
|
2375
|
+
declare const acCmdExportSharePointList: AcCommand.acCmdExportSharePointList;
|
|
2376
|
+
declare const acCmdExportRTF: AcCommand.acCmdExportRTF;
|
|
2377
|
+
declare const acCmdExportAccess: AcCommand.acCmdExportAccess;
|
|
2378
|
+
declare const acCmdExportText: AcCommand.acCmdExportText;
|
|
2379
|
+
declare const acCmdExportXML: AcCommand.acCmdExportXML;
|
|
2380
|
+
declare const acCmdExportODBC: AcCommand.acCmdExportODBC;
|
|
2381
|
+
declare const acCmdExportSnapShot: AcCommand.acCmdExportSnapShot;
|
|
2382
|
+
declare const acCmdExportHTML: AcCommand.acCmdExportHTML;
|
|
2383
|
+
declare const acCmdExportdBase: AcCommand.acCmdExportdBase;
|
|
2384
|
+
declare const acCmdExportParadox: AcCommand.acCmdExportParadox;
|
|
2385
|
+
declare const acCmdExportLotus: AcCommand.acCmdExportLotus;
|
|
2386
|
+
declare const acCmdStackedLayout: AcCommand.acCmdStackedLayout;
|
|
2387
|
+
declare const acCmdTabularLayout: AcCommand.acCmdTabularLayout;
|
|
2388
|
+
declare const acCmdSelectEntireRow: AcCommand.acCmdSelectEntireRow;
|
|
2389
|
+
declare const acCmdSelectEntireColumn: AcCommand.acCmdSelectEntireColumn;
|
|
2390
|
+
declare const acCmdMoveColumnCellUp: AcCommand.acCmdMoveColumnCellUp;
|
|
2391
|
+
declare const acCmdMoveColumnCellDown: AcCommand.acCmdMoveColumnCellDown;
|
|
2392
|
+
declare const acCmdLayoutGridlinesBoth: AcCommand.acCmdLayoutGridlinesBoth;
|
|
2393
|
+
declare const acCmdLayoutGridlinesVertical: AcCommand.acCmdLayoutGridlinesVertical;
|
|
2394
|
+
declare const acCmdLayoutGridlinesHorizontal: AcCommand.acCmdLayoutGridlinesHorizontal;
|
|
2395
|
+
declare const acCmdLayoutGridlinesNone: AcCommand.acCmdLayoutGridlinesNone;
|
|
2396
|
+
declare const acCmdLayoutGridlinesCrossHatch: AcCommand.acCmdLayoutGridlinesCrossHatch;
|
|
2397
|
+
declare const acCmdLayoutGridlinesTop: AcCommand.acCmdLayoutGridlinesTop;
|
|
2398
|
+
declare const acCmdLayoutGridlinesBottom: AcCommand.acCmdLayoutGridlinesBottom;
|
|
2399
|
+
declare const acCmdLayoutGridlinesOutline: AcCommand.acCmdLayoutGridlinesOutline;
|
|
2400
|
+
declare const acCmdRemoveFromLayout: AcCommand.acCmdRemoveFromLayout;
|
|
2401
|
+
declare const acCmdAddFromOutlook: AcCommand.acCmdAddFromOutlook;
|
|
2402
|
+
declare const acCmdSaveAsOutlookContact: AcCommand.acCmdSaveAsOutlookContact;
|
|
2403
|
+
declare const acCmdInsertLogo: AcCommand.acCmdInsertLogo;
|
|
2404
|
+
declare const acCmdInsertTitle: AcCommand.acCmdInsertTitle;
|
|
2405
|
+
declare const acCmdPasteFormatting: AcCommand.acCmdPasteFormatting;
|
|
2406
|
+
declare const acCmdMacroArguments: AcCommand.acCmdMacroArguments;
|
|
2407
|
+
declare const acCmdMacroAllActions: AcCommand.acCmdMacroAllActions;
|
|
2408
|
+
declare const acCmdPrintSelection: AcCommand.acCmdPrintSelection;
|
|
2409
|
+
declare const acCmdPublishFixedFormat: AcCommand.acCmdPublishFixedFormat;
|
|
2410
|
+
declare const acCmdExportFixedFormat: AcCommand.acCmdExportFixedFormat;
|
|
2411
|
+
declare const acCmdLayoutView: AcCommand.acCmdLayoutView;
|
|
2412
|
+
declare const acCmdNewObjectContinuousForm: AcCommand.acCmdNewObjectContinuousForm;
|
|
2413
|
+
declare const acCmdNewObjectSplitForm: AcCommand.acCmdNewObjectSplitForm;
|
|
2414
|
+
declare const acCmdNewObjectPivotChart: AcCommand.acCmdNewObjectPivotChart;
|
|
2415
|
+
declare const acCmdNewObjectPivotTable: AcCommand.acCmdNewObjectPivotTable;
|
|
2416
|
+
declare const acCmdNewObjectDatasheetForm: AcCommand.acCmdNewObjectDatasheetForm;
|
|
2417
|
+
declare const acCmdNewObjectModalForm: AcCommand.acCmdNewObjectModalForm;
|
|
2418
|
+
declare const acCmdNewObjectBlankForm: AcCommand.acCmdNewObjectBlankForm;
|
|
2419
|
+
declare const acCmdNewObjectLabelsReport: AcCommand.acCmdNewObjectLabelsReport;
|
|
2420
|
+
declare const acCmdNewObjectBlankReport: AcCommand.acCmdNewObjectBlankReport;
|
|
2421
|
+
declare const acCmdNewObjectDesignQuery: AcCommand.acCmdNewObjectDesignQuery;
|
|
2422
|
+
declare const acCmdNewObjectDesignForm: AcCommand.acCmdNewObjectDesignForm;
|
|
2423
|
+
declare const acCmdNewObjectDesignReport: AcCommand.acCmdNewObjectDesignReport;
|
|
2424
|
+
declare const acCmdNewObjectDesignTable: AcCommand.acCmdNewObjectDesignTable;
|
|
2425
|
+
declare const acCmdEditListItems: AcCommand.acCmdEditListItems;
|
|
2426
|
+
declare const acCmdCollectDataViaEmail: AcCommand.acCmdCollectDataViaEmail;
|
|
2427
|
+
declare const acCmdManageReplies: AcCommand.acCmdManageReplies;
|
|
2428
|
+
declare const acCmdAnchorTopLeft: AcCommand.acCmdAnchorTopLeft;
|
|
2429
|
+
declare const acCmdAnchorStretchAcross: AcCommand.acCmdAnchorStretchAcross;
|
|
2430
|
+
declare const acCmdAnchorTopRight: AcCommand.acCmdAnchorTopRight;
|
|
2431
|
+
declare const acCmdAnchorStretchDown: AcCommand.acCmdAnchorStretchDown;
|
|
2432
|
+
declare const acCmdAnchorStretchDownAcross: AcCommand.acCmdAnchorStretchDownAcross;
|
|
2433
|
+
declare const acCmdAnchorStretchDownRight: AcCommand.acCmdAnchorStretchDownRight;
|
|
2434
|
+
declare const acCmdAnchorBottomLeft: AcCommand.acCmdAnchorBottomLeft;
|
|
2435
|
+
declare const acCmdAnchorBottomStretchAcross: AcCommand.acCmdAnchorBottomStretchAcross;
|
|
2436
|
+
declare const acCmdAnchorBottomRight: AcCommand.acCmdAnchorBottomRight;
|
|
2437
|
+
declare const acCmdFilterMenu: AcCommand.acCmdFilterMenu;
|
|
2438
|
+
declare const acCmdShowColumnHistory: AcCommand.acCmdShowColumnHistory;
|
|
2439
|
+
declare const acCmdBrowseSharePointList: AcCommand.acCmdBrowseSharePointList;
|
|
2440
|
+
declare const acCmdModifySharePointList: AcCommand.acCmdModifySharePointList;
|
|
2441
|
+
declare const acCmdModifySharePointListAlerts: AcCommand.acCmdModifySharePointListAlerts;
|
|
2442
|
+
declare const acCmdModifySharePointListWorkflow: AcCommand.acCmdModifySharePointListWorkflow;
|
|
2443
|
+
declare const acCmdModifySharePointListPermissions: AcCommand.acCmdModifySharePointListPermissions;
|
|
2444
|
+
declare const acCmdRefreshSharePointList: AcCommand.acCmdRefreshSharePointList;
|
|
2445
|
+
declare const acCmdDeleteSharePointList: AcCommand.acCmdDeleteSharePointList;
|
|
2446
|
+
declare const acCmdControlMarginsNone: AcCommand.acCmdControlMarginsNone;
|
|
2447
|
+
declare const acCmdControlMarginsNarrow: AcCommand.acCmdControlMarginsNarrow;
|
|
2448
|
+
declare const acCmdControlMarginsMedium: AcCommand.acCmdControlMarginsMedium;
|
|
2449
|
+
declare const acCmdControlMarginsWide: AcCommand.acCmdControlMarginsWide;
|
|
2450
|
+
declare const acCmdControlPaddingNone: AcCommand.acCmdControlPaddingNone;
|
|
2451
|
+
declare const acCmdControlPaddingNarrow: AcCommand.acCmdControlPaddingNarrow;
|
|
2452
|
+
declare const acCmdControlPaddingMedium: AcCommand.acCmdControlPaddingMedium;
|
|
2453
|
+
declare const acCmdControlPaddingWide: AcCommand.acCmdControlPaddingWide;
|
|
2454
|
+
declare const acCmdShowDatePicker: AcCommand.acCmdShowDatePicker;
|
|
2455
|
+
declare const acCmdSetCaption: AcCommand.acCmdSetCaption;
|
|
2456
|
+
declare const acCmdSynchronize: AcCommand.acCmdSynchronize;
|
|
2457
|
+
declare const acCmdDiscardChanges: AcCommand.acCmdDiscardChanges;
|
|
2458
|
+
declare const acCmdDiscardChangesAndRefresh: AcCommand.acCmdDiscardChangesAndRefresh;
|
|
2459
|
+
declare const acCmdSharePointSiteRecycleBin: AcCommand.acCmdSharePointSiteRecycleBin;
|
|
2460
|
+
declare const acCmdToggleCacheListData: AcCommand.acCmdToggleCacheListData;
|
|
2461
|
+
declare const acCmdRemoveFilterFromCurrentColumn: AcCommand.acCmdRemoveFilterFromCurrentColumn;
|
|
2462
|
+
declare const acCmdRemoveAllFilters: AcCommand.acCmdRemoveAllFilters;
|
|
2463
|
+
declare const acCmdRemoveAllSorts: AcCommand.acCmdRemoveAllSorts;
|
|
2464
|
+
declare const acCmdCloseAll: AcCommand.acCmdCloseAll;
|
|
2465
|
+
declare const acCmdFieldTemplates: AcCommand.acCmdFieldTemplates;
|
|
2466
|
+
declare const acCmdApplyAutoFormat1: AcCommand.acCmdApplyAutoFormat1;
|
|
2467
|
+
declare const acCmdApplyAutoFormat2: AcCommand.acCmdApplyAutoFormat2;
|
|
2468
|
+
declare const acCmdApplyAutoFormat3: AcCommand.acCmdApplyAutoFormat3;
|
|
2469
|
+
declare const acCmdApplyAutoFormat4: AcCommand.acCmdApplyAutoFormat4;
|
|
2470
|
+
declare const acCmdApplyAutoFormat5: AcCommand.acCmdApplyAutoFormat5;
|
|
2471
|
+
declare const acCmdApplyAutoFormat6: AcCommand.acCmdApplyAutoFormat6;
|
|
2472
|
+
declare const acCmdApplyAutoFormat7: AcCommand.acCmdApplyAutoFormat7;
|
|
2473
|
+
declare const acCmdApplyAutoFormat8: AcCommand.acCmdApplyAutoFormat8;
|
|
2474
|
+
declare const acCmdApplyAutoFormat9: AcCommand.acCmdApplyAutoFormat9;
|
|
2475
|
+
declare const acCmdApplyAutoFormat10: AcCommand.acCmdApplyAutoFormat10;
|
|
2476
|
+
declare const acCmdApplyAutoFormat11: AcCommand.acCmdApplyAutoFormat11;
|
|
2477
|
+
declare const acCmdApplyAutoFormat12: AcCommand.acCmdApplyAutoFormat12;
|
|
2478
|
+
declare const acCmdApplyAutoFormat13: AcCommand.acCmdApplyAutoFormat13;
|
|
2479
|
+
declare const acCmdApplyAutoFormat14: AcCommand.acCmdApplyAutoFormat14;
|
|
2480
|
+
declare const acCmdApplyAutoFormat15: AcCommand.acCmdApplyAutoFormat15;
|
|
2481
|
+
declare const acCmdApplyAutoFormat16: AcCommand.acCmdApplyAutoFormat16;
|
|
2482
|
+
declare const acCmdApplyAutoFormat17: AcCommand.acCmdApplyAutoFormat17;
|
|
2483
|
+
declare const acCmdApplyAutoFormat18: AcCommand.acCmdApplyAutoFormat18;
|
|
2484
|
+
declare const acCmdApplyAutoFormat19: AcCommand.acCmdApplyAutoFormat19;
|
|
2485
|
+
declare const acCmdApplyAutoFormat20: AcCommand.acCmdApplyAutoFormat20;
|
|
2486
|
+
declare const acCmdApplyAutoFormat21: AcCommand.acCmdApplyAutoFormat21;
|
|
2487
|
+
declare const acCmdApplyAutoFormat22: AcCommand.acCmdApplyAutoFormat22;
|
|
2488
|
+
declare const acCmdApplyAutoFormat23: AcCommand.acCmdApplyAutoFormat23;
|
|
2489
|
+
declare const acCmdApplyAutoFormat24: AcCommand.acCmdApplyAutoFormat24;
|
|
2490
|
+
declare const acCmdApplyAutoFormat25: AcCommand.acCmdApplyAutoFormat25;
|
|
2491
|
+
declare const acCmdManageAttachments: AcCommand.acCmdManageAttachments;
|
|
2492
|
+
declare const acCmdWorkflowTasks: AcCommand.acCmdWorkflowTasks;
|
|
2493
|
+
declare const acCmdStartNewWorkflow: AcCommand.acCmdStartNewWorkflow;
|
|
2494
|
+
declare const acCmdShowMessageBar: AcCommand.acCmdShowMessageBar;
|
|
2495
|
+
declare const acCmdHideMessageBar: AcCommand.acCmdHideMessageBar;
|
|
2496
|
+
declare const acCmdLayoutInsertRowAbove: AcCommand.acCmdLayoutInsertRowAbove;
|
|
2497
|
+
declare const acCmdLayoutInsertRowBelow: AcCommand.acCmdLayoutInsertRowBelow;
|
|
2498
|
+
declare const acCmdLayoutInsertColumnLeft: AcCommand.acCmdLayoutInsertColumnLeft;
|
|
2499
|
+
declare const acCmdLayoutInsertColumnRight: AcCommand.acCmdLayoutInsertColumnRight;
|
|
2500
|
+
declare const acCmdLayoutMergeCells: AcCommand.acCmdLayoutMergeCells;
|
|
2501
|
+
declare const acCmdLayoutSplitColumnCell: AcCommand.acCmdLayoutSplitColumnCell;
|
|
2502
|
+
declare const acCmdLayoutSplitRowCell: AcCommand.acCmdLayoutSplitRowCell;
|
|
2503
|
+
declare const acCmdShowLogicCatalog: AcCommand.acCmdShowLogicCatalog;
|
|
2504
|
+
declare const acCmdSaveAsTemplate: AcCommand.acCmdSaveAsTemplate;
|
|
2505
|
+
declare const acCmdSaveDatabaseAsNewTemplatePart: AcCommand.acCmdSaveDatabaseAsNewTemplatePart;
|
|
2506
|
+
declare const acCmdSaveSelectionAsNewDataType: AcCommand.acCmdSaveSelectionAsNewDataType;
|
|
2507
|
+
declare const acCmdNewObjectNavigationTop: AcCommand.acCmdNewObjectNavigationTop;
|
|
2508
|
+
declare const acCmdNewObjectNavigationLeft: AcCommand.acCmdNewObjectNavigationLeft;
|
|
2509
|
+
declare const acCmdNewObjectNavigationRight: AcCommand.acCmdNewObjectNavigationRight;
|
|
2510
|
+
declare const acCmdNewObjectNavigationTopTop: AcCommand.acCmdNewObjectNavigationTopTop;
|
|
2511
|
+
declare const acCmdNewObjectNavigationTopLeft: AcCommand.acCmdNewObjectNavigationTopLeft;
|
|
2512
|
+
declare const acCmdNewObjectNavigationTopRight: AcCommand.acCmdNewObjectNavigationTopRight;
|
|
2513
|
+
declare const acCmdCompatCheckDatabase: AcCommand.acCmdCompatCheckDatabase;
|
|
2514
|
+
declare const acCmdCompatCheckCurrentObject: AcCommand.acCmdCompatCheckCurrentObject;
|
|
2515
|
+
declare const acCmdDesignObject: AcCommand.acCmdDesignObject;
|
|
2516
|
+
declare const acCmdCalculatedColumn: AcCommand.acCmdCalculatedColumn;
|
|
2517
|
+
declare const acCmdSyncWebApplication: AcCommand.acCmdSyncWebApplication;
|
|
2518
|
+
declare const acCmdConvertLinkedTableToLocal: AcCommand.acCmdConvertLinkedTableToLocal;
|
|
2519
|
+
declare const acCmdNewObjectContinuousFormWeb: AcCommand.acCmdNewObjectContinuousFormWeb;
|
|
2520
|
+
declare const acCmdNewObjectDatasheetFormWeb: AcCommand.acCmdNewObjectDatasheetFormWeb;
|
|
2521
|
+
declare const acCmdNewObjectBlankFormWeb: AcCommand.acCmdNewObjectBlankFormWeb;
|
|
2522
|
+
declare const acCmdNewObjectBlankReportWeb: AcCommand.acCmdNewObjectBlankReportWeb;
|
|
2523
|
+
declare const acCmdNewObjectAutoFormWeb: AcCommand.acCmdNewObjectAutoFormWeb;
|
|
2524
|
+
declare const acCmdNewObjectAutoReportWeb: AcCommand.acCmdNewObjectAutoReportWeb;
|
|
2525
|
+
declare const acCmdNewObjectQueryWeb: AcCommand.acCmdNewObjectQueryWeb;
|
|
2526
|
+
declare const acCmdNewObjectMacroWeb: AcCommand.acCmdNewObjectMacroWeb;
|
|
2527
|
+
declare const acCmdNewObjectNavigationTopWeb: AcCommand.acCmdNewObjectNavigationTopWeb;
|
|
2528
|
+
declare const acCmdNewObjectNavigationLeftWeb: AcCommand.acCmdNewObjectNavigationLeftWeb;
|
|
2529
|
+
declare const acCmdNewObjectNavigationRightWeb: AcCommand.acCmdNewObjectNavigationRightWeb;
|
|
2530
|
+
declare const acCmdNewObjectNavigationTopTopWeb: AcCommand.acCmdNewObjectNavigationTopTopWeb;
|
|
2531
|
+
declare const acCmdNewObjectNavigationTopLeftWeb: AcCommand.acCmdNewObjectNavigationTopLeftWeb;
|
|
2532
|
+
declare const acCmdNewObjectNavigationTopRightWeb: AcCommand.acCmdNewObjectNavigationTopRightWeb;
|
|
2533
|
+
declare const acCmdSelectEntireLayout: AcCommand.acCmdSelectEntireLayout;
|
|
2534
|
+
declare const acCmdPrepareDatabaseForWeb: AcCommand.acCmdPrepareDatabaseForWeb;
|
|
2535
|
+
declare const acCmdManageTableEvents: AcCommand.acCmdManageTableEvents;
|
|
2536
|
+
declare const acCmdAddDataMacroAfterInsert: AcCommand.acCmdAddDataMacroAfterInsert;
|
|
2537
|
+
declare const acCmdAddDataMacroAfterUpdate: AcCommand.acCmdAddDataMacroAfterUpdate;
|
|
2538
|
+
declare const acCmdAddDataMacroAfterDelete: AcCommand.acCmdAddDataMacroAfterDelete;
|
|
2539
|
+
declare const acCmdAddDataMacroBeforeDelete: AcCommand.acCmdAddDataMacroBeforeDelete;
|
|
2540
|
+
declare const acCmdAddDataMacroBeforeChange: AcCommand.acCmdAddDataMacroBeforeChange;
|
|
2541
|
+
declare const acCmdAddNamedDataMacro: AcCommand.acCmdAddNamedDataMacro;
|
|
2542
|
+
declare const acCmdInsertNavigationButton: AcCommand.acCmdInsertNavigationButton;
|
|
2543
|
+
declare const acToolbarYes: AcShowToolbar.acToolbarYes;
|
|
2544
|
+
declare const acToolbarWhereApprop: AcShowToolbar.acToolbarWhereApprop;
|
|
2545
|
+
declare const acToolbarNo: AcShowToolbar.acToolbarNo;
|
|
2546
|
+
declare const acFieldValue: AcFormatConditionType.acFieldValue;
|
|
2547
|
+
declare const acExpression: AcFormatConditionType.acExpression;
|
|
2548
|
+
declare const acFieldHasFocus: AcFormatConditionType.acFieldHasFocus;
|
|
2549
|
+
declare const acDataBar: AcFormatConditionType.acDataBar;
|
|
2550
|
+
declare const acBetween: AcFormatConditionOperator.acBetween;
|
|
2551
|
+
declare const acNotBetween: AcFormatConditionOperator.acNotBetween;
|
|
2552
|
+
declare const acEqual: AcFormatConditionOperator.acEqual;
|
|
2553
|
+
declare const acNotEqual: AcFormatConditionOperator.acNotEqual;
|
|
2554
|
+
declare const acGreaterThan: AcFormatConditionOperator.acGreaterThan;
|
|
2555
|
+
declare const acLessThan: AcFormatConditionOperator.acLessThan;
|
|
2556
|
+
declare const acGreaterThanOrEqual: AcFormatConditionOperator.acGreaterThanOrEqual;
|
|
2557
|
+
declare const acLessThanOrEqual: AcFormatConditionOperator.acLessThanOrEqual;
|
|
2558
|
+
declare const acColorIndexBlack: AcColorIndex.acColorIndexBlack;
|
|
2559
|
+
declare const acColorIndexMaroon: AcColorIndex.acColorIndexMaroon;
|
|
2560
|
+
declare const acColorIndexGreen: AcColorIndex.acColorIndexGreen;
|
|
2561
|
+
declare const acColorIndexOlive: AcColorIndex.acColorIndexOlive;
|
|
2562
|
+
declare const acColorIndexDarkBlue: AcColorIndex.acColorIndexDarkBlue;
|
|
2563
|
+
declare const acColorIndexViolet: AcColorIndex.acColorIndexViolet;
|
|
2564
|
+
declare const acColorIndexTeal: AcColorIndex.acColorIndexTeal;
|
|
2565
|
+
declare const acColorIndexGray: AcColorIndex.acColorIndexGray;
|
|
2566
|
+
declare const acColorIndexSilver: AcColorIndex.acColorIndexSilver;
|
|
2567
|
+
declare const acColorIndexRed: AcColorIndex.acColorIndexRed;
|
|
2568
|
+
declare const acColorIndexBrightGreen: AcColorIndex.acColorIndexBrightGreen;
|
|
2569
|
+
declare const acColorIndexYellow: AcColorIndex.acColorIndexYellow;
|
|
2570
|
+
declare const acColorIndexBlue: AcColorIndex.acColorIndexBlue;
|
|
2571
|
+
declare const acColorIndexFuschia: AcColorIndex.acColorIndexFuschia;
|
|
2572
|
+
declare const acColorIndexAqua: AcColorIndex.acColorIndexAqua;
|
|
2573
|
+
declare const acColorIndexWhite: AcColorIndex.acColorIndexWhite;
|
|
2574
|
+
declare const TypeLib: RefKind.TypeLib;
|
|
2575
|
+
declare const Project: RefKind.Project;
|
|
2576
|
+
declare const Proc: ProcKind.Proc;
|
|
2577
|
+
declare const Let: ProcKind.Let;
|
|
2578
|
+
declare const Set: ProcKind.Set;
|
|
2579
|
+
declare const Get: ProcKind.Get;
|
|
2580
|
+
declare const acDefViewSingle: AcDefView.acDefViewSingle;
|
|
2581
|
+
declare const acDefViewContinuous: AcDefView.acDefViewContinuous;
|
|
2582
|
+
declare const acDefViewDatasheet: AcDefView.acDefViewDatasheet;
|
|
2583
|
+
declare const acDefViewPivotTable: AcDefView.acDefViewPivotTable;
|
|
2584
|
+
declare const acDefViewPivotChart: AcDefView.acDefViewPivotChart;
|
|
2585
|
+
declare const acDefViewSplitForm: AcDefView.acDefViewSplitForm;
|
|
2586
|
+
declare const acCurViewDesign: AcCurrentView.acCurViewDesign;
|
|
2587
|
+
declare const acCurViewFormBrowse: AcCurrentView.acCurViewFormBrowse;
|
|
2588
|
+
declare const acCurViewDatasheet: AcCurrentView.acCurViewDatasheet;
|
|
2589
|
+
declare const acCurViewPivotTable: AcCurrentView.acCurViewPivotTable;
|
|
2590
|
+
declare const acCurViewPivotChart: AcCurrentView.acCurViewPivotChart;
|
|
2591
|
+
declare const acCurViewPreview: AcCurrentView.acCurViewPreview;
|
|
2592
|
+
declare const acCurViewReportBrowse: AcCurrentView.acCurViewReportBrowse;
|
|
2593
|
+
declare const acCurViewLayout: AcCurrentView.acCurViewLayout;
|
|
2594
|
+
declare const acFileFormatAccess2: AcFileFormat.acFileFormatAccess2;
|
|
2595
|
+
declare const acFileFormatAccess95: AcFileFormat.acFileFormatAccess95;
|
|
2596
|
+
declare const acFileFormatAccess97: AcFileFormat.acFileFormatAccess97;
|
|
2597
|
+
declare const acFileFormatAccess2000: AcFileFormat.acFileFormatAccess2000;
|
|
2598
|
+
declare const acFileFormatAccess2002: AcFileFormat.acFileFormatAccess2002;
|
|
2599
|
+
declare const acFileFormatAccess2007: AcFileFormat.acFileFormatAccess2007;
|
|
2600
|
+
declare const acExportTable: AcExportXMLObjectType.acExportTable;
|
|
2601
|
+
declare const acExportQuery: AcExportXMLObjectType.acExportQuery;
|
|
2602
|
+
declare const acExportForm: AcExportXMLObjectType.acExportForm;
|
|
2603
|
+
declare const acExportReport: AcExportXMLObjectType.acExportReport;
|
|
2604
|
+
declare const acExportServerView: AcExportXMLObjectType.acExportServerView;
|
|
2605
|
+
declare const acExportStoredProcedure: AcExportXMLObjectType.acExportStoredProcedure;
|
|
2606
|
+
declare const acExportFunction: AcExportXMLObjectType.acExportFunction;
|
|
2607
|
+
declare const acSchemaNone: AcExportXMLSchemaFormat.acSchemaNone;
|
|
2608
|
+
declare const acSchemaXSD: AcExportXMLSchemaFormat.acSchemaXSD;
|
|
2609
|
+
declare const acUTF8: AcExportXMLEncoding.acUTF8;
|
|
2610
|
+
declare const acUTF16: AcExportXMLEncoding.acUTF16;
|
|
2611
|
+
declare const acPRCMMonochrome: AcPrintColor.acPRCMMonochrome;
|
|
2612
|
+
declare const acPRCMColor: AcPrintColor.acPRCMColor;
|
|
2613
|
+
declare const acPRDPSimplex: AcPrintDuplex.acPRDPSimplex;
|
|
2614
|
+
declare const acPRDPHorizontal: AcPrintDuplex.acPRDPHorizontal;
|
|
2615
|
+
declare const acPRDPVertical: AcPrintDuplex.acPRDPVertical;
|
|
2616
|
+
declare const acPRORPortrait: AcPrintOrientation.acPRORPortrait;
|
|
2617
|
+
declare const acPRORLandscape: AcPrintOrientation.acPRORLandscape;
|
|
2618
|
+
declare const acPRPQDraft: AcPrintObjQuality.acPRPQDraft;
|
|
2619
|
+
declare const acPRPQLow: AcPrintObjQuality.acPRPQLow;
|
|
2620
|
+
declare const acPRPQMedium: AcPrintObjQuality.acPRPQMedium;
|
|
2621
|
+
declare const acPRPQHigh: AcPrintObjQuality.acPRPQHigh;
|
|
2622
|
+
declare const acPRBNUpper: AcPrintPaperBin.acPRBNUpper;
|
|
2623
|
+
declare const acPRBNLower: AcPrintPaperBin.acPRBNLower;
|
|
2624
|
+
declare const acPRBNMiddle: AcPrintPaperBin.acPRBNMiddle;
|
|
2625
|
+
declare const acPRBNManual: AcPrintPaperBin.acPRBNManual;
|
|
2626
|
+
declare const acPRBNEnvelope: AcPrintPaperBin.acPRBNEnvelope;
|
|
2627
|
+
declare const acPRBNEnvManual: AcPrintPaperBin.acPRBNEnvManual;
|
|
2628
|
+
declare const acPRBNAuto: AcPrintPaperBin.acPRBNAuto;
|
|
2629
|
+
declare const acPRBNTractor: AcPrintPaperBin.acPRBNTractor;
|
|
2630
|
+
declare const acPRBNSmallFmt: AcPrintPaperBin.acPRBNSmallFmt;
|
|
2631
|
+
declare const acPRBNLargeFmt: AcPrintPaperBin.acPRBNLargeFmt;
|
|
2632
|
+
declare const acPRBNLargeCapacity: AcPrintPaperBin.acPRBNLargeCapacity;
|
|
2633
|
+
declare const acPRBNCassette: AcPrintPaperBin.acPRBNCassette;
|
|
2634
|
+
declare const acPRBNFormSource: AcPrintPaperBin.acPRBNFormSource;
|
|
2635
|
+
declare const acPRPSLetter: AcPrintPaperSize.acPRPSLetter;
|
|
2636
|
+
declare const acPRPSLetterSmall: AcPrintPaperSize.acPRPSLetterSmall;
|
|
2637
|
+
declare const acPRPSTabloid: AcPrintPaperSize.acPRPSTabloid;
|
|
2638
|
+
declare const acPRPSLedger: AcPrintPaperSize.acPRPSLedger;
|
|
2639
|
+
declare const acPRPSLegal: AcPrintPaperSize.acPRPSLegal;
|
|
2640
|
+
declare const acPRPSStatement: AcPrintPaperSize.acPRPSStatement;
|
|
2641
|
+
declare const acPRPSExecutive: AcPrintPaperSize.acPRPSExecutive;
|
|
2642
|
+
declare const acPRPSA3: AcPrintPaperSize.acPRPSA3;
|
|
2643
|
+
declare const acPRPSA4: AcPrintPaperSize.acPRPSA4;
|
|
2644
|
+
declare const acPRPSA4Small: AcPrintPaperSize.acPRPSA4Small;
|
|
2645
|
+
declare const acPRPSA5: AcPrintPaperSize.acPRPSA5;
|
|
2646
|
+
declare const acPRPSB4: AcPrintPaperSize.acPRPSB4;
|
|
2647
|
+
declare const acPRPSB5: AcPrintPaperSize.acPRPSB5;
|
|
2648
|
+
declare const acPRPSFolio: AcPrintPaperSize.acPRPSFolio;
|
|
2649
|
+
declare const acPRPSQuarto: AcPrintPaperSize.acPRPSQuarto;
|
|
2650
|
+
declare const acPRPS10x14: AcPrintPaperSize.acPRPS10x14;
|
|
2651
|
+
declare const acPRPS11x17: AcPrintPaperSize.acPRPS11x17;
|
|
2652
|
+
declare const acPRPSNote: AcPrintPaperSize.acPRPSNote;
|
|
2653
|
+
declare const acPRPSEnv9: AcPrintPaperSize.acPRPSEnv9;
|
|
2654
|
+
declare const acPRPSEnv10: AcPrintPaperSize.acPRPSEnv10;
|
|
2655
|
+
declare const acPRPSEnv11: AcPrintPaperSize.acPRPSEnv11;
|
|
2656
|
+
declare const acPRPSEnv12: AcPrintPaperSize.acPRPSEnv12;
|
|
2657
|
+
declare const acPRPSEnv14: AcPrintPaperSize.acPRPSEnv14;
|
|
2658
|
+
declare const acPRPSCSheet: AcPrintPaperSize.acPRPSCSheet;
|
|
2659
|
+
declare const acPRPSDSheet: AcPrintPaperSize.acPRPSDSheet;
|
|
2660
|
+
declare const acPRPSESheet: AcPrintPaperSize.acPRPSESheet;
|
|
2661
|
+
declare const acPRPSEnvDL: AcPrintPaperSize.acPRPSEnvDL;
|
|
2662
|
+
declare const acPRPSEnvC3: AcPrintPaperSize.acPRPSEnvC3;
|
|
2663
|
+
declare const acPRPSEnvC4: AcPrintPaperSize.acPRPSEnvC4;
|
|
2664
|
+
declare const acPRPSEnvC5: AcPrintPaperSize.acPRPSEnvC5;
|
|
2665
|
+
declare const acPRPSEnvC6: AcPrintPaperSize.acPRPSEnvC6;
|
|
2666
|
+
declare const acPRPSEnvC65: AcPrintPaperSize.acPRPSEnvC65;
|
|
2667
|
+
declare const acPRPSEnvB4: AcPrintPaperSize.acPRPSEnvB4;
|
|
2668
|
+
declare const acPRPSEnvB5: AcPrintPaperSize.acPRPSEnvB5;
|
|
2669
|
+
declare const acPRPSEnvB6: AcPrintPaperSize.acPRPSEnvB6;
|
|
2670
|
+
declare const acPRPSEnvItaly: AcPrintPaperSize.acPRPSEnvItaly;
|
|
2671
|
+
declare const acPRPSEnvMonarch: AcPrintPaperSize.acPRPSEnvMonarch;
|
|
2672
|
+
declare const acPRPSEnvPersonal: AcPrintPaperSize.acPRPSEnvPersonal;
|
|
2673
|
+
declare const acPRPSFanfoldUS: AcPrintPaperSize.acPRPSFanfoldUS;
|
|
2674
|
+
declare const acPRPSFanfoldStdGerman: AcPrintPaperSize.acPRPSFanfoldStdGerman;
|
|
2675
|
+
declare const acPRPSFanfoldLglGerman: AcPrintPaperSize.acPRPSFanfoldLglGerman;
|
|
2676
|
+
declare const acPRPSUser: AcPrintPaperSize.acPRPSUser;
|
|
2677
|
+
declare const acPRHorizontalColumnLayout: AcPrintItemLayout.acPRHorizontalColumnLayout;
|
|
2678
|
+
declare const acPRVerticalColumnLayout: AcPrintItemLayout.acPRVerticalColumnLayout;
|
|
2679
|
+
declare const acStructureOnly: AcImportXMLOption.acStructureOnly;
|
|
2680
|
+
declare const acStructureAndData: AcImportXMLOption.acStructureAndData;
|
|
2681
|
+
declare const acAppendData: AcImportXMLOption.acAppendData;
|
|
2682
|
+
declare const acEmbedSchema: AcExportXMLOtherFlags.acEmbedSchema;
|
|
2683
|
+
declare const acExcludePrimaryKeyAndIndexes: AcExportXMLOtherFlags.acExcludePrimaryKeyAndIndexes;
|
|
2684
|
+
declare const acRunFromServer: AcExportXMLOtherFlags.acRunFromServer;
|
|
2685
|
+
declare const acLiveReportSource: AcExportXMLOtherFlags.acLiveReportSource;
|
|
2686
|
+
declare const acPersistReportML: AcExportXMLOtherFlags.acPersistReportML;
|
|
2687
|
+
declare const acExportAllTableAndFieldProperties: AcExportXMLOtherFlags.acExportAllTableAndFieldProperties;
|
|
2688
|
+
declare const acEnableScript: AcTransformXMLScriptOption.acEnableScript;
|
|
2689
|
+
declare const acPromptScript: AcTransformXMLScriptOption.acPromptScript;
|
|
2690
|
+
declare const acDisableScript: AcTransformXMLScriptOption.acDisableScript;
|
|
2691
|
+
declare const acFormOnly: AcSplitFormPrinting.acFormOnly;
|
|
2692
|
+
declare const acGridOnly: AcSplitFormPrinting.acGridOnly;
|
|
2693
|
+
declare const acDatasheetOnTop: AcSplitFormOrientation.acDatasheetOnTop;
|
|
2694
|
+
declare const acDatasheetOnBottom: AcSplitFormOrientation.acDatasheetOnBottom;
|
|
2695
|
+
declare const acDatasheetOnLeft: AcSplitFormOrientation.acDatasheetOnLeft;
|
|
2696
|
+
declare const acDatasheetOnRight: AcSplitFormOrientation.acDatasheetOnRight;
|
|
2697
|
+
declare const acDatasheetAllowEdits: AcSplitFormDatasheet.acDatasheetAllowEdits;
|
|
2698
|
+
declare const acDatasheetReadOnly: AcSplitFormDatasheet.acDatasheetReadOnly;
|
|
2699
|
+
declare const acLayoutNone: AcLayoutType.acLayoutNone;
|
|
2700
|
+
declare const acLayoutTabular: AcLayoutType.acLayoutTabular;
|
|
2701
|
+
declare const acLayoutStacked: AcLayoutType.acLayoutStacked;
|
|
2702
|
+
declare const acTextFormatPlain: AcTextFormat.acTextFormatPlain;
|
|
2703
|
+
declare const acTextFormatHTMLRichText: AcTextFormat.acTextFormatHTMLRichText;
|
|
2704
|
+
declare const acSeparatorCharactersSystemSeparator: AcSeparatorCharacters.acSeparatorCharactersSystemSeparator;
|
|
2705
|
+
declare const acSeparatorCharactersNewLine: AcSeparatorCharacters.acSeparatorCharactersNewLine;
|
|
2706
|
+
declare const acSeparatorCharactersSemiColon: AcSeparatorCharacters.acSeparatorCharactersSemiColon;
|
|
2707
|
+
declare const acSeparatorCharactersComma: AcSeparatorCharacters.acSeparatorCharactersComma;
|
|
2708
|
+
declare const acHorizontalAnchorLeft: AcHorizontalAnchor.acHorizontalAnchorLeft;
|
|
2709
|
+
declare const acHorizontalAnchorRight: AcHorizontalAnchor.acHorizontalAnchorRight;
|
|
2710
|
+
declare const acHorizontalAnchorBoth: AcHorizontalAnchor.acHorizontalAnchorBoth;
|
|
2711
|
+
declare const acVerticalAnchorTop: AcVerticalAnchor.acVerticalAnchorTop;
|
|
2712
|
+
declare const acVerticalAnchorBottom: AcVerticalAnchor.acVerticalAnchorBottom;
|
|
2713
|
+
declare const acVerticalAnchorBoth: AcVerticalAnchor.acVerticalAnchorBoth;
|
|
2714
|
+
declare const acDisplayAsImageIcon: AcDisplayAs.acDisplayAsImageIcon;
|
|
2715
|
+
declare const acDisplayAsIcon: AcDisplayAs.acDisplayAsIcon;
|
|
2716
|
+
declare const acDisplayAsPaperclip: AcDisplayAs.acDisplayAsPaperclip;
|
|
2717
|
+
declare const acExportQualityPrint: AcExportQuality.acExportQualityPrint;
|
|
2718
|
+
declare const acExportQualityScreen: AcExportQuality.acExportQualityScreen;
|
|
2719
|
+
declare const acDefViewPreview: AcDefReportView.acDefViewPreview;
|
|
2720
|
+
declare const acDefViewReportBrowse: AcDefReportView.acDefViewReportBrowse;
|
|
2721
|
+
declare const acImportSharePointList: AcSharePointListTransferType.acImportSharePointList;
|
|
2722
|
+
declare const acLinkSharePointList: AcSharePointListTransferType.acLinkSharePointList;
|
|
2723
|
+
declare const acPropertyEnabled: AcProperty.acPropertyEnabled;
|
|
2724
|
+
declare const acPropertyVisible: AcProperty.acPropertyVisible;
|
|
2725
|
+
declare const acPropertyLocked: AcProperty.acPropertyLocked;
|
|
2726
|
+
declare const acPropertyLeft: AcProperty.acPropertyLeft;
|
|
2727
|
+
declare const acPropertyTop: AcProperty.acPropertyTop;
|
|
2728
|
+
declare const acPropertyWidth: AcProperty.acPropertyWidth;
|
|
2729
|
+
declare const acPropertyHeight: AcProperty.acPropertyHeight;
|
|
2730
|
+
declare const acPropertyForeColor: AcProperty.acPropertyForeColor;
|
|
2731
|
+
declare const acPropertyBackColor: AcProperty.acPropertyBackColor;
|
|
2732
|
+
declare const acPropertyCaption: AcProperty.acPropertyCaption;
|
|
2733
|
+
declare const acPropertyValue: AcProperty.acPropertyValue;
|
|
2734
|
+
declare const acNewDatabaseFormatUserDefault: AcNewDatabaseFormat.acNewDatabaseFormatUserDefault;
|
|
2735
|
+
declare const acNewDatabaseFormatAccess2000: AcNewDatabaseFormat.acNewDatabaseFormatAccess2000;
|
|
2736
|
+
declare const acNewDatabaseFormatAccess2002: AcNewDatabaseFormat.acNewDatabaseFormatAccess2002;
|
|
2737
|
+
declare const acNewDatabaseFormatAccess2007: AcNewDatabaseFormat.acNewDatabaseFormatAccess2007;
|
|
2738
|
+
declare const acCursorOnHoverDefault: AcCursorOnHover.acCursorOnHoverDefault;
|
|
2739
|
+
declare const acCursorOnHoverHyperlinkHand: AcCursorOnHover.acCursorOnHoverHyperlinkHand;
|
|
2740
|
+
declare const acDisplayAsHyperlinkIfHyperlink: AcDisplayAsHyperlink.acDisplayAsHyperlinkIfHyperlink;
|
|
2741
|
+
declare const acDisplayAsHyperlinkAlways: AcDisplayAsHyperlink.acDisplayAsHyperlinkAlways;
|
|
2742
|
+
declare const acDisplayAsHyperlinkOnScreenOnly: AcDisplayAsHyperlink.acDisplayAsHyperlinkOnScreenOnly;
|
|
2743
|
+
declare const acNoPictureCaption: AcPictureCaptionArrangement.acNoPictureCaption;
|
|
2744
|
+
declare const acGeneral: AcPictureCaptionArrangement.acGeneral;
|
|
2745
|
+
declare const acTop: AcPictureCaptionArrangement.acTop;
|
|
2746
|
+
declare const acBottom: AcPictureCaptionArrangement.acBottom;
|
|
2747
|
+
declare const acLeft: AcPictureCaptionArrangement.acLeft;
|
|
2748
|
+
declare const acRight: AcPictureCaptionArrangement.acRight;
|
|
2749
|
+
declare const acUnintialized: AcWebBrowserState.acUnintialized;
|
|
2750
|
+
declare const acLoading: AcWebBrowserState.acLoading;
|
|
2751
|
+
declare const acLoaded: AcWebBrowserState.acLoaded;
|
|
2752
|
+
declare const acInteractive: AcWebBrowserState.acInteractive;
|
|
2753
|
+
declare const acComplete: AcWebBrowserState.acComplete;
|
|
2754
|
+
declare const acScrollAuto: AcWebBrowserScrollBars.acScrollAuto;
|
|
2755
|
+
declare const acScrollYes: AcWebBrowserScrollBars.acScrollYes;
|
|
2756
|
+
declare const acScrollNo: AcWebBrowserScrollBars.acScrollNo;
|
|
2757
|
+
declare const acAutomatic: AcFormatBarLimits.acAutomatic;
|
|
2758
|
+
declare const acNumber: AcFormatBarLimits.acNumber;
|
|
2759
|
+
declare const acPercent: AcFormatBarLimits.acPercent;
|
|
2760
|
+
declare const acBrowseToForm: AcBrowseToObjectType.acBrowseToForm;
|
|
2761
|
+
declare const acBrowseToReport: AcBrowseToObjectType.acBrowseToReport;
|
|
2762
|
+
declare const acWebUserID: AcWebUserDisplay.acWebUserID;
|
|
2763
|
+
declare const acWebUserName: AcWebUserDisplay.acWebUserName;
|
|
2764
|
+
declare const acWebUserLoginName: AcWebUserDisplay.acWebUserLoginName;
|
|
2765
|
+
declare const acWebUserEmail: AcWebUserDisplay.acWebUserEmail;
|
|
2766
|
+
declare const acWebUserGroupID: AcWebUserGroupsDisplay.acWebUserGroupID;
|
|
2767
|
+
declare const acWebUserGroupName: AcWebUserGroupsDisplay.acWebUserGroupName;
|
|
2768
|
+
declare const acResourceTheme: AcResourceType.acResourceTheme;
|
|
2769
|
+
declare const acResourceImage: AcResourceType.acResourceImage;
|
|
2770
|
+
declare const acHorizontal: AcNavigationSpan.acHorizontal;
|
|
2771
|
+
declare const acVertical: AcNavigationSpan.acVertical;
|
|
2772
|
+
declare const acChartColumnClustered: AcChartType.acChartColumnClustered;
|
|
2773
|
+
declare const acChartColumnStacked: AcChartType.acChartColumnStacked;
|
|
2774
|
+
declare const acChartColumnStacked100: AcChartType.acChartColumnStacked100;
|
|
2775
|
+
declare const acChartBarClustered: AcChartType.acChartBarClustered;
|
|
2776
|
+
declare const acChartBarStacked: AcChartType.acChartBarStacked;
|
|
2777
|
+
declare const acChartBarStacked100: AcChartType.acChartBarStacked100;
|
|
2778
|
+
declare const acChartLine: AcChartType.acChartLine;
|
|
2779
|
+
declare const acChartLineStacked: AcChartType.acChartLineStacked;
|
|
2780
|
+
declare const acChartLineStacked100: AcChartType.acChartLineStacked100;
|
|
2781
|
+
declare const acChartPie: AcChartType.acChartPie;
|
|
2782
|
+
declare const acChartCombo: AcChartType.acChartCombo;
|
|
2783
|
+
declare const acChartArea: AcChartType.acChartArea;
|
|
2784
|
+
declare const acChartAreaStacked: AcChartType.acChartAreaStacked;
|
|
2785
|
+
declare const acChartAreaStacked100: AcChartType.acChartAreaStacked100;
|
|
2786
|
+
declare const acChartRadar: AcChartType.acChartRadar;
|
|
2787
|
+
declare const acChartRadarFilled: AcChartType.acChartRadarFilled;
|
|
2788
|
+
declare const acChartBoxWhisker: AcChartType.acChartBoxWhisker;
|
|
2789
|
+
declare const acChartBubble: AcChartType.acChartBubble;
|
|
2790
|
+
declare const acChartDoughnut: AcChartType.acChartDoughnut;
|
|
2791
|
+
declare const acChartFunnel: AcChartType.acChartFunnel;
|
|
2792
|
+
declare const acChartScatter: AcChartType.acChartScatter;
|
|
2793
|
+
declare const acChartWaterfall: AcChartType.acChartWaterfall;
|
|
2794
|
+
declare const acChartWordCloud: AcChartType.acChartWordCloud;
|
|
2795
|
+
declare const acChartArc: AcChartType.acChartArc;
|
|
2796
|
+
declare const acChartPareto: AcChartType.acChartPareto;
|
|
2797
|
+
declare const acLegendPositionLeft: AcLegendPosition.acLegendPositionLeft;
|
|
2798
|
+
declare const acLegendPositionTop: AcLegendPosition.acLegendPositionTop;
|
|
2799
|
+
declare const acLegendPositionRight: AcLegendPosition.acLegendPositionRight;
|
|
2800
|
+
declare const acLegendPositionBottom: AcLegendPosition.acLegendPositionBottom;
|
|
2801
|
+
declare const acAxisUnitsNone: AcAxisUnits.acAxisUnitsNone;
|
|
2802
|
+
declare const acAxisUnitsPercentage: AcAxisUnits.acAxisUnitsPercentage;
|
|
2803
|
+
declare const acAxisUnitsHundreds: AcAxisUnits.acAxisUnitsHundreds;
|
|
2804
|
+
declare const acAxisUnitsThousands: AcAxisUnits.acAxisUnitsThousands;
|
|
2805
|
+
declare const acAxisUnitsTenThousands: AcAxisUnits.acAxisUnitsTenThousands;
|
|
2806
|
+
declare const acAxisUnitsHundredThousands: AcAxisUnits.acAxisUnitsHundredThousands;
|
|
2807
|
+
declare const acAxisUnitsMillions: AcAxisUnits.acAxisUnitsMillions;
|
|
2808
|
+
declare const acAxisUnitsTenMillions: AcAxisUnits.acAxisUnitsTenMillions;
|
|
2809
|
+
declare const acAxisUnitsHundredMillions: AcAxisUnits.acAxisUnitsHundredMillions;
|
|
2810
|
+
declare const acAxisUnitsBillions: AcAxisUnits.acAxisUnitsBillions;
|
|
2811
|
+
declare const acAxisUnitsTenBillions: AcAxisUnits.acAxisUnitsTenBillions;
|
|
2812
|
+
declare const acAxisUnitsHundredBillions: AcAxisUnits.acAxisUnitsHundredBillions;
|
|
2813
|
+
declare const acAxisUnitsTrillions: AcAxisUnits.acAxisUnitsTrillions;
|
|
2814
|
+
declare const acAxisRangeAuto: AcAxisRange.acAxisRangeAuto;
|
|
2815
|
+
declare const acAxisRangeFixed: AcAxisRange.acAxisRangeFixed;
|
|
2816
|
+
declare const acPrimaryAxis: AcValueAxis.acPrimaryAxis;
|
|
2817
|
+
declare const acSecondaryAxis: AcValueAxis.acSecondaryAxis;
|
|
2818
|
+
declare const acTrendlineNone: AcTrendlineOptions.acTrendlineNone;
|
|
2819
|
+
declare const acTrendlineLinear: AcTrendlineOptions.acTrendlineLinear;
|
|
2820
|
+
declare const acTrendlineExponential: AcTrendlineOptions.acTrendlineExponential;
|
|
2821
|
+
declare const acTrendlineLogarithmic: AcTrendlineOptions.acTrendlineLogarithmic;
|
|
2822
|
+
declare const acTrendlinePolynomial: AcTrendlineOptions.acTrendlinePolynomial;
|
|
2823
|
+
declare const acTrendlinePower: AcTrendlineOptions.acTrendlinePower;
|
|
2824
|
+
declare const acTrendlineMovingAverage: AcTrendlineOptions.acTrendlineMovingAverage;
|
|
2825
|
+
declare const acDashTypeSolid: AcDashType.acDashTypeSolid;
|
|
2826
|
+
declare const acDashTypeDash: AcDashType.acDashTypeDash;
|
|
2827
|
+
declare const acDashTypeDot: AcDashType.acDashTypeDot;
|
|
2828
|
+
declare const acDashTypeDashDot: AcDashType.acDashTypeDashDot;
|
|
2829
|
+
declare const acDashTypeDashDotDot: AcDashType.acDashTypeDashDotDot;
|
|
2830
|
+
declare const acGridlineTypeNone: AcGridlineType.acGridlineTypeNone;
|
|
2831
|
+
declare const acGridlineTypeMajor: AcGridlineType.acGridlineTypeMajor;
|
|
2832
|
+
declare const acGridlineTypeMinor: AcGridlineType.acGridlineTypeMinor;
|
|
2833
|
+
declare const acGridlineTypeMajorMinor: AcGridlineType.acGridlineTypeMajorMinor;
|
|
2834
|
+
declare const acBestFit: AcDataLabelPosition.acBestFit;
|
|
2835
|
+
declare const acInsideCenter: AcDataLabelPosition.acInsideCenter;
|
|
2836
|
+
declare const acInsideEnd: AcDataLabelPosition.acInsideEnd;
|
|
2837
|
+
declare const acOutsideCircle: AcDataLabelPosition.acOutsideCircle;
|
|
2838
|
+
declare const acOutsideEnd: AcDataLabelPosition.acOutsideEnd;
|
|
2839
|
+
declare const acWordCloudRectangle: AcWordCloudShape.acWordCloudRectangle;
|
|
2840
|
+
declare const acWordCloudOval: AcWordCloudShape.acWordCloudOval;
|
|
2841
|
+
declare const acWordCloudHeart: AcWordCloudShape.acWordCloudHeart;
|
|
2842
|
+
declare const acWordCloudHorizontalVertical: AcWordCloudWordOrientation.acWordCloudHorizontalVertical;
|
|
2843
|
+
declare const acWordCloudHorizontal: AcWordCloudWordOrientation.acWordCloudHorizontal;
|
|
2844
|
+
declare const acWordCloudVertical: AcWordCloudWordOrientation.acWordCloudVertical;
|
|
2845
|
+
declare const acDecimalPlaces0: AcPercentageDataLabelDecimalPlaces.acDecimalPlaces0;
|
|
2846
|
+
declare const acDecimalPlaces1: AcPercentageDataLabelDecimalPlaces.acDecimalPlaces1;
|
|
2847
|
+
declare const acDecimalPlaces2: AcPercentageDataLabelDecimalPlaces.acDecimalPlaces2;
|
|
2848
|
+
declare const acDecimalPlaces3: AcPercentageDataLabelDecimalPlaces.acDecimalPlaces3;
|
|
2849
|
+
declare const acDecimalPlaces4: AcPercentageDataLabelDecimalPlaces.acDecimalPlaces4;
|
|
2850
|
+
declare const acDecimalPlaces5: AcPercentageDataLabelDecimalPlaces.acDecimalPlaces5;
|
|
2851
|
+
declare const acDecimalPlaces6: AcPercentageDataLabelDecimalPlaces.acDecimalPlaces6;
|
|
2852
|
+
declare const acDecimalPlaces7: AcPercentageDataLabelDecimalPlaces.acDecimalPlaces7;
|
|
2853
|
+
declare const acDataLabelDisplayNone: AcDataLabelDisplayFormat.acDataLabelDisplayNone;
|
|
2854
|
+
declare const acDataLabelDisplayNumber: AcDataLabelDisplayFormat.acDataLabelDisplayNumber;
|
|
2855
|
+
declare const acDataLabelDisplayPercentage: AcDataLabelDisplayFormat.acDataLabelDisplayPercentage;
|
|
2856
|
+
declare const acSortOrderTypeNone: AcSortOrderType.acSortOrderTypeNone;
|
|
2857
|
+
declare const acSortOrderTypeAscending: AcSortOrderType.acSortOrderTypeAscending;
|
|
2858
|
+
declare const acSortOrderTypeDescending: AcSortOrderType.acSortOrderTypeDescending;
|
|
2859
|
+
declare const acPlotAsZero: AcMissingDataPolicy.acPlotAsZero;
|
|
2860
|
+
declare const acDoNotPlot: AcMissingDataPolicy.acDoNotPlot;
|
|
2861
|
+
declare const acPlotAsInterpolated: AcMissingDataPolicy.acPlotAsInterpolated;
|
|
2862
|
+
declare const acMarkerNone: AcMarkerType.acMarkerNone;
|
|
2863
|
+
declare const acMarkerSquare: AcMarkerType.acMarkerSquare;
|
|
2864
|
+
declare const acMarkerDiamond: AcMarkerType.acMarkerDiamond;
|
|
2865
|
+
declare const acMarkerTriangle: AcMarkerType.acMarkerTriangle;
|
|
2866
|
+
declare const acMarkerX: AcMarkerType.acMarkerX;
|
|
2867
|
+
declare const acMarkerAsterisk: AcMarkerType.acMarkerAsterisk;
|
|
2868
|
+
declare const acMarkerShortDash: AcMarkerType.acMarkerShortDash;
|
|
2869
|
+
declare const acMarkerLongDash: AcMarkerType.acMarkerLongDash;
|
|
2870
|
+
declare const acMarkerCircle: AcMarkerType.acMarkerCircle;
|
|
2871
|
+
declare const acMarkerPlus: AcMarkerType.acMarkerPlus;
|
|
2872
|
+
declare const acDateGroupNone: AcDateGroupType.acDateGroupNone;
|
|
2873
|
+
declare const acDateGroupYear: AcDateGroupType.acDateGroupYear;
|
|
2874
|
+
declare const acDateGroupQuarter: AcDateGroupType.acDateGroupQuarter;
|
|
2875
|
+
declare const acDateGroupMonth: AcDateGroupType.acDateGroupMonth;
|
|
2876
|
+
declare const acDateGroupDay: AcDateGroupType.acDateGroupDay;
|
|
2877
|
+
declare const acAggregateNone: AcAggregateType.acAggregateNone;
|
|
2878
|
+
declare const acAggregateSum: AcAggregateType.acAggregateSum;
|
|
2879
|
+
declare const acAggregateAverage: AcAggregateType.acAggregateAverage;
|
|
2880
|
+
declare const acAggregateMinimum: AcAggregateType.acAggregateMinimum;
|
|
2881
|
+
declare const acAggregateMaximum: AcAggregateType.acAggregateMaximum;
|
|
2882
|
+
declare const acAggregateCountDistinct: AcAggregateType.acAggregateCountDistinct;
|
|
2883
|
+
declare const acAggregateCount: AcAggregateType.acAggregateCount;
|