uudev 1.1.8 → 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 +5 -3
package/dtstype/acc.d.ts
ADDED
|
@@ -0,0 +1,5104 @@
|
|
|
1
|
+
/// <reference path="base.d.ts" />
|
|
2
|
+
/// <reference path="mso.d.ts" />
|
|
3
|
+
/// <reference path="adodb.d.ts" />
|
|
4
|
+
/// <reference path="dao.d.ts" />
|
|
5
|
+
/// <reference path="enum/acc_enum.d.ts" />
|
|
6
|
+
|
|
7
|
+
interface DoCmd{
|
|
8
|
+
AddMenu(MenuName: any, MenuMacroName: any, StatusBarText?: any): void;
|
|
9
|
+
ApplyFilterOld0(FilterName?: any, WhereCondition?: any): void;
|
|
10
|
+
Beep(): void;
|
|
11
|
+
CancelEvent(): void;
|
|
12
|
+
Close(ObjectType?: AcObjectType, ObjectName?: any, Save?: AcCloseSave): void;
|
|
13
|
+
CopyObject(DestinationDatabase?: any, NewName?: any, SourceObjectType?: AcObjectType, SourceObjectName?: any): void;
|
|
14
|
+
DoMenuItem(MenuBar: any, MenuName: any, Command: any, Subcommand?: any, Version?: any): void;
|
|
15
|
+
Echo(EchoOn: any, StatusBarText?: any): void;
|
|
16
|
+
FindNext(): void;
|
|
17
|
+
FindRecord(FindWhat: any, Match?: AcFindMatch, MatchCase?: any, Search?: AcSearchDirection, SearchAsFormatted?: any, OnlyCurrentField?: AcFindField, FindFirst?: any): void;
|
|
18
|
+
GoToControl(ControlName: any): void;
|
|
19
|
+
GoToPage(PageNumber: any, Right?: any, Down?: any): void;
|
|
20
|
+
GoToRecord(ObjectType?: AcDataObjectType, ObjectName?: any, Record?: AcRecord, Offset?: any): void;
|
|
21
|
+
Hourglass(HourglassOn: any): void;
|
|
22
|
+
Maximize(): void;
|
|
23
|
+
Minimize(): void;
|
|
24
|
+
MoveSize(Right?: any, Down?: any, Width?: any, Height?: any): void;
|
|
25
|
+
OpenForm(FormName: any, View?: AcFormView, FilterName?: any, WhereCondition?: any, DataMode?: AcFormOpenDataMode, WindowMode?: AcWindowMode, OpenArgs?: any): void;
|
|
26
|
+
OpenQuery(QueryName: any, View?: AcView, DataMode?: AcOpenDataMode): void;
|
|
27
|
+
OpenTable(TableName: any, View?: AcView, DataMode?: AcOpenDataMode): void;
|
|
28
|
+
PrintOut(PrintRange?: AcPrintRange, PageFrom?: any, PageTo?: any, PrintQuality?: AcPrintQuality, Copies?: any, CollateCopies?: any): void;
|
|
29
|
+
Quit(Options?: AcQuitOption): void;
|
|
30
|
+
Requery(ControlName?: any): void;
|
|
31
|
+
RepaintObject(ObjectType?: AcObjectType, ObjectName?: any): void;
|
|
32
|
+
Rename(NewName: any, ObjectType?: AcObjectType, OldName?: any): void;
|
|
33
|
+
Restore(): void;
|
|
34
|
+
RunMacro(MacroName: any, RepeatCount?: any, RepeatExpression?: any): void;
|
|
35
|
+
RunSQL(SQLStatement: any, UseTransaction?: any): void;
|
|
36
|
+
SelectObject(ObjectType: AcObjectType, ObjectName?: any, InDatabaseWindow?: any): void;
|
|
37
|
+
SetWarnings(WarningsOn: any): void;
|
|
38
|
+
ShowAllRecords(): void;
|
|
39
|
+
OpenReportOld0(ReportName: any, View?: AcView, FilterName?: any, WhereCondition?: any): void;
|
|
40
|
+
TransferDatabase(TransferType?: AcDataTransferType, DatabaseType?: any, DatabaseName?: any, ObjectType?: AcObjectType, Source?: any, Destination?: any, StructureOnly?: any, StoreLogin?: any): void;
|
|
41
|
+
TransferSpreadsheet(TransferType?: AcDataTransferType, SpreadsheetType?: AcSpreadSheetType, TableName?: any, FileName?: any, HasFieldNames?: any, Range?: any, UseOA?: any): void;
|
|
42
|
+
TransferText(TransferType?: AcTextTransferType, SpecificationName?: any, TableName?: any, FileName?: any, HasFieldNames?: any, HTMLTableName?: any, CodePage?: any): void;
|
|
43
|
+
OutputToOld0(ObjectType: AcOutputObjectType, ObjectName?: any, OutputFormat?: any, OutputFile?: any, AutoStart?: any, TemplateFile?: any): void;
|
|
44
|
+
DeleteObject(ObjectType?: AcObjectType, ObjectName?: any): void;
|
|
45
|
+
OpenModule(ModuleName?: any, ProcedureName?: any): void;
|
|
46
|
+
SendObject(ObjectType?: AcSendObjectType, ObjectName?: any, OutputFormat?: any, To?: any, Cc?: any, Bcc?: any, Subject?: any, MessageText?: any, EditMessage?: any, TemplateFile?: any): void;
|
|
47
|
+
ShowToolbar(ToolbarName: any, Show?: AcShowToolbar): void;
|
|
48
|
+
Save(ObjectType?: AcObjectType, ObjectName?: any): void;
|
|
49
|
+
SetMenuItem(MenuIndex: any, CommandIndex?: any, SubcommandIndex?: any, Flag?: any): void;
|
|
50
|
+
RunCommand(Command: AcCommand): void;
|
|
51
|
+
OpenDataAccessPage(DataAccessPageName: any, View?: AcDataAccessPageView): void;
|
|
52
|
+
OpenView(ViewName: any, View?: AcView, DataMode?: AcOpenDataMode): void;
|
|
53
|
+
OpenDiagram(DiagramName: any): void;
|
|
54
|
+
OpenStoredProcedure(ProcedureName: any, View?: AcView, DataMode?: AcOpenDataMode): void;
|
|
55
|
+
OpenReport(ReportName: any, View?: AcView, FilterName?: any, WhereCondition?: any, WindowMode?: AcWindowMode, OpenArgs?: any): void;
|
|
56
|
+
OutputToOld1(ObjectType: AcOutputObjectType, ObjectName?: any, OutputFormat?: any, OutputFile?: any, AutoStart?: any, TemplateFile?: any, Encoding?: any): void;
|
|
57
|
+
TransferSQLDatabase(Server: any, Database: any, UseTrustedConnection?: any, Login?: any, Password?: any, TransferCopyData?: any): void;
|
|
58
|
+
CopyDatabaseFile(DatabaseFileName: any, OverwriteExistingFile?: any, DisconnectAllUsers?: any): void;
|
|
59
|
+
OpenFunction(FunctionName: any, View?: AcView, DataMode?: AcOpenDataMode): void;
|
|
60
|
+
ApplyFilter(FilterName?: any, WhereCondition?: any, ControlName?: any): void;
|
|
61
|
+
OutputTo(ObjectType: AcOutputObjectType, ObjectName?: any, OutputFormat?: any, OutputFile?: any, AutoStart?: any, TemplateFile?: any, Encoding?: any, OutputQuality?: AcExportQuality): void;
|
|
62
|
+
TransferSharePointList(TransferType: AcSharePointListTransferType, SiteAddress: any, ListID: any, ViewID?: any, TableName?: any, GetLookupDisplayValues?: any): void;
|
|
63
|
+
CloseDatabase(): void;
|
|
64
|
+
NavigateTo(Category?: any, Group?: any): void;
|
|
65
|
+
SearchForRecord(ObjectType?: AcDataObjectType, ObjectName?: any, Record?: AcRecord, WhereCondition?: any): void;
|
|
66
|
+
SetProperty(ControlName?: any, Property?: AcProperty, Value?: any): void;
|
|
67
|
+
SingleStep(): void;
|
|
68
|
+
ClearMacroError(): void;
|
|
69
|
+
SetDisplayedCategories(Show: any, Category?: any): void;
|
|
70
|
+
LockNavigationPane(Lock: any): void;
|
|
71
|
+
RunSavedImportExport(SavedImportExportName: any): void;
|
|
72
|
+
BrowseTo(ObjectType: AcBrowseToObjectType, ObjectName: any, PathtoSubformControl?: any, WhereCondition?: any, Page?: any, DataMode?: AcFormOpenDataMode): void;
|
|
73
|
+
SetParameter(Name: any, Expression: any): void;
|
|
74
|
+
RunDataMacro(MacroName: any): void;
|
|
75
|
+
SetOrderBy(OrderBy: any, ControlName?: any): void;
|
|
76
|
+
SetFilter(FilterName?: any, WhereCondition?: any, ControlName?: any): void;
|
|
77
|
+
RefreshRecord(): void;
|
|
78
|
+
}
|
|
79
|
+
interface AccessProperty{
|
|
80
|
+
readonly Application: Application;
|
|
81
|
+
readonly Parent: object | any;
|
|
82
|
+
readonly Category: number;
|
|
83
|
+
IsMemberSafe(dispid: number): boolean;
|
|
84
|
+
}
|
|
85
|
+
interface Properties{
|
|
86
|
+
readonly Application: Application;
|
|
87
|
+
readonly Parent: object | any;
|
|
88
|
+
Item(Index: any): object | any;
|
|
89
|
+
readonly Count: number;
|
|
90
|
+
IsMemberSafe(dispid: number): boolean;
|
|
91
|
+
}
|
|
92
|
+
interface FormatCondition{
|
|
93
|
+
ForeColor: number;
|
|
94
|
+
BackColor: number;
|
|
95
|
+
FontBold: boolean;
|
|
96
|
+
FontItalic: boolean;
|
|
97
|
+
FontUnderline: boolean;
|
|
98
|
+
Enabled: boolean;
|
|
99
|
+
readonly Type: AcFormatConditionType;
|
|
100
|
+
readonly Operator: AcFormatConditionOperator;
|
|
101
|
+
readonly Expression1: string;
|
|
102
|
+
readonly Expression2: string;
|
|
103
|
+
Modify(Type: AcFormatConditionType, Operator?: AcFormatConditionOperator, Expression1?: any, Expression2?: any): void;
|
|
104
|
+
Delete(): void;
|
|
105
|
+
IsMemberSafe(dispid: number): boolean;
|
|
106
|
+
ShortestBarLimit: AcFormatBarLimits;
|
|
107
|
+
ShortestBarValue: any;
|
|
108
|
+
LongestBarLimit: AcFormatBarLimits;
|
|
109
|
+
LongestBarValue: any;
|
|
110
|
+
ShowBarOnly: boolean;
|
|
111
|
+
}
|
|
112
|
+
interface FormatConditions{
|
|
113
|
+
readonly Application: Application;
|
|
114
|
+
readonly Parent: object | any;
|
|
115
|
+
Item(Index: any): FormatCondition;
|
|
116
|
+
readonly Count: number;
|
|
117
|
+
Add(Type: AcFormatConditionType, Operator?: AcFormatConditionOperator, Expression1?: any, Expression2?: any): FormatCondition;
|
|
118
|
+
Delete(): void;
|
|
119
|
+
IsMemberSafe(dispid: number): boolean;
|
|
120
|
+
}
|
|
121
|
+
interface temsSelected{
|
|
122
|
+
Item(Index: any): number;
|
|
123
|
+
readonly Count: number;
|
|
124
|
+
IsMemberSafe(dispid: number): boolean;
|
|
125
|
+
}
|
|
126
|
+
interface Children{
|
|
127
|
+
Item(Index: any): object | any;
|
|
128
|
+
readonly Count: number;
|
|
129
|
+
IsMemberSafe(dispid: number): boolean;
|
|
130
|
+
}
|
|
131
|
+
interface AccessField{
|
|
132
|
+
Value: any;
|
|
133
|
+
IsMemberSafe(dispid: number): boolean;
|
|
134
|
+
}
|
|
135
|
+
interface _Help{
|
|
136
|
+
FieldName: any;
|
|
137
|
+
DataType: any;
|
|
138
|
+
Description: any;
|
|
139
|
+
FieldSize: any;
|
|
140
|
+
NewValues: any;
|
|
141
|
+
Required: any;
|
|
142
|
+
AllowZeroLength: any;
|
|
143
|
+
Indexed: any;
|
|
144
|
+
DisplayControl: any;
|
|
145
|
+
ReplicationConflictFunction: any;
|
|
146
|
+
ProjectName: any;
|
|
147
|
+
MDE: any;
|
|
148
|
+
AllowBreakIntoCode: any;
|
|
149
|
+
AllowBuiltInToolbars: any;
|
|
150
|
+
AllowBypassKey: any;
|
|
151
|
+
AllowFullMenus: any;
|
|
152
|
+
AllowSpecialKeys: any;
|
|
153
|
+
AllowToolbarChanges: any;
|
|
154
|
+
StartUpForm: any;
|
|
155
|
+
StartUpMenuBar: any;
|
|
156
|
+
StartUpShortcutMenuBar: any;
|
|
157
|
+
StartUpShowDBWindow: any;
|
|
158
|
+
StartUpShowStatusBar: any;
|
|
159
|
+
AppIcon: any;
|
|
160
|
+
AppTitle: any;
|
|
161
|
+
ODBCConnectStr: any;
|
|
162
|
+
LogMessages: any;
|
|
163
|
+
}
|
|
164
|
+
interface Hyperlink{
|
|
165
|
+
SubAddress: any;
|
|
166
|
+
Address: any;
|
|
167
|
+
AddToFavorites(): void;
|
|
168
|
+
Follow(NewWindow?: boolean, AddHistory?: boolean, ExtraInfo?: any, Method?: MsoExtraInfoMethod, HeaderInfo?: string): void;
|
|
169
|
+
EmailSubject: any;
|
|
170
|
+
ScreenTip: any;
|
|
171
|
+
TextToDisplay: any;
|
|
172
|
+
CreateNewDocument(FileName: string, EditNow: boolean, Overwrite: boolean): void;
|
|
173
|
+
IsMemberSafe(dispid: number): boolean;
|
|
174
|
+
}
|
|
175
|
+
interface Pages{
|
|
176
|
+
Item(Index: any): Page;
|
|
177
|
+
readonly Count: number;
|
|
178
|
+
Add(Before?: any): Page;
|
|
179
|
+
Remove(Item?: any): void;
|
|
180
|
+
IsMemberSafe(dispid: number): boolean;
|
|
181
|
+
}
|
|
182
|
+
interface Control{
|
|
183
|
+
readonly Application: Application;
|
|
184
|
+
readonly Parent: object | any;
|
|
185
|
+
Undo(): void;
|
|
186
|
+
Dropdown(): void;
|
|
187
|
+
Column(Index: number, Row?: any): any;
|
|
188
|
+
Selected(lRow: number, pRet?: number): void;
|
|
189
|
+
readonly OldValue: any;
|
|
190
|
+
readonly Form: Form3;
|
|
191
|
+
readonly Report: Report3;
|
|
192
|
+
ItemData(Index: number): any;
|
|
193
|
+
readonly Object: object | any;
|
|
194
|
+
ObjectVerbs(Index: number): string;
|
|
195
|
+
readonly Properties: Properties;
|
|
196
|
+
Requery(): void;
|
|
197
|
+
SizeToFit(): void;
|
|
198
|
+
Goto(): void;
|
|
199
|
+
readonly ItemsSelected: temsSelected;
|
|
200
|
+
SetFocus(): void;
|
|
201
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
202
|
+
readonly Pages: Pages;
|
|
203
|
+
readonly Controls: Children;
|
|
204
|
+
readonly Hyperlink: Hyperlink;
|
|
205
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
206
|
+
readonly SmartTags: SmartTags;
|
|
207
|
+
IsMemberSafe(dispid: number): boolean;
|
|
208
|
+
readonly Layout: AcLayoutType;
|
|
209
|
+
LeftPadding: number;
|
|
210
|
+
TopPadding: number;
|
|
211
|
+
RightPadding: number;
|
|
212
|
+
BottomPadding: number;
|
|
213
|
+
GridlineStyleLeft: number;
|
|
214
|
+
GridlineStyleTop: number;
|
|
215
|
+
GridlineStyleRight: number;
|
|
216
|
+
GridlineStyleBottom: number;
|
|
217
|
+
GridlineWidthLeft: number;
|
|
218
|
+
GridlineWidthTop: number;
|
|
219
|
+
GridlineWidthRight: number;
|
|
220
|
+
GridlineWidthBottom: number;
|
|
221
|
+
GridlineColor: number;
|
|
222
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
223
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
224
|
+
readonly LayoutID: number;
|
|
225
|
+
_Name: string;
|
|
226
|
+
Name: string;
|
|
227
|
+
}
|
|
228
|
+
interface Controls{
|
|
229
|
+
readonly Application: Application;
|
|
230
|
+
readonly Parent: object | any;
|
|
231
|
+
Item(Index: any): object | any;
|
|
232
|
+
readonly Count: number;
|
|
233
|
+
IsMemberSafe(dispid: number): boolean;
|
|
234
|
+
}
|
|
235
|
+
interface Label{
|
|
236
|
+
readonly Application: Application;
|
|
237
|
+
readonly Parent: object | any;
|
|
238
|
+
readonly Properties: Properties;
|
|
239
|
+
SizeToFit(): void;
|
|
240
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
241
|
+
readonly Hyperlink: Hyperlink;
|
|
242
|
+
EventProcPrefix: string;
|
|
243
|
+
_Name: string;
|
|
244
|
+
ControlType: number;
|
|
245
|
+
Caption: string;
|
|
246
|
+
HyperlinkAddress: string;
|
|
247
|
+
HyperlinkSubAddress: string;
|
|
248
|
+
Visible: boolean;
|
|
249
|
+
DisplayWhen: number;
|
|
250
|
+
Vertical: boolean;
|
|
251
|
+
Left: number;
|
|
252
|
+
Top: number;
|
|
253
|
+
Width: number;
|
|
254
|
+
Height: number;
|
|
255
|
+
BackStyle: number;
|
|
256
|
+
BackColor: number;
|
|
257
|
+
SpecialEffect: number;
|
|
258
|
+
BorderStyle: number;
|
|
259
|
+
OldBorderStyle: number;
|
|
260
|
+
BorderColor: number;
|
|
261
|
+
BorderWidth: number;
|
|
262
|
+
BorderLineStyle: number;
|
|
263
|
+
ForeColor: number;
|
|
264
|
+
FontName: string;
|
|
265
|
+
FontSize: number;
|
|
266
|
+
FontWeight: number;
|
|
267
|
+
FontItalic: boolean;
|
|
268
|
+
FontUnderline: boolean;
|
|
269
|
+
TextFontCharSet: number;
|
|
270
|
+
TextAlign: number;
|
|
271
|
+
FontBold: number;
|
|
272
|
+
ControlTipText: string;
|
|
273
|
+
HelpContextId: number;
|
|
274
|
+
Section: number;
|
|
275
|
+
ControlName: string;
|
|
276
|
+
IsVisible: boolean;
|
|
277
|
+
InSelection: boolean;
|
|
278
|
+
OnClick: string;
|
|
279
|
+
OnDblClick: string;
|
|
280
|
+
OnMouseDown: string;
|
|
281
|
+
OnMouseMove: string;
|
|
282
|
+
OnMouseUp: string;
|
|
283
|
+
ShortcutMenuBar: string;
|
|
284
|
+
Tag: string;
|
|
285
|
+
ReadingOrder: number;
|
|
286
|
+
NumeralShapes: number;
|
|
287
|
+
Name: string;
|
|
288
|
+
LeftMargin: number;
|
|
289
|
+
TopMargin: number;
|
|
290
|
+
LineSpacing: number;
|
|
291
|
+
RightMargin: number;
|
|
292
|
+
BottomMargin: number;
|
|
293
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
294
|
+
readonly SmartTags: SmartTags;
|
|
295
|
+
IsMemberSafe(dispid: number): boolean;
|
|
296
|
+
readonly Layout: AcLayoutType;
|
|
297
|
+
LeftPadding: number;
|
|
298
|
+
TopPadding: number;
|
|
299
|
+
RightPadding: number;
|
|
300
|
+
BottomPadding: number;
|
|
301
|
+
GridlineStyleLeft: number;
|
|
302
|
+
GridlineStyleTop: number;
|
|
303
|
+
GridlineStyleRight: number;
|
|
304
|
+
GridlineStyleBottom: number;
|
|
305
|
+
GridlineWidthLeft: number;
|
|
306
|
+
GridlineWidthTop: number;
|
|
307
|
+
GridlineWidthRight: number;
|
|
308
|
+
GridlineWidthBottom: number;
|
|
309
|
+
GridlineColor: number;
|
|
310
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
311
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
312
|
+
OnClickMacro: string;
|
|
313
|
+
OnDblClickMacro: string;
|
|
314
|
+
OnMouseDownMacro: string;
|
|
315
|
+
OnMouseMoveMacro: string;
|
|
316
|
+
OnMouseUpMacro: string;
|
|
317
|
+
readonly LayoutID: number;
|
|
318
|
+
Target: string;
|
|
319
|
+
BackThemeColorIndex: number;
|
|
320
|
+
BackTint: number;
|
|
321
|
+
BackShade: number;
|
|
322
|
+
BorderThemeColorIndex: number;
|
|
323
|
+
BorderTint: number;
|
|
324
|
+
BorderShade: number;
|
|
325
|
+
ForeThemeColorIndex: number;
|
|
326
|
+
ForeTint: number;
|
|
327
|
+
ForeShade: number;
|
|
328
|
+
ThemeFontIndex: number;
|
|
329
|
+
GridlineThemeColorIndex: number;
|
|
330
|
+
GridlineTint: number;
|
|
331
|
+
GridlineShade: number;
|
|
332
|
+
}
|
|
333
|
+
interface Rectangle{
|
|
334
|
+
readonly Application: Application;
|
|
335
|
+
readonly Parent: object | any;
|
|
336
|
+
readonly Properties: Properties;
|
|
337
|
+
SizeToFit(): void;
|
|
338
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
339
|
+
EventProcPrefix: string;
|
|
340
|
+
_Name: string;
|
|
341
|
+
ControlType: number;
|
|
342
|
+
Visible: boolean;
|
|
343
|
+
DisplayWhen: number;
|
|
344
|
+
Left: number;
|
|
345
|
+
Top: number;
|
|
346
|
+
Width: number;
|
|
347
|
+
Height: number;
|
|
348
|
+
BackStyle: number;
|
|
349
|
+
BackColor: number;
|
|
350
|
+
SpecialEffect: number;
|
|
351
|
+
BorderStyle: number;
|
|
352
|
+
OldBorderStyle: number;
|
|
353
|
+
BorderColor: number;
|
|
354
|
+
BorderWidth: number;
|
|
355
|
+
BorderLineStyle: number;
|
|
356
|
+
Section: number;
|
|
357
|
+
ControlName: string;
|
|
358
|
+
Tag: string;
|
|
359
|
+
IsVisible: boolean;
|
|
360
|
+
InSelection: boolean;
|
|
361
|
+
OnClick: string;
|
|
362
|
+
OnDblClick: string;
|
|
363
|
+
OnMouseDown: string;
|
|
364
|
+
OnMouseMove: string;
|
|
365
|
+
OnMouseUp: string;
|
|
366
|
+
Name: string;
|
|
367
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
368
|
+
IsMemberSafe(dispid: number): boolean;
|
|
369
|
+
OnClickMacro: string;
|
|
370
|
+
OnDblClickMacro: string;
|
|
371
|
+
OnMouseDownMacro: string;
|
|
372
|
+
OnMouseMoveMacro: string;
|
|
373
|
+
OnMouseUpMacro: string;
|
|
374
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
375
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
376
|
+
BackThemeColorIndex: number;
|
|
377
|
+
BackTint: number;
|
|
378
|
+
BackShade: number;
|
|
379
|
+
BorderThemeColorIndex: number;
|
|
380
|
+
BorderTint: number;
|
|
381
|
+
BorderShade: number;
|
|
382
|
+
}
|
|
383
|
+
interface Line{
|
|
384
|
+
readonly Application: Application;
|
|
385
|
+
readonly Parent: object | any;
|
|
386
|
+
readonly Properties: Properties;
|
|
387
|
+
SizeToFit(): void;
|
|
388
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
389
|
+
EventProcPrefix: string;
|
|
390
|
+
_Name: string;
|
|
391
|
+
ControlType: number;
|
|
392
|
+
LineSlant: boolean;
|
|
393
|
+
Visible: boolean;
|
|
394
|
+
DisplayWhen: number;
|
|
395
|
+
Left: number;
|
|
396
|
+
Top: number;
|
|
397
|
+
Width: number;
|
|
398
|
+
Height: number;
|
|
399
|
+
SpecialEffect: number;
|
|
400
|
+
BorderStyle: number;
|
|
401
|
+
OldBorderStyle: number;
|
|
402
|
+
BorderColor: number;
|
|
403
|
+
BorderWidth: number;
|
|
404
|
+
BorderLineStyle: number;
|
|
405
|
+
Section: number;
|
|
406
|
+
ControlName: string;
|
|
407
|
+
Tag: string;
|
|
408
|
+
IsVisible: boolean;
|
|
409
|
+
InSelection: boolean;
|
|
410
|
+
Name: string;
|
|
411
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
412
|
+
IsMemberSafe(dispid: number): boolean;
|
|
413
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
414
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
415
|
+
BorderThemeColorIndex: number;
|
|
416
|
+
BorderTint: number;
|
|
417
|
+
BorderShade: number;
|
|
418
|
+
}
|
|
419
|
+
interface mage{
|
|
420
|
+
readonly Application: Application;
|
|
421
|
+
readonly Parent: object | any;
|
|
422
|
+
readonly OldValue: any;
|
|
423
|
+
readonly Properties: Properties;
|
|
424
|
+
SizeToFit(): void;
|
|
425
|
+
Requery(): void;
|
|
426
|
+
Goto(): void;
|
|
427
|
+
SetFocus(): void;
|
|
428
|
+
readonly Controls: Children;
|
|
429
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
430
|
+
readonly Hyperlink: Hyperlink;
|
|
431
|
+
EventProcPrefix: string;
|
|
432
|
+
_Name: string;
|
|
433
|
+
ControlType: number;
|
|
434
|
+
Picture: string;
|
|
435
|
+
PictureType: number;
|
|
436
|
+
PictureData: any;
|
|
437
|
+
SizeMode: number;
|
|
438
|
+
PictureAlignment: number;
|
|
439
|
+
PictureTiling: boolean;
|
|
440
|
+
HyperlinkAddress: string;
|
|
441
|
+
HyperlinkSubAddress: string;
|
|
442
|
+
Visible: boolean;
|
|
443
|
+
DisplayWhen: number;
|
|
444
|
+
Left: number;
|
|
445
|
+
Top: number;
|
|
446
|
+
Width: number;
|
|
447
|
+
Height: number;
|
|
448
|
+
BackStyle: number;
|
|
449
|
+
BackColor: number;
|
|
450
|
+
SpecialEffect: number;
|
|
451
|
+
BorderStyle: number;
|
|
452
|
+
OldBorderStyle: number;
|
|
453
|
+
BorderColor: number;
|
|
454
|
+
BorderWidth: number;
|
|
455
|
+
BorderLineStyle: number;
|
|
456
|
+
ControlTipText: string;
|
|
457
|
+
HelpContextId: number;
|
|
458
|
+
Section: number;
|
|
459
|
+
ControlName: string;
|
|
460
|
+
ObjectPalette: any;
|
|
461
|
+
IsVisible: boolean;
|
|
462
|
+
OnClick: string;
|
|
463
|
+
OnDblClick: string;
|
|
464
|
+
OnMouseDown: string;
|
|
465
|
+
OnMouseMove: string;
|
|
466
|
+
OnMouseUp: string;
|
|
467
|
+
ShortcutMenuBar: string;
|
|
468
|
+
ImageHeight: number;
|
|
469
|
+
ImageWidth: number;
|
|
470
|
+
InSelection: boolean;
|
|
471
|
+
Tag: string;
|
|
472
|
+
Name: string;
|
|
473
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
474
|
+
IsMemberSafe(dispid: number): boolean;
|
|
475
|
+
OnClickMacro: string;
|
|
476
|
+
OnDblClickMacro: string;
|
|
477
|
+
OnMouseDownMacro: string;
|
|
478
|
+
OnMouseMoveMacro: string;
|
|
479
|
+
OnMouseUpMacro: string;
|
|
480
|
+
readonly Layout: AcLayoutType;
|
|
481
|
+
LeftPadding: number;
|
|
482
|
+
TopPadding: number;
|
|
483
|
+
RightPadding: number;
|
|
484
|
+
BottomPadding: number;
|
|
485
|
+
GridlineStyleLeft: number;
|
|
486
|
+
GridlineStyleTop: number;
|
|
487
|
+
GridlineStyleRight: number;
|
|
488
|
+
GridlineStyleBottom: number;
|
|
489
|
+
GridlineWidthLeft: number;
|
|
490
|
+
GridlineWidthTop: number;
|
|
491
|
+
GridlineWidthRight: number;
|
|
492
|
+
GridlineWidthBottom: number;
|
|
493
|
+
GridlineColor: number;
|
|
494
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
495
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
496
|
+
readonly LayoutID: number;
|
|
497
|
+
Target: string;
|
|
498
|
+
BackThemeColorIndex: number;
|
|
499
|
+
BackTint: number;
|
|
500
|
+
BackShade: number;
|
|
501
|
+
BorderThemeColorIndex: number;
|
|
502
|
+
BorderTint: number;
|
|
503
|
+
BorderShade: number;
|
|
504
|
+
GridlineThemeColorIndex: number;
|
|
505
|
+
GridlineTint: number;
|
|
506
|
+
GridlineShade: number;
|
|
507
|
+
}
|
|
508
|
+
interface CommandButton{
|
|
509
|
+
readonly Application: Application;
|
|
510
|
+
readonly Parent: object | any;
|
|
511
|
+
readonly OldValue: any;
|
|
512
|
+
readonly Properties: Properties;
|
|
513
|
+
SizeToFit(): void;
|
|
514
|
+
Requery(): void;
|
|
515
|
+
Goto(): void;
|
|
516
|
+
SetFocus(): void;
|
|
517
|
+
readonly Controls: Children;
|
|
518
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
519
|
+
readonly Hyperlink: Hyperlink;
|
|
520
|
+
EventProcPrefix: string;
|
|
521
|
+
_Name: string;
|
|
522
|
+
ControlType: number;
|
|
523
|
+
Caption: string;
|
|
524
|
+
Picture: string;
|
|
525
|
+
PictureType: number;
|
|
526
|
+
PictureData: any;
|
|
527
|
+
Transparent: boolean;
|
|
528
|
+
Default: boolean;
|
|
529
|
+
Cancel: boolean;
|
|
530
|
+
AutoRepeat: boolean;
|
|
531
|
+
StatusBarText: string;
|
|
532
|
+
OnPush: string;
|
|
533
|
+
HyperlinkAddress: string;
|
|
534
|
+
HyperlinkSubAddress: string;
|
|
535
|
+
Visible: boolean;
|
|
536
|
+
DisplayWhen: number;
|
|
537
|
+
Enabled: boolean;
|
|
538
|
+
TabStop: boolean;
|
|
539
|
+
TabIndex: number;
|
|
540
|
+
Left: number;
|
|
541
|
+
Top: number;
|
|
542
|
+
Width: number;
|
|
543
|
+
Height: number;
|
|
544
|
+
ForeColor: number;
|
|
545
|
+
FontName: string;
|
|
546
|
+
FontSize: number;
|
|
547
|
+
FontWeight: number;
|
|
548
|
+
FontItalic: boolean;
|
|
549
|
+
FontUnderline: boolean;
|
|
550
|
+
TextFontCharSet: number;
|
|
551
|
+
FontBold: number;
|
|
552
|
+
ShortcutMenuBar: string;
|
|
553
|
+
ControlTipText: string;
|
|
554
|
+
HelpContextId: number;
|
|
555
|
+
AutoLabel: boolean;
|
|
556
|
+
AddColon: boolean;
|
|
557
|
+
LabelX: number;
|
|
558
|
+
LabelY: number;
|
|
559
|
+
LabelAlign: number;
|
|
560
|
+
Section: number;
|
|
561
|
+
ControlName: string;
|
|
562
|
+
Tag: string;
|
|
563
|
+
ObjectPalette: any;
|
|
564
|
+
IsVisible: boolean;
|
|
565
|
+
InSelection: boolean;
|
|
566
|
+
OnEnter: string;
|
|
567
|
+
OnExit: string;
|
|
568
|
+
OnGotFocus: string;
|
|
569
|
+
OnLostFocus: string;
|
|
570
|
+
OnClick: string;
|
|
571
|
+
OnDblClick: string;
|
|
572
|
+
OnMouseDown: string;
|
|
573
|
+
OnMouseMove: string;
|
|
574
|
+
OnMouseUp: string;
|
|
575
|
+
OnKeyDown: string;
|
|
576
|
+
OnKeyUp: string;
|
|
577
|
+
OnKeyPress: string;
|
|
578
|
+
ReadingOrder: number;
|
|
579
|
+
Name: string;
|
|
580
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
581
|
+
IsMemberSafe(dispid: number): boolean;
|
|
582
|
+
BeforeUpdateMacro: string;
|
|
583
|
+
AfterUpdateMacro: string;
|
|
584
|
+
OnEnterMacro: string;
|
|
585
|
+
OnExitMacro: string;
|
|
586
|
+
OnGotFocusMacro: string;
|
|
587
|
+
OnLostFocusMacro: string;
|
|
588
|
+
OnClickMacro: string;
|
|
589
|
+
OnDblClickMacro: string;
|
|
590
|
+
OnMouseDownMacro: string;
|
|
591
|
+
OnMouseMoveMacro: string;
|
|
592
|
+
OnMouseUpMacro: string;
|
|
593
|
+
OnKeyDownMacro: string;
|
|
594
|
+
OnKeyUpMacro: string;
|
|
595
|
+
OnKeyPressMacro: string;
|
|
596
|
+
readonly Layout: AcLayoutType;
|
|
597
|
+
LeftPadding: number;
|
|
598
|
+
TopPadding: number;
|
|
599
|
+
RightPadding: number;
|
|
600
|
+
BottomPadding: number;
|
|
601
|
+
GridlineStyleLeft: number;
|
|
602
|
+
GridlineStyleTop: number;
|
|
603
|
+
GridlineStyleRight: number;
|
|
604
|
+
GridlineStyleBottom: number;
|
|
605
|
+
GridlineWidthLeft: number;
|
|
606
|
+
GridlineWidthTop: number;
|
|
607
|
+
GridlineWidthRight: number;
|
|
608
|
+
GridlineWidthBottom: number;
|
|
609
|
+
GridlineColor: number;
|
|
610
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
611
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
612
|
+
readonly LayoutID: number;
|
|
613
|
+
BackStyle: number;
|
|
614
|
+
CursorOnHover: AcCursorOnHover;
|
|
615
|
+
PictureCaptionArrangement: AcPictureCaptionArrangement;
|
|
616
|
+
Alignment: number;
|
|
617
|
+
Target: string;
|
|
618
|
+
ForeThemeColorIndex: number;
|
|
619
|
+
ForeTint: number;
|
|
620
|
+
ForeShade: number;
|
|
621
|
+
ThemeFontIndex: number;
|
|
622
|
+
BackColor: number;
|
|
623
|
+
BackThemeColorIndex: number;
|
|
624
|
+
BackTint: number;
|
|
625
|
+
BackShade: number;
|
|
626
|
+
BorderColor: number;
|
|
627
|
+
BorderThemeColorIndex: number;
|
|
628
|
+
BorderTint: number;
|
|
629
|
+
BorderShade: number;
|
|
630
|
+
BorderWidth: number;
|
|
631
|
+
BorderStyle: number;
|
|
632
|
+
HoverColor: number;
|
|
633
|
+
HoverThemeColorIndex: number;
|
|
634
|
+
HoverTint: number;
|
|
635
|
+
HoverShade: number;
|
|
636
|
+
HoverForeColor: number;
|
|
637
|
+
HoverForeThemeColorIndex: number;
|
|
638
|
+
HoverForeTint: number;
|
|
639
|
+
HoverForeShade: number;
|
|
640
|
+
PressedColor: number;
|
|
641
|
+
PressedThemeColorIndex: number;
|
|
642
|
+
PressedTint: number;
|
|
643
|
+
PressedShade: number;
|
|
644
|
+
PressedForeColor: number;
|
|
645
|
+
PressedForeThemeColorIndex: number;
|
|
646
|
+
PressedForeTint: number;
|
|
647
|
+
PressedForeShade: number;
|
|
648
|
+
UseTheme: boolean;
|
|
649
|
+
Shape: number;
|
|
650
|
+
Bevel: number;
|
|
651
|
+
Glow: number;
|
|
652
|
+
Shadow: number;
|
|
653
|
+
SoftEdges: number;
|
|
654
|
+
GridlineThemeColorIndex: number;
|
|
655
|
+
GridlineTint: number;
|
|
656
|
+
GridlineShade: number;
|
|
657
|
+
QuickStyle: number;
|
|
658
|
+
QuickStyleMask: number;
|
|
659
|
+
Gradient: number;
|
|
660
|
+
}
|
|
661
|
+
interface OptionButton{
|
|
662
|
+
readonly Application: Application;
|
|
663
|
+
readonly Parent: object | any;
|
|
664
|
+
readonly OldValue: any;
|
|
665
|
+
readonly Properties: Properties;
|
|
666
|
+
SizeToFit(): void;
|
|
667
|
+
Requery(): void;
|
|
668
|
+
Goto(): void;
|
|
669
|
+
SetFocus(): void;
|
|
670
|
+
readonly Controls: Children;
|
|
671
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
672
|
+
Value: any;
|
|
673
|
+
EventProcPrefix: string;
|
|
674
|
+
_Name: string;
|
|
675
|
+
ControlType: number;
|
|
676
|
+
OptionValue: number;
|
|
677
|
+
ControlSource: string;
|
|
678
|
+
DefaultValue: string;
|
|
679
|
+
ValidationRule: string;
|
|
680
|
+
ValidationText: string;
|
|
681
|
+
StatusBarText: string;
|
|
682
|
+
Visible: boolean;
|
|
683
|
+
DisplayWhen: number;
|
|
684
|
+
Enabled: boolean;
|
|
685
|
+
Locked: boolean;
|
|
686
|
+
TripleState: boolean;
|
|
687
|
+
TabStop: boolean;
|
|
688
|
+
TabIndex: number;
|
|
689
|
+
HideDuplicates: boolean;
|
|
690
|
+
Left: number;
|
|
691
|
+
Top: number;
|
|
692
|
+
Width: number;
|
|
693
|
+
Height: number;
|
|
694
|
+
SpecialEffect: number;
|
|
695
|
+
BorderStyle: number;
|
|
696
|
+
OldBorderStyle: number;
|
|
697
|
+
BorderWidth: number;
|
|
698
|
+
BorderLineStyle: number;
|
|
699
|
+
BorderColor: number;
|
|
700
|
+
ShortcutMenuBar: string;
|
|
701
|
+
ControlTipText: string;
|
|
702
|
+
HelpContextId: number;
|
|
703
|
+
ColumnWidth: number;
|
|
704
|
+
ColumnOrder: number;
|
|
705
|
+
ColumnHidden: boolean;
|
|
706
|
+
AutoLabel: boolean;
|
|
707
|
+
AddColon: boolean;
|
|
708
|
+
LabelX: number;
|
|
709
|
+
LabelY: number;
|
|
710
|
+
LabelAlign: number;
|
|
711
|
+
Section: number;
|
|
712
|
+
ControlName: string;
|
|
713
|
+
Tag: string;
|
|
714
|
+
IsVisible: boolean;
|
|
715
|
+
InSelection: boolean;
|
|
716
|
+
BeforeUpdate: string;
|
|
717
|
+
AfterUpdate: string;
|
|
718
|
+
OnEnter: string;
|
|
719
|
+
OnExit: string;
|
|
720
|
+
OnGotFocus: string;
|
|
721
|
+
OnLostFocus: string;
|
|
722
|
+
OnClick: string;
|
|
723
|
+
OnDblClick: string;
|
|
724
|
+
OnMouseDown: string;
|
|
725
|
+
OnMouseMove: string;
|
|
726
|
+
OnMouseUp: string;
|
|
727
|
+
OnKeyDown: string;
|
|
728
|
+
OnKeyUp: string;
|
|
729
|
+
OnKeyPress: string;
|
|
730
|
+
ReadingOrder: number;
|
|
731
|
+
Name: string;
|
|
732
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
733
|
+
IsMemberSafe(dispid: number): boolean;
|
|
734
|
+
BeforeUpdateMacro: string;
|
|
735
|
+
AfterUpdateMacro: string;
|
|
736
|
+
OnEnterMacro: string;
|
|
737
|
+
OnExitMacro: string;
|
|
738
|
+
OnGotFocusMacro: string;
|
|
739
|
+
OnLostFocusMacro: string;
|
|
740
|
+
OnClickMacro: string;
|
|
741
|
+
OnDblClickMacro: string;
|
|
742
|
+
OnMouseDownMacro: string;
|
|
743
|
+
OnMouseMoveMacro: string;
|
|
744
|
+
OnMouseUpMacro: string;
|
|
745
|
+
OnKeyDownMacro: string;
|
|
746
|
+
OnKeyUpMacro: string;
|
|
747
|
+
OnKeyPressMacro: string;
|
|
748
|
+
readonly Layout: AcLayoutType;
|
|
749
|
+
LeftPadding: number;
|
|
750
|
+
TopPadding: number;
|
|
751
|
+
RightPadding: number;
|
|
752
|
+
BottomPadding: number;
|
|
753
|
+
GridlineStyleLeft: number;
|
|
754
|
+
GridlineStyleTop: number;
|
|
755
|
+
GridlineStyleRight: number;
|
|
756
|
+
GridlineStyleBottom: number;
|
|
757
|
+
GridlineWidthLeft: number;
|
|
758
|
+
GridlineWidthTop: number;
|
|
759
|
+
GridlineWidthRight: number;
|
|
760
|
+
GridlineWidthBottom: number;
|
|
761
|
+
GridlineColor: number;
|
|
762
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
763
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
764
|
+
readonly LayoutID: number;
|
|
765
|
+
BorderThemeColorIndex: number;
|
|
766
|
+
BorderTint: number;
|
|
767
|
+
BorderShade: number;
|
|
768
|
+
GridlineThemeColorIndex: number;
|
|
769
|
+
GridlineTint: number;
|
|
770
|
+
GridlineShade: number;
|
|
771
|
+
}
|
|
772
|
+
interface Checkbox{
|
|
773
|
+
readonly Application: Application;
|
|
774
|
+
readonly Parent: object | any;
|
|
775
|
+
Undo(): void;
|
|
776
|
+
readonly OldValue: any;
|
|
777
|
+
readonly Properties: Properties;
|
|
778
|
+
SizeToFit(): void;
|
|
779
|
+
Requery(): void;
|
|
780
|
+
Goto(): void;
|
|
781
|
+
SetFocus(): void;
|
|
782
|
+
readonly Controls: Children;
|
|
783
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
784
|
+
Value: any;
|
|
785
|
+
EventProcPrefix: string;
|
|
786
|
+
_Name: string;
|
|
787
|
+
ControlType: number;
|
|
788
|
+
OptionValue: number;
|
|
789
|
+
ControlSource: string;
|
|
790
|
+
DefaultValue: string;
|
|
791
|
+
ValidationRule: string;
|
|
792
|
+
ValidationText: string;
|
|
793
|
+
StatusBarText: string;
|
|
794
|
+
Visible: boolean;
|
|
795
|
+
DisplayWhen: number;
|
|
796
|
+
Enabled: boolean;
|
|
797
|
+
Locked: boolean;
|
|
798
|
+
TripleState: boolean;
|
|
799
|
+
TabStop: boolean;
|
|
800
|
+
TabIndex: number;
|
|
801
|
+
HideDuplicates: boolean;
|
|
802
|
+
Left: number;
|
|
803
|
+
Top: number;
|
|
804
|
+
Width: number;
|
|
805
|
+
Height: number;
|
|
806
|
+
SpecialEffect: number;
|
|
807
|
+
BorderStyle: number;
|
|
808
|
+
OldBorderStyle: number;
|
|
809
|
+
BorderWidth: number;
|
|
810
|
+
BorderLineStyle: number;
|
|
811
|
+
BorderColor: number;
|
|
812
|
+
ShortcutMenuBar: string;
|
|
813
|
+
ControlTipText: string;
|
|
814
|
+
HelpContextId: number;
|
|
815
|
+
ColumnWidth: number;
|
|
816
|
+
ColumnOrder: number;
|
|
817
|
+
ColumnHidden: boolean;
|
|
818
|
+
AutoLabel: boolean;
|
|
819
|
+
AddColon: boolean;
|
|
820
|
+
LabelX: number;
|
|
821
|
+
LabelY: number;
|
|
822
|
+
LabelAlign: number;
|
|
823
|
+
Section: number;
|
|
824
|
+
ControlName: string;
|
|
825
|
+
Tag: string;
|
|
826
|
+
IsVisible: boolean;
|
|
827
|
+
InSelection: boolean;
|
|
828
|
+
BeforeUpdate: string;
|
|
829
|
+
AfterUpdate: string;
|
|
830
|
+
OnEnter: string;
|
|
831
|
+
OnExit: string;
|
|
832
|
+
OnGotFocus: string;
|
|
833
|
+
OnLostFocus: string;
|
|
834
|
+
OnClick: string;
|
|
835
|
+
OnDblClick: string;
|
|
836
|
+
OnMouseDown: string;
|
|
837
|
+
OnMouseMove: string;
|
|
838
|
+
OnMouseUp: string;
|
|
839
|
+
OnKeyDown: string;
|
|
840
|
+
OnKeyUp: string;
|
|
841
|
+
OnKeyPress: string;
|
|
842
|
+
ReadingOrder: number;
|
|
843
|
+
Name: string;
|
|
844
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
845
|
+
IsMemberSafe(dispid: number): boolean;
|
|
846
|
+
BeforeUpdateMacro: string;
|
|
847
|
+
AfterUpdateMacro: string;
|
|
848
|
+
OnEnterMacro: string;
|
|
849
|
+
OnExitMacro: string;
|
|
850
|
+
OnGotFocusMacro: string;
|
|
851
|
+
OnLostFocusMacro: string;
|
|
852
|
+
OnClickMacro: string;
|
|
853
|
+
OnDblClickMacro: string;
|
|
854
|
+
OnMouseDownMacro: string;
|
|
855
|
+
OnMouseMoveMacro: string;
|
|
856
|
+
OnMouseUpMacro: string;
|
|
857
|
+
OnKeyDownMacro: string;
|
|
858
|
+
OnKeyUpMacro: string;
|
|
859
|
+
OnKeyPressMacro: string;
|
|
860
|
+
readonly Layout: AcLayoutType;
|
|
861
|
+
LeftPadding: number;
|
|
862
|
+
TopPadding: number;
|
|
863
|
+
RightPadding: number;
|
|
864
|
+
BottomPadding: number;
|
|
865
|
+
GridlineStyleLeft: number;
|
|
866
|
+
GridlineStyleTop: number;
|
|
867
|
+
GridlineStyleRight: number;
|
|
868
|
+
GridlineStyleBottom: number;
|
|
869
|
+
GridlineWidthLeft: number;
|
|
870
|
+
GridlineWidthTop: number;
|
|
871
|
+
GridlineWidthRight: number;
|
|
872
|
+
GridlineWidthBottom: number;
|
|
873
|
+
GridlineColor: number;
|
|
874
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
875
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
876
|
+
readonly LayoutID: number;
|
|
877
|
+
BorderThemeColorIndex: number;
|
|
878
|
+
BorderTint: number;
|
|
879
|
+
BorderShade: number;
|
|
880
|
+
GridlineThemeColorIndex: number;
|
|
881
|
+
GridlineTint: number;
|
|
882
|
+
GridlineShade: number;
|
|
883
|
+
}
|
|
884
|
+
interface OptionGroup{
|
|
885
|
+
readonly Application: Application;
|
|
886
|
+
readonly Parent: object | any;
|
|
887
|
+
Undo(): void;
|
|
888
|
+
readonly OldValue: any;
|
|
889
|
+
readonly Properties: Properties;
|
|
890
|
+
SizeToFit(): void;
|
|
891
|
+
Requery(): void;
|
|
892
|
+
Goto(): void;
|
|
893
|
+
SetFocus(): void;
|
|
894
|
+
readonly Controls: Children;
|
|
895
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
896
|
+
Value: any;
|
|
897
|
+
EventProcPrefix: string;
|
|
898
|
+
_Name: string;
|
|
899
|
+
ControlType: number;
|
|
900
|
+
ControlSource: string;
|
|
901
|
+
DefaultValue: string;
|
|
902
|
+
ValidationRule: string;
|
|
903
|
+
ValidationText: string;
|
|
904
|
+
StatusBarText: string;
|
|
905
|
+
Visible: boolean;
|
|
906
|
+
DisplayWhen: number;
|
|
907
|
+
Enabled: boolean;
|
|
908
|
+
Locked: boolean;
|
|
909
|
+
TabStop: boolean;
|
|
910
|
+
TabIndex: number;
|
|
911
|
+
HideDuplicates: boolean;
|
|
912
|
+
Left: number;
|
|
913
|
+
Top: number;
|
|
914
|
+
Width: number;
|
|
915
|
+
Height: number;
|
|
916
|
+
BackStyle: number;
|
|
917
|
+
BackColor: number;
|
|
918
|
+
SpecialEffect: number;
|
|
919
|
+
BorderStyle: number;
|
|
920
|
+
OldBorderStyle: number;
|
|
921
|
+
BorderColor: number;
|
|
922
|
+
BorderWidth: number;
|
|
923
|
+
BorderLineStyle: number;
|
|
924
|
+
ShortcutMenuBar: string;
|
|
925
|
+
ControlTipText: string;
|
|
926
|
+
HelpContextId: number;
|
|
927
|
+
ColumnWidth: number;
|
|
928
|
+
ColumnOrder: number;
|
|
929
|
+
ColumnHidden: boolean;
|
|
930
|
+
AutoLabel: boolean;
|
|
931
|
+
AddColon: boolean;
|
|
932
|
+
LabelX: number;
|
|
933
|
+
LabelY: number;
|
|
934
|
+
LabelAlign: number;
|
|
935
|
+
Section: number;
|
|
936
|
+
ControlName: string;
|
|
937
|
+
Tag: string;
|
|
938
|
+
IsVisible: boolean;
|
|
939
|
+
InSelection: boolean;
|
|
940
|
+
BeforeUpdate: string;
|
|
941
|
+
AfterUpdate: string;
|
|
942
|
+
OnEnter: string;
|
|
943
|
+
OnExit: string;
|
|
944
|
+
OnClick: string;
|
|
945
|
+
OnDblClick: string;
|
|
946
|
+
OnMouseDown: string;
|
|
947
|
+
OnMouseMove: string;
|
|
948
|
+
OnMouseUp: string;
|
|
949
|
+
Name: string;
|
|
950
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
951
|
+
IsMemberSafe(dispid: number): boolean;
|
|
952
|
+
BeforeUpdateMacro: string;
|
|
953
|
+
AfterUpdateMacro: string;
|
|
954
|
+
OnEnterMacro: string;
|
|
955
|
+
OnExitMacro: string;
|
|
956
|
+
OnClickMacro: string;
|
|
957
|
+
OnDblClickMacro: string;
|
|
958
|
+
OnMouseDownMacro: string;
|
|
959
|
+
OnMouseMoveMacro: string;
|
|
960
|
+
OnMouseUpMacro: string;
|
|
961
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
962
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
963
|
+
BackThemeColorIndex: number;
|
|
964
|
+
BackTint: number;
|
|
965
|
+
BackShade: number;
|
|
966
|
+
BorderThemeColorIndex: number;
|
|
967
|
+
BorderTint: number;
|
|
968
|
+
BorderShade: number;
|
|
969
|
+
}
|
|
970
|
+
interface BoundObjectFrame{
|
|
971
|
+
readonly Application: Application;
|
|
972
|
+
readonly Parent: object | any;
|
|
973
|
+
readonly OldValue: any;
|
|
974
|
+
readonly Object: object | any;
|
|
975
|
+
ObjectVerbs(Index: number): string;
|
|
976
|
+
readonly Properties: Properties;
|
|
977
|
+
SizeToFit(): void;
|
|
978
|
+
Requery(): void;
|
|
979
|
+
Goto(): void;
|
|
980
|
+
SetFocus(): void;
|
|
981
|
+
readonly Controls: Children;
|
|
982
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
983
|
+
Value: any;
|
|
984
|
+
EventProcPrefix: string;
|
|
985
|
+
_Name: string;
|
|
986
|
+
ControlType: number;
|
|
987
|
+
ControlSource: string;
|
|
988
|
+
SizeMode: number;
|
|
989
|
+
Class: string;
|
|
990
|
+
SourceDoc: string;
|
|
991
|
+
SourceItem: string;
|
|
992
|
+
AutoActivate: number;
|
|
993
|
+
DisplayType: boolean;
|
|
994
|
+
UpdateOptions: number;
|
|
995
|
+
Verb: number;
|
|
996
|
+
OLETypeAllowed: number;
|
|
997
|
+
StatusBarText: string;
|
|
998
|
+
Visible: boolean;
|
|
999
|
+
DisplayWhen: number;
|
|
1000
|
+
Enabled: boolean;
|
|
1001
|
+
Locked: boolean;
|
|
1002
|
+
TabStop: boolean;
|
|
1003
|
+
TabIndex: number;
|
|
1004
|
+
Left: number;
|
|
1005
|
+
Top: number;
|
|
1006
|
+
Width: number;
|
|
1007
|
+
Height: number;
|
|
1008
|
+
BackStyle: number;
|
|
1009
|
+
BackColor: number;
|
|
1010
|
+
SpecialEffect: number;
|
|
1011
|
+
BorderStyle: number;
|
|
1012
|
+
OldBorderStyle: number;
|
|
1013
|
+
BorderColor: number;
|
|
1014
|
+
BorderWidth: number;
|
|
1015
|
+
BorderLineStyle: number;
|
|
1016
|
+
ShortcutMenuBar: string;
|
|
1017
|
+
ControlTipText: string;
|
|
1018
|
+
HelpContextId: number;
|
|
1019
|
+
ColumnWidth: number;
|
|
1020
|
+
ColumnOrder: number;
|
|
1021
|
+
ColumnHidden: boolean;
|
|
1022
|
+
AutoLabel: boolean;
|
|
1023
|
+
AddColon: boolean;
|
|
1024
|
+
LabelX: number;
|
|
1025
|
+
LabelY: number;
|
|
1026
|
+
LabelAlign: number;
|
|
1027
|
+
Section: number;
|
|
1028
|
+
ControlName: string;
|
|
1029
|
+
Tag: string;
|
|
1030
|
+
ObjectPalette: any;
|
|
1031
|
+
LpOleObject: number;
|
|
1032
|
+
ObjectVerbsCount: number;
|
|
1033
|
+
Action: number;
|
|
1034
|
+
Scaling: number;
|
|
1035
|
+
OLEType: number;
|
|
1036
|
+
IsVisible: boolean;
|
|
1037
|
+
InSelection: boolean;
|
|
1038
|
+
BeforeUpdate: string;
|
|
1039
|
+
AfterUpdate: string;
|
|
1040
|
+
OnUpdated: string;
|
|
1041
|
+
OnEnter: string;
|
|
1042
|
+
OnExit: string;
|
|
1043
|
+
OnGotFocus: string;
|
|
1044
|
+
OnLostFocus: string;
|
|
1045
|
+
OnClick: string;
|
|
1046
|
+
OnDblClick: string;
|
|
1047
|
+
OnMouseDown: string;
|
|
1048
|
+
OnMouseMove: string;
|
|
1049
|
+
OnMouseUp: string;
|
|
1050
|
+
OnKeyDown: string;
|
|
1051
|
+
OnKeyUp: string;
|
|
1052
|
+
OnKeyPress: string;
|
|
1053
|
+
Name: string;
|
|
1054
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
1055
|
+
IsMemberSafe(dispid: number): boolean;
|
|
1056
|
+
BeforeUpdateMacro: string;
|
|
1057
|
+
AfterUpdateMacro: string;
|
|
1058
|
+
OnUpdatedMacro: string;
|
|
1059
|
+
OnEnterMacro: string;
|
|
1060
|
+
OnExitMacro: string;
|
|
1061
|
+
OnGotFocusMacro: string;
|
|
1062
|
+
OnLostFocusMacro: string;
|
|
1063
|
+
OnClickMacro: string;
|
|
1064
|
+
OnDblClickMacro: string;
|
|
1065
|
+
OnMouseDownMacro: string;
|
|
1066
|
+
OnMouseMoveMacro: string;
|
|
1067
|
+
OnMouseUpMacro: string;
|
|
1068
|
+
OnKeyDownMacro: string;
|
|
1069
|
+
OnKeyUpMacro: string;
|
|
1070
|
+
OnKeyPressMacro: string;
|
|
1071
|
+
readonly Layout: AcLayoutType;
|
|
1072
|
+
LeftPadding: number;
|
|
1073
|
+
TopPadding: number;
|
|
1074
|
+
RightPadding: number;
|
|
1075
|
+
BottomPadding: number;
|
|
1076
|
+
GridlineStyleLeft: number;
|
|
1077
|
+
GridlineStyleTop: number;
|
|
1078
|
+
GridlineStyleRight: number;
|
|
1079
|
+
GridlineStyleBottom: number;
|
|
1080
|
+
GridlineWidthLeft: number;
|
|
1081
|
+
GridlineWidthTop: number;
|
|
1082
|
+
GridlineWidthRight: number;
|
|
1083
|
+
GridlineWidthBottom: number;
|
|
1084
|
+
GridlineColor: number;
|
|
1085
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
1086
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
1087
|
+
readonly LayoutID: number;
|
|
1088
|
+
BackThemeColorIndex: number;
|
|
1089
|
+
BackTint: number;
|
|
1090
|
+
BackShade: number;
|
|
1091
|
+
BorderThemeColorIndex: number;
|
|
1092
|
+
BorderTint: number;
|
|
1093
|
+
BorderShade: number;
|
|
1094
|
+
GridlineThemeColorIndex: number;
|
|
1095
|
+
GridlineTint: number;
|
|
1096
|
+
GridlineShade: number;
|
|
1097
|
+
VarOleObject: any;
|
|
1098
|
+
}
|
|
1099
|
+
interface Textbox{
|
|
1100
|
+
readonly Application: Application;
|
|
1101
|
+
readonly Parent: object | any;
|
|
1102
|
+
Undo(): void;
|
|
1103
|
+
readonly OldValue: any;
|
|
1104
|
+
readonly Properties: Properties;
|
|
1105
|
+
SizeToFit(): void;
|
|
1106
|
+
Requery(): void;
|
|
1107
|
+
Goto(): void;
|
|
1108
|
+
SetFocus(): void;
|
|
1109
|
+
readonly Controls: Children;
|
|
1110
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
1111
|
+
readonly Hyperlink: Hyperlink;
|
|
1112
|
+
readonly FormatConditions: FormatConditions;
|
|
1113
|
+
Value: any;
|
|
1114
|
+
EventProcPrefix: string;
|
|
1115
|
+
_Name: string;
|
|
1116
|
+
ControlType: number;
|
|
1117
|
+
ControlSource: string;
|
|
1118
|
+
Format: string;
|
|
1119
|
+
DecimalPlaces: number;
|
|
1120
|
+
InputMask: string;
|
|
1121
|
+
DefaultValue: string;
|
|
1122
|
+
IMEHold: boolean;
|
|
1123
|
+
FuriganaControl: string;
|
|
1124
|
+
PostalAddress: string;
|
|
1125
|
+
ValidationRule: string;
|
|
1126
|
+
ValidationText: string;
|
|
1127
|
+
StatusBarText: string;
|
|
1128
|
+
EnterKeyBehavior: boolean;
|
|
1129
|
+
AllowAutoCorrect: boolean;
|
|
1130
|
+
Visible: boolean;
|
|
1131
|
+
DisplayWhen: number;
|
|
1132
|
+
Vertical: boolean;
|
|
1133
|
+
FELineBreak: boolean;
|
|
1134
|
+
Enabled: boolean;
|
|
1135
|
+
Locked: boolean;
|
|
1136
|
+
FilterLookup: number;
|
|
1137
|
+
AutoTab: boolean;
|
|
1138
|
+
TabStop: boolean;
|
|
1139
|
+
TabIndex: number;
|
|
1140
|
+
ScrollBars: number;
|
|
1141
|
+
HideDuplicates: boolean;
|
|
1142
|
+
CanGrow: boolean;
|
|
1143
|
+
CanShrink: boolean;
|
|
1144
|
+
RunningSum: number;
|
|
1145
|
+
Left: number;
|
|
1146
|
+
Top: number;
|
|
1147
|
+
Width: number;
|
|
1148
|
+
Height: number;
|
|
1149
|
+
BackStyle: number;
|
|
1150
|
+
BackColor: number;
|
|
1151
|
+
SpecialEffect: number;
|
|
1152
|
+
BorderStyle: number;
|
|
1153
|
+
OldBorderStyle: number;
|
|
1154
|
+
BorderColor: number;
|
|
1155
|
+
BorderWidth: number;
|
|
1156
|
+
BorderLineStyle: number;
|
|
1157
|
+
ForeColor: number;
|
|
1158
|
+
FontName: string;
|
|
1159
|
+
FontSize: number;
|
|
1160
|
+
FontWeight: number;
|
|
1161
|
+
FontItalic: boolean;
|
|
1162
|
+
FontUnderline: boolean;
|
|
1163
|
+
TextFontCharSet: number;
|
|
1164
|
+
TextAlign: number;
|
|
1165
|
+
FontBold: number;
|
|
1166
|
+
ShortcutMenuBar: string;
|
|
1167
|
+
ControlTipText: string;
|
|
1168
|
+
HelpContextId: number;
|
|
1169
|
+
ColumnWidth: number;
|
|
1170
|
+
ColumnOrder: number;
|
|
1171
|
+
ColumnHidden: boolean;
|
|
1172
|
+
AutoLabel: boolean;
|
|
1173
|
+
AddColon: boolean;
|
|
1174
|
+
LabelX: number;
|
|
1175
|
+
LabelY: number;
|
|
1176
|
+
LabelAlign: number;
|
|
1177
|
+
Section: number;
|
|
1178
|
+
ControlName: string;
|
|
1179
|
+
Tag: string;
|
|
1180
|
+
Text: string;
|
|
1181
|
+
SelText: string;
|
|
1182
|
+
SelStart: number;
|
|
1183
|
+
SelLength: number;
|
|
1184
|
+
TextAlignGeneral: number;
|
|
1185
|
+
Coltyp: number;
|
|
1186
|
+
FormatPictureText: string;
|
|
1187
|
+
IsVisible: boolean;
|
|
1188
|
+
InSelection: boolean;
|
|
1189
|
+
BeforeUpdate: string;
|
|
1190
|
+
AfterUpdate: string;
|
|
1191
|
+
OnChange: string;
|
|
1192
|
+
OnEnter: string;
|
|
1193
|
+
OnExit: string;
|
|
1194
|
+
OnGotFocus: string;
|
|
1195
|
+
OnLostFocus: string;
|
|
1196
|
+
OnClick: string;
|
|
1197
|
+
OnDblClick: string;
|
|
1198
|
+
OnMouseDown: string;
|
|
1199
|
+
OnMouseMove: string;
|
|
1200
|
+
OnMouseUp: string;
|
|
1201
|
+
OnKeyDown: string;
|
|
1202
|
+
OnKeyUp: string;
|
|
1203
|
+
OnKeyPress: string;
|
|
1204
|
+
ReadingOrder: number;
|
|
1205
|
+
KeyboardLanguage: number;
|
|
1206
|
+
AllowedText: number;
|
|
1207
|
+
ScrollBarAlign: number;
|
|
1208
|
+
NumeralShapes: number;
|
|
1209
|
+
IMEMode: AcImeMode;
|
|
1210
|
+
Name: string;
|
|
1211
|
+
IMESentenceMode: AcImeSentenceMode;
|
|
1212
|
+
LeftMargin: number;
|
|
1213
|
+
TopMargin: number;
|
|
1214
|
+
LineSpacing: number;
|
|
1215
|
+
RightMargin: number;
|
|
1216
|
+
BottomMargin: number;
|
|
1217
|
+
IsHyperlink: boolean;
|
|
1218
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
1219
|
+
OnDirty: string;
|
|
1220
|
+
OnUndo: string;
|
|
1221
|
+
AsianLineBreak: boolean;
|
|
1222
|
+
readonly SmartTags: SmartTags;
|
|
1223
|
+
IsMemberSafe(dispid: number): boolean;
|
|
1224
|
+
readonly Layout: AcLayoutType;
|
|
1225
|
+
TextFormat: AcTextFormat;
|
|
1226
|
+
LeftPadding: number;
|
|
1227
|
+
TopPadding: number;
|
|
1228
|
+
RightPadding: number;
|
|
1229
|
+
BottomPadding: number;
|
|
1230
|
+
GridlineStyleLeft: number;
|
|
1231
|
+
GridlineStyleTop: number;
|
|
1232
|
+
GridlineStyleRight: number;
|
|
1233
|
+
GridlineStyleBottom: number;
|
|
1234
|
+
GridlineWidthLeft: number;
|
|
1235
|
+
GridlineWidthTop: number;
|
|
1236
|
+
GridlineWidthRight: number;
|
|
1237
|
+
GridlineWidthBottom: number;
|
|
1238
|
+
GridlineColor: number;
|
|
1239
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
1240
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
1241
|
+
BeforeUpdateMacro: string;
|
|
1242
|
+
AfterUpdateMacro: string;
|
|
1243
|
+
OnChangeMacro: string;
|
|
1244
|
+
OnEnterMacro: string;
|
|
1245
|
+
OnExitMacro: string;
|
|
1246
|
+
OnGotFocusMacro: string;
|
|
1247
|
+
OnLostFocusMacro: string;
|
|
1248
|
+
OnClickMacro: string;
|
|
1249
|
+
OnDblClickMacro: string;
|
|
1250
|
+
OnMouseDownMacro: string;
|
|
1251
|
+
OnMouseMoveMacro: string;
|
|
1252
|
+
OnMouseUpMacro: string;
|
|
1253
|
+
OnKeyDownMacro: string;
|
|
1254
|
+
OnKeyUpMacro: string;
|
|
1255
|
+
OnKeyPressMacro: string;
|
|
1256
|
+
readonly LayoutID: number;
|
|
1257
|
+
DisplayAsHyperlink: AcDisplayAsHyperlink;
|
|
1258
|
+
ShowDatePicker: number;
|
|
1259
|
+
Target: string;
|
|
1260
|
+
BackThemeColorIndex: number;
|
|
1261
|
+
BackTint: number;
|
|
1262
|
+
BackShade: number;
|
|
1263
|
+
BorderThemeColorIndex: number;
|
|
1264
|
+
BorderTint: number;
|
|
1265
|
+
BorderShade: number;
|
|
1266
|
+
ForeThemeColorIndex: number;
|
|
1267
|
+
ForeTint: number;
|
|
1268
|
+
ForeShade: number;
|
|
1269
|
+
ThemeFontIndex: number;
|
|
1270
|
+
GridlineThemeColorIndex: number;
|
|
1271
|
+
GridlineTint: number;
|
|
1272
|
+
GridlineShade: number;
|
|
1273
|
+
}
|
|
1274
|
+
interface ListBox{
|
|
1275
|
+
readonly Application: Application;
|
|
1276
|
+
readonly Parent: object | any;
|
|
1277
|
+
Undo(): void;
|
|
1278
|
+
Column(Index: number, Row?: any): any;
|
|
1279
|
+
Selected(lRow: number, pRet?: number): void;
|
|
1280
|
+
readonly OldValue: any;
|
|
1281
|
+
ItemData(Index: number): any;
|
|
1282
|
+
readonly Properties: Properties;
|
|
1283
|
+
SizeToFit(): void;
|
|
1284
|
+
Requery(): void;
|
|
1285
|
+
Goto(): void;
|
|
1286
|
+
SetFocus(): void;
|
|
1287
|
+
readonly Controls: Children;
|
|
1288
|
+
readonly ItemsSelected: temsSelected;
|
|
1289
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
1290
|
+
readonly Hyperlink: Hyperlink;
|
|
1291
|
+
Value: any;
|
|
1292
|
+
EventProcPrefix: string;
|
|
1293
|
+
_Name: string;
|
|
1294
|
+
ControlType: number;
|
|
1295
|
+
ControlSource: string;
|
|
1296
|
+
RowSourceType: string;
|
|
1297
|
+
RowSource: string;
|
|
1298
|
+
ColumnCount: number;
|
|
1299
|
+
ColumnHeads: boolean;
|
|
1300
|
+
ColumnWidths: string;
|
|
1301
|
+
BoundColumn: number;
|
|
1302
|
+
DefaultValue: string;
|
|
1303
|
+
IMEHold: boolean;
|
|
1304
|
+
ValidationRule: string;
|
|
1305
|
+
ValidationText: string;
|
|
1306
|
+
StatusBarText: string;
|
|
1307
|
+
Visible: boolean;
|
|
1308
|
+
DisplayWhen: number;
|
|
1309
|
+
Enabled: boolean;
|
|
1310
|
+
Locked: boolean;
|
|
1311
|
+
MultiSelect: number;
|
|
1312
|
+
TabStop: boolean;
|
|
1313
|
+
TabIndex: number;
|
|
1314
|
+
HideDuplicates: boolean;
|
|
1315
|
+
Left: number;
|
|
1316
|
+
Top: number;
|
|
1317
|
+
Width: number;
|
|
1318
|
+
Height: number;
|
|
1319
|
+
BackColor: number;
|
|
1320
|
+
SpecialEffect: number;
|
|
1321
|
+
BorderStyle: number;
|
|
1322
|
+
OldBorderStyle: number;
|
|
1323
|
+
BorderWidth: number;
|
|
1324
|
+
BorderLineStyle: number;
|
|
1325
|
+
BorderColor: number;
|
|
1326
|
+
ForeColor: number;
|
|
1327
|
+
FontName: string;
|
|
1328
|
+
FontSize: number;
|
|
1329
|
+
FontWeight: number;
|
|
1330
|
+
FontItalic: boolean;
|
|
1331
|
+
FontUnderline: boolean;
|
|
1332
|
+
TextFontCharSet: number;
|
|
1333
|
+
FontBold: number;
|
|
1334
|
+
ShortcutMenuBar: string;
|
|
1335
|
+
ControlTipText: string;
|
|
1336
|
+
HelpContextId: number;
|
|
1337
|
+
ColumnWidth: number;
|
|
1338
|
+
ColumnOrder: number;
|
|
1339
|
+
ColumnHidden: boolean;
|
|
1340
|
+
AutoLabel: boolean;
|
|
1341
|
+
AddColon: boolean;
|
|
1342
|
+
LabelX: number;
|
|
1343
|
+
LabelY: number;
|
|
1344
|
+
LabelAlign: number;
|
|
1345
|
+
Section: number;
|
|
1346
|
+
ControlName: string;
|
|
1347
|
+
Tag: string;
|
|
1348
|
+
ListCount: number;
|
|
1349
|
+
ListIndex: number;
|
|
1350
|
+
IsVisible: boolean;
|
|
1351
|
+
InSelection: boolean;
|
|
1352
|
+
BeforeUpdate: string;
|
|
1353
|
+
AfterUpdate: string;
|
|
1354
|
+
OnEnter: string;
|
|
1355
|
+
OnExit: string;
|
|
1356
|
+
OnGotFocus: string;
|
|
1357
|
+
OnLostFocus: string;
|
|
1358
|
+
OnClick: string;
|
|
1359
|
+
OnDblClick: string;
|
|
1360
|
+
OnMouseDown: string;
|
|
1361
|
+
OnMouseMove: string;
|
|
1362
|
+
OnMouseUp: string;
|
|
1363
|
+
OnKeyDown: string;
|
|
1364
|
+
OnKeyUp: string;
|
|
1365
|
+
OnKeyPress: string;
|
|
1366
|
+
ReadingOrder: number;
|
|
1367
|
+
ScrollBarAlign: number;
|
|
1368
|
+
TextAlign: number;
|
|
1369
|
+
NumeralShapes: number;
|
|
1370
|
+
IMEMode: AcImeMode;
|
|
1371
|
+
Name: string;
|
|
1372
|
+
IMESentenceMode: AcImeSentenceMode;
|
|
1373
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
1374
|
+
readonly Recordset: object | any;
|
|
1375
|
+
AddItem(Item: string, Index?: any): void;
|
|
1376
|
+
RemoveItem(Index: any): void;
|
|
1377
|
+
readonly SmartTags: SmartTags;
|
|
1378
|
+
IsMemberSafe(dispid: number): boolean;
|
|
1379
|
+
readonly Layout: AcLayoutType;
|
|
1380
|
+
LeftPadding: number;
|
|
1381
|
+
TopPadding: number;
|
|
1382
|
+
RightPadding: number;
|
|
1383
|
+
BottomPadding: number;
|
|
1384
|
+
GridlineStyleLeft: number;
|
|
1385
|
+
GridlineStyleTop: number;
|
|
1386
|
+
GridlineStyleRight: number;
|
|
1387
|
+
GridlineStyleBottom: number;
|
|
1388
|
+
GridlineWidthLeft: number;
|
|
1389
|
+
GridlineWidthTop: number;
|
|
1390
|
+
GridlineWidthRight: number;
|
|
1391
|
+
GridlineWidthBottom: number;
|
|
1392
|
+
GridlineColor: number;
|
|
1393
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
1394
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
1395
|
+
BeforeUpdateMacro: string;
|
|
1396
|
+
AfterUpdateMacro: string;
|
|
1397
|
+
OnEnterMacro: string;
|
|
1398
|
+
OnExitMacro: string;
|
|
1399
|
+
OnGotFocusMacro: string;
|
|
1400
|
+
OnLostFocusMacro: string;
|
|
1401
|
+
OnClickMacro: string;
|
|
1402
|
+
OnDblClickMacro: string;
|
|
1403
|
+
OnMouseDownMacro: string;
|
|
1404
|
+
OnMouseMoveMacro: string;
|
|
1405
|
+
OnMouseUpMacro: string;
|
|
1406
|
+
OnKeyDownMacro: string;
|
|
1407
|
+
OnKeyUpMacro: string;
|
|
1408
|
+
OnKeyPressMacro: string;
|
|
1409
|
+
AllowValueListEdits: boolean;
|
|
1410
|
+
ListItemsEditForm: string;
|
|
1411
|
+
InheritValueList: boolean;
|
|
1412
|
+
readonly LayoutID: number;
|
|
1413
|
+
ShowOnlyRowSourceValues: boolean;
|
|
1414
|
+
BackThemeColorIndex: number;
|
|
1415
|
+
BackTint: number;
|
|
1416
|
+
BackShade: number;
|
|
1417
|
+
BorderThemeColorIndex: number;
|
|
1418
|
+
BorderTint: number;
|
|
1419
|
+
BorderShade: number;
|
|
1420
|
+
ForeThemeColorIndex: number;
|
|
1421
|
+
ForeTint: number;
|
|
1422
|
+
ForeShade: number;
|
|
1423
|
+
ThemeFontIndex: number;
|
|
1424
|
+
GridlineThemeColorIndex: number;
|
|
1425
|
+
GridlineTint: number;
|
|
1426
|
+
GridlineShade: number;
|
|
1427
|
+
}
|
|
1428
|
+
interface Combobox{
|
|
1429
|
+
readonly Application: Application;
|
|
1430
|
+
readonly Parent: object | any;
|
|
1431
|
+
Undo(): void;
|
|
1432
|
+
Dropdown(): void;
|
|
1433
|
+
Column(Index: number, Row?: any): any;
|
|
1434
|
+
readonly OldValue: any;
|
|
1435
|
+
ItemData(Index: number): any;
|
|
1436
|
+
readonly Properties: Properties;
|
|
1437
|
+
SizeToFit(): void;
|
|
1438
|
+
Requery(): void;
|
|
1439
|
+
Goto(): void;
|
|
1440
|
+
SetFocus(): void;
|
|
1441
|
+
readonly Controls: Children;
|
|
1442
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
1443
|
+
readonly Hyperlink: Hyperlink;
|
|
1444
|
+
readonly FormatConditions: FormatConditions;
|
|
1445
|
+
Value: any;
|
|
1446
|
+
EventProcPrefix: string;
|
|
1447
|
+
_Name: string;
|
|
1448
|
+
ControlType: number;
|
|
1449
|
+
ControlSource: string;
|
|
1450
|
+
Format: string;
|
|
1451
|
+
DecimalPlaces: number;
|
|
1452
|
+
InputMask: string;
|
|
1453
|
+
RowSourceType: string;
|
|
1454
|
+
RowSource: string;
|
|
1455
|
+
ColumnCount: number;
|
|
1456
|
+
ColumnHeads: boolean;
|
|
1457
|
+
ColumnWidths: string;
|
|
1458
|
+
BoundColumn: number;
|
|
1459
|
+
ListRows: number;
|
|
1460
|
+
ListWidth: string;
|
|
1461
|
+
StatusBarText: string;
|
|
1462
|
+
LimitToList: boolean;
|
|
1463
|
+
AutoExpand: boolean;
|
|
1464
|
+
DefaultValue: string;
|
|
1465
|
+
IMEHold: boolean;
|
|
1466
|
+
ValidationRule: string;
|
|
1467
|
+
ValidationText: string;
|
|
1468
|
+
Visible: boolean;
|
|
1469
|
+
DisplayWhen: number;
|
|
1470
|
+
Enabled: boolean;
|
|
1471
|
+
Locked: boolean;
|
|
1472
|
+
AllowAutoCorrect: boolean;
|
|
1473
|
+
TabStop: boolean;
|
|
1474
|
+
TabIndex: number;
|
|
1475
|
+
HideDuplicates: boolean;
|
|
1476
|
+
Left: number;
|
|
1477
|
+
Top: number;
|
|
1478
|
+
Width: number;
|
|
1479
|
+
Height: number;
|
|
1480
|
+
BackStyle: number;
|
|
1481
|
+
BackColor: number;
|
|
1482
|
+
SpecialEffect: number;
|
|
1483
|
+
BorderStyle: number;
|
|
1484
|
+
OldBorderStyle: number;
|
|
1485
|
+
BorderColor: number;
|
|
1486
|
+
BorderWidth: number;
|
|
1487
|
+
BorderLineStyle: number;
|
|
1488
|
+
ForeColor: number;
|
|
1489
|
+
FontName: string;
|
|
1490
|
+
FontSize: number;
|
|
1491
|
+
FontWeight: number;
|
|
1492
|
+
FontItalic: boolean;
|
|
1493
|
+
FontUnderline: boolean;
|
|
1494
|
+
TextFontCharSet: number;
|
|
1495
|
+
TextAlign: number;
|
|
1496
|
+
FontBold: number;
|
|
1497
|
+
ShortcutMenuBar: string;
|
|
1498
|
+
ControlTipText: string;
|
|
1499
|
+
HelpContextId: number;
|
|
1500
|
+
ColumnWidth: number;
|
|
1501
|
+
ColumnOrder: number;
|
|
1502
|
+
ColumnHidden: boolean;
|
|
1503
|
+
AutoLabel: boolean;
|
|
1504
|
+
AddColon: boolean;
|
|
1505
|
+
LabelX: number;
|
|
1506
|
+
LabelY: number;
|
|
1507
|
+
LabelAlign: number;
|
|
1508
|
+
Section: number;
|
|
1509
|
+
ControlName: string;
|
|
1510
|
+
Tag: string;
|
|
1511
|
+
Text: string;
|
|
1512
|
+
SelText: string;
|
|
1513
|
+
SelStart: number;
|
|
1514
|
+
SelLength: number;
|
|
1515
|
+
TextAlignGeneral: number;
|
|
1516
|
+
FormatPictureText: string;
|
|
1517
|
+
Coltyp: number;
|
|
1518
|
+
ListCount: number;
|
|
1519
|
+
ListIndex: number;
|
|
1520
|
+
IsVisible: boolean;
|
|
1521
|
+
InSelection: boolean;
|
|
1522
|
+
BeforeUpdate: string;
|
|
1523
|
+
AfterUpdate: string;
|
|
1524
|
+
OnChange: string;
|
|
1525
|
+
OnNotInList: string;
|
|
1526
|
+
OnEnter: string;
|
|
1527
|
+
OnExit: string;
|
|
1528
|
+
OnGotFocus: string;
|
|
1529
|
+
OnLostFocus: string;
|
|
1530
|
+
OnClick: string;
|
|
1531
|
+
OnDblClick: string;
|
|
1532
|
+
OnMouseDown: string;
|
|
1533
|
+
OnMouseMove: string;
|
|
1534
|
+
OnMouseUp: string;
|
|
1535
|
+
OnKeyDown: string;
|
|
1536
|
+
OnKeyUp: string;
|
|
1537
|
+
OnKeyPress: string;
|
|
1538
|
+
ReadingOrder: number;
|
|
1539
|
+
KeyboardLanguage: number;
|
|
1540
|
+
AllowedText: number;
|
|
1541
|
+
ScrollBarAlign: number;
|
|
1542
|
+
NumeralShapes: number;
|
|
1543
|
+
IMEMode: AcImeMode;
|
|
1544
|
+
Name: string;
|
|
1545
|
+
IMESentenceMode: AcImeSentenceMode;
|
|
1546
|
+
IsHyperlink: boolean;
|
|
1547
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
1548
|
+
OnDirty: string;
|
|
1549
|
+
OnUndo: string;
|
|
1550
|
+
readonly Recordset: object | any;
|
|
1551
|
+
AddItem(Item: string, Index?: any): void;
|
|
1552
|
+
RemoveItem(Index: any): void;
|
|
1553
|
+
readonly SmartTags: SmartTags;
|
|
1554
|
+
IsMemberSafe(dispid: number): boolean;
|
|
1555
|
+
readonly Layout: AcLayoutType;
|
|
1556
|
+
LeftPadding: number;
|
|
1557
|
+
TopPadding: number;
|
|
1558
|
+
RightPadding: number;
|
|
1559
|
+
BottomPadding: number;
|
|
1560
|
+
GridlineStyleLeft: number;
|
|
1561
|
+
GridlineStyleTop: number;
|
|
1562
|
+
GridlineStyleRight: number;
|
|
1563
|
+
GridlineStyleBottom: number;
|
|
1564
|
+
GridlineWidthLeft: number;
|
|
1565
|
+
GridlineWidthTop: number;
|
|
1566
|
+
GridlineWidthRight: number;
|
|
1567
|
+
GridlineWidthBottom: number;
|
|
1568
|
+
GridlineColor: number;
|
|
1569
|
+
Selected(lRow: number, pRet?: number): void;
|
|
1570
|
+
readonly ItemsSelected: temsSelected;
|
|
1571
|
+
CanGrow: boolean;
|
|
1572
|
+
CanShrink: boolean;
|
|
1573
|
+
SeparatorCharacters: AcSeparatorCharacters;
|
|
1574
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
1575
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
1576
|
+
BeforeUpdateMacro: string;
|
|
1577
|
+
AfterUpdateMacro: string;
|
|
1578
|
+
OnChangeMacro: string;
|
|
1579
|
+
OnNotInListMacro: string;
|
|
1580
|
+
OnEnterMacro: string;
|
|
1581
|
+
OnExitMacro: string;
|
|
1582
|
+
OnGotFocusMacro: string;
|
|
1583
|
+
OnLostFocusMacro: string;
|
|
1584
|
+
OnClickMacro: string;
|
|
1585
|
+
OnDblClickMacro: string;
|
|
1586
|
+
OnMouseDownMacro: string;
|
|
1587
|
+
OnMouseMoveMacro: string;
|
|
1588
|
+
OnMouseUpMacro: string;
|
|
1589
|
+
OnKeyDownMacro: string;
|
|
1590
|
+
OnKeyUpMacro: string;
|
|
1591
|
+
OnKeyPressMacro: string;
|
|
1592
|
+
AllowValueListEdits: boolean;
|
|
1593
|
+
ListItemsEditForm: string;
|
|
1594
|
+
InheritValueList: boolean;
|
|
1595
|
+
LeftMargin: number;
|
|
1596
|
+
TopMargin: number;
|
|
1597
|
+
RightMargin: number;
|
|
1598
|
+
BottomMargin: number;
|
|
1599
|
+
readonly LayoutID: number;
|
|
1600
|
+
ShowOnlyRowSourceValues: boolean;
|
|
1601
|
+
DisplayAsHyperlink: AcDisplayAsHyperlink;
|
|
1602
|
+
Target: string;
|
|
1603
|
+
BackThemeColorIndex: number;
|
|
1604
|
+
BackTint: number;
|
|
1605
|
+
BackShade: number;
|
|
1606
|
+
BorderThemeColorIndex: number;
|
|
1607
|
+
BorderTint: number;
|
|
1608
|
+
BorderShade: number;
|
|
1609
|
+
ForeThemeColorIndex: number;
|
|
1610
|
+
ForeTint: number;
|
|
1611
|
+
ForeShade: number;
|
|
1612
|
+
ThemeFontIndex: number;
|
|
1613
|
+
GridlineThemeColorIndex: number;
|
|
1614
|
+
GridlineTint: number;
|
|
1615
|
+
GridlineShade: number;
|
|
1616
|
+
}
|
|
1617
|
+
interface ObjectFrame{
|
|
1618
|
+
readonly Application: Application;
|
|
1619
|
+
readonly Parent: object | any;
|
|
1620
|
+
readonly OldValue: any;
|
|
1621
|
+
readonly Object: object | any;
|
|
1622
|
+
ObjectVerbs(Index: number): string;
|
|
1623
|
+
readonly Properties: Properties;
|
|
1624
|
+
SizeToFit(): void;
|
|
1625
|
+
Requery(): void;
|
|
1626
|
+
Goto(): void;
|
|
1627
|
+
SetFocus(): void;
|
|
1628
|
+
readonly Controls: Children;
|
|
1629
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
1630
|
+
EventProcPrefix: string;
|
|
1631
|
+
_Name: string;
|
|
1632
|
+
ControlType: number;
|
|
1633
|
+
SizeMode: number;
|
|
1634
|
+
OLEClass: string;
|
|
1635
|
+
Item: string;
|
|
1636
|
+
RowSourceType: string;
|
|
1637
|
+
RowSource: string;
|
|
1638
|
+
LinkChildFields: string;
|
|
1639
|
+
LinkMasterFields: string;
|
|
1640
|
+
AutoActivate: number;
|
|
1641
|
+
DisplayType: boolean;
|
|
1642
|
+
UpdateOptions: number;
|
|
1643
|
+
Verb: number;
|
|
1644
|
+
OLEType: number;
|
|
1645
|
+
OLETypeAllowed: number;
|
|
1646
|
+
SourceObject: string;
|
|
1647
|
+
Class: string;
|
|
1648
|
+
SourceDoc: string;
|
|
1649
|
+
SourceItem: string;
|
|
1650
|
+
ColumnCount: number;
|
|
1651
|
+
ColumnHeads: boolean;
|
|
1652
|
+
Visible: boolean;
|
|
1653
|
+
DisplayWhen: number;
|
|
1654
|
+
OleData: any;
|
|
1655
|
+
UpdateMethod: number;
|
|
1656
|
+
Enabled: boolean;
|
|
1657
|
+
Locked: boolean;
|
|
1658
|
+
StatusBarText: string;
|
|
1659
|
+
TabStop: boolean;
|
|
1660
|
+
TabIndex: number;
|
|
1661
|
+
Left: number;
|
|
1662
|
+
Top: number;
|
|
1663
|
+
Width: number;
|
|
1664
|
+
Height: number;
|
|
1665
|
+
BackStyle: number;
|
|
1666
|
+
BackColor: number;
|
|
1667
|
+
SpecialEffect: number;
|
|
1668
|
+
BorderStyle: number;
|
|
1669
|
+
OldBorderStyle: number;
|
|
1670
|
+
BorderColor: number;
|
|
1671
|
+
BorderWidth: number;
|
|
1672
|
+
BorderLineStyle: number;
|
|
1673
|
+
ShortcutMenuBar: string;
|
|
1674
|
+
ControlTipText: string;
|
|
1675
|
+
HelpContextId: number;
|
|
1676
|
+
Data: number;
|
|
1677
|
+
Section: number;
|
|
1678
|
+
ControlName: string;
|
|
1679
|
+
Tag: string;
|
|
1680
|
+
ObjectPalette: any;
|
|
1681
|
+
LpOleObject: number;
|
|
1682
|
+
ObjectVerbsCount: number;
|
|
1683
|
+
Action: number;
|
|
1684
|
+
Scaling: number;
|
|
1685
|
+
IsVisible: boolean;
|
|
1686
|
+
InSelection: boolean;
|
|
1687
|
+
OnUpdated: string;
|
|
1688
|
+
OnEnter: string;
|
|
1689
|
+
OnExit: string;
|
|
1690
|
+
OnGotFocus: string;
|
|
1691
|
+
OnLostFocus: string;
|
|
1692
|
+
OnClick: string;
|
|
1693
|
+
OnDblClick: string;
|
|
1694
|
+
OnMouseDown: string;
|
|
1695
|
+
OnMouseMove: string;
|
|
1696
|
+
OnMouseUp: string;
|
|
1697
|
+
Name: string;
|
|
1698
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
1699
|
+
IsMemberSafe(dispid: number): boolean;
|
|
1700
|
+
BeforeUpdateMacro: string;
|
|
1701
|
+
AfterUpdateMacro: string;
|
|
1702
|
+
OnEnterMacro: string;
|
|
1703
|
+
OnExitMacro: string;
|
|
1704
|
+
OnGotFocusMacro: string;
|
|
1705
|
+
OnLostFocusMacro: string;
|
|
1706
|
+
OnClickMacro: string;
|
|
1707
|
+
OnDblClickMacro: string;
|
|
1708
|
+
OnMouseDownMacro: string;
|
|
1709
|
+
OnMouseMoveMacro: string;
|
|
1710
|
+
OnMouseUpMacro: string;
|
|
1711
|
+
readonly Layout: AcLayoutType;
|
|
1712
|
+
LeftPadding: number;
|
|
1713
|
+
TopPadding: number;
|
|
1714
|
+
RightPadding: number;
|
|
1715
|
+
BottomPadding: number;
|
|
1716
|
+
GridlineStyleLeft: number;
|
|
1717
|
+
GridlineStyleTop: number;
|
|
1718
|
+
GridlineStyleRight: number;
|
|
1719
|
+
GridlineStyleBottom: number;
|
|
1720
|
+
GridlineWidthLeft: number;
|
|
1721
|
+
GridlineWidthTop: number;
|
|
1722
|
+
GridlineWidthRight: number;
|
|
1723
|
+
GridlineWidthBottom: number;
|
|
1724
|
+
GridlineColor: number;
|
|
1725
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
1726
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
1727
|
+
readonly LayoutID: number;
|
|
1728
|
+
BackThemeColorIndex: number;
|
|
1729
|
+
BackTint: number;
|
|
1730
|
+
BackShade: number;
|
|
1731
|
+
BorderThemeColorIndex: number;
|
|
1732
|
+
BorderTint: number;
|
|
1733
|
+
BorderShade: number;
|
|
1734
|
+
GridlineThemeColorIndex: number;
|
|
1735
|
+
GridlineTint: number;
|
|
1736
|
+
GridlineShade: number;
|
|
1737
|
+
VarOleObject: any;
|
|
1738
|
+
}
|
|
1739
|
+
interface PageBreak{
|
|
1740
|
+
readonly Application: Application;
|
|
1741
|
+
readonly Parent: object | any;
|
|
1742
|
+
readonly Properties: Properties;
|
|
1743
|
+
SizeToFit(): void;
|
|
1744
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
1745
|
+
EventProcPrefix: string;
|
|
1746
|
+
_Name: string;
|
|
1747
|
+
ControlType: number;
|
|
1748
|
+
Left: number;
|
|
1749
|
+
Top: number;
|
|
1750
|
+
Tag: string;
|
|
1751
|
+
Section: number;
|
|
1752
|
+
Visible: boolean;
|
|
1753
|
+
IsVisible: boolean;
|
|
1754
|
+
InSelection: boolean;
|
|
1755
|
+
ControlName: string;
|
|
1756
|
+
Name: string;
|
|
1757
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
1758
|
+
IsMemberSafe(dispid: number): boolean;
|
|
1759
|
+
}
|
|
1760
|
+
interface ToggleButton{
|
|
1761
|
+
readonly Application: Application;
|
|
1762
|
+
readonly Parent: object | any;
|
|
1763
|
+
Undo(): void;
|
|
1764
|
+
readonly OldValue: any;
|
|
1765
|
+
readonly Properties: Properties;
|
|
1766
|
+
SizeToFit(): void;
|
|
1767
|
+
Requery(): void;
|
|
1768
|
+
Goto(): void;
|
|
1769
|
+
SetFocus(): void;
|
|
1770
|
+
readonly Controls: Children;
|
|
1771
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
1772
|
+
Value: any;
|
|
1773
|
+
EventProcPrefix: string;
|
|
1774
|
+
_Name: string;
|
|
1775
|
+
ControlType: number;
|
|
1776
|
+
ControlSource: string;
|
|
1777
|
+
Caption: string;
|
|
1778
|
+
Picture: string;
|
|
1779
|
+
PictureType: number;
|
|
1780
|
+
PictureData: any;
|
|
1781
|
+
OptionValue: number;
|
|
1782
|
+
DefaultValue: string;
|
|
1783
|
+
ValidationRule: string;
|
|
1784
|
+
ValidationText: string;
|
|
1785
|
+
StatusBarText: string;
|
|
1786
|
+
Visible: boolean;
|
|
1787
|
+
DisplayWhen: number;
|
|
1788
|
+
Enabled: boolean;
|
|
1789
|
+
Locked: boolean;
|
|
1790
|
+
TripleState: boolean;
|
|
1791
|
+
TabStop: boolean;
|
|
1792
|
+
TabIndex: number;
|
|
1793
|
+
HideDuplicates: boolean;
|
|
1794
|
+
Left: number;
|
|
1795
|
+
Top: number;
|
|
1796
|
+
Width: number;
|
|
1797
|
+
Height: number;
|
|
1798
|
+
ForeColor: number;
|
|
1799
|
+
FontName: string;
|
|
1800
|
+
FontSize: number;
|
|
1801
|
+
FontWeight: number;
|
|
1802
|
+
FontItalic: boolean;
|
|
1803
|
+
FontUnderline: boolean;
|
|
1804
|
+
TextFontCharSet: number;
|
|
1805
|
+
FontBold: number;
|
|
1806
|
+
ShortcutMenuBar: string;
|
|
1807
|
+
ControlTipText: string;
|
|
1808
|
+
HelpContextId: number;
|
|
1809
|
+
ColumnWidth: number;
|
|
1810
|
+
ColumnOrder: number;
|
|
1811
|
+
ColumnHidden: boolean;
|
|
1812
|
+
AutoLabel: boolean;
|
|
1813
|
+
AddColon: boolean;
|
|
1814
|
+
LabelX: number;
|
|
1815
|
+
LabelY: number;
|
|
1816
|
+
LabelAlign: number;
|
|
1817
|
+
Section: number;
|
|
1818
|
+
ControlName: string;
|
|
1819
|
+
Tag: string;
|
|
1820
|
+
ObjectPalette: any;
|
|
1821
|
+
IsVisible: boolean;
|
|
1822
|
+
InSelection: boolean;
|
|
1823
|
+
BeforeUpdate: string;
|
|
1824
|
+
AfterUpdate: string;
|
|
1825
|
+
OnEnter: string;
|
|
1826
|
+
OnExit: string;
|
|
1827
|
+
OnGotFocus: string;
|
|
1828
|
+
OnLostFocus: string;
|
|
1829
|
+
OnClick: string;
|
|
1830
|
+
OnDblClick: string;
|
|
1831
|
+
OnMouseDown: string;
|
|
1832
|
+
OnMouseMove: string;
|
|
1833
|
+
OnMouseUp: string;
|
|
1834
|
+
OnKeyDown: string;
|
|
1835
|
+
OnKeyUp: string;
|
|
1836
|
+
OnKeyPress: string;
|
|
1837
|
+
ReadingOrder: number;
|
|
1838
|
+
Name: string;
|
|
1839
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
1840
|
+
IsMemberSafe(dispid: number): boolean;
|
|
1841
|
+
BeforeUpdateMacro: string;
|
|
1842
|
+
AfterUpdateMacro: string;
|
|
1843
|
+
OnEnterMacro: string;
|
|
1844
|
+
OnExitMacro: string;
|
|
1845
|
+
OnGotFocusMacro: string;
|
|
1846
|
+
OnLostFocusMacro: string;
|
|
1847
|
+
OnClickMacro: string;
|
|
1848
|
+
OnDblClickMacro: string;
|
|
1849
|
+
OnMouseDownMacro: string;
|
|
1850
|
+
OnMouseMoveMacro: string;
|
|
1851
|
+
OnMouseUpMacro: string;
|
|
1852
|
+
OnKeyDownMacro: string;
|
|
1853
|
+
OnKeyUpMacro: string;
|
|
1854
|
+
OnKeyPressMacro: string;
|
|
1855
|
+
readonly Layout: AcLayoutType;
|
|
1856
|
+
LeftPadding: number;
|
|
1857
|
+
TopPadding: number;
|
|
1858
|
+
RightPadding: number;
|
|
1859
|
+
BottomPadding: number;
|
|
1860
|
+
GridlineStyleLeft: number;
|
|
1861
|
+
GridlineStyleTop: number;
|
|
1862
|
+
GridlineStyleRight: number;
|
|
1863
|
+
GridlineStyleBottom: number;
|
|
1864
|
+
GridlineWidthLeft: number;
|
|
1865
|
+
GridlineWidthTop: number;
|
|
1866
|
+
GridlineWidthRight: number;
|
|
1867
|
+
GridlineWidthBottom: number;
|
|
1868
|
+
GridlineColor: number;
|
|
1869
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
1870
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
1871
|
+
readonly LayoutID: number;
|
|
1872
|
+
ForeThemeColorIndex: number;
|
|
1873
|
+
ForeTint: number;
|
|
1874
|
+
ForeShade: number;
|
|
1875
|
+
ThemeFontIndex: number;
|
|
1876
|
+
BackColor: number;
|
|
1877
|
+
BackThemeColorIndex: number;
|
|
1878
|
+
BackTint: number;
|
|
1879
|
+
BackShade: number;
|
|
1880
|
+
BorderColor: number;
|
|
1881
|
+
BorderThemeColorIndex: number;
|
|
1882
|
+
BorderTint: number;
|
|
1883
|
+
BorderShade: number;
|
|
1884
|
+
BorderWidth: number;
|
|
1885
|
+
BorderStyle: number;
|
|
1886
|
+
HoverColor: number;
|
|
1887
|
+
HoverThemeColorIndex: number;
|
|
1888
|
+
HoverTint: number;
|
|
1889
|
+
HoverShade: number;
|
|
1890
|
+
HoverForeColor: number;
|
|
1891
|
+
HoverForeThemeColorIndex: number;
|
|
1892
|
+
HoverForeTint: number;
|
|
1893
|
+
HoverForeShade: number;
|
|
1894
|
+
PressedColor: number;
|
|
1895
|
+
PressedThemeColorIndex: number;
|
|
1896
|
+
PressedTint: number;
|
|
1897
|
+
PressedShade: number;
|
|
1898
|
+
PressedForeColor: number;
|
|
1899
|
+
PressedForeThemeColorIndex: number;
|
|
1900
|
+
PressedForeTint: number;
|
|
1901
|
+
PressedForeShade: number;
|
|
1902
|
+
UseTheme: boolean;
|
|
1903
|
+
Shape: number;
|
|
1904
|
+
Bevel: number;
|
|
1905
|
+
Glow: number;
|
|
1906
|
+
Shadow: number;
|
|
1907
|
+
SoftEdges: number;
|
|
1908
|
+
GridlineThemeColorIndex: number;
|
|
1909
|
+
GridlineTint: number;
|
|
1910
|
+
GridlineShade: number;
|
|
1911
|
+
QuickStyle: number;
|
|
1912
|
+
QuickStyleMask: number;
|
|
1913
|
+
Gradient: number;
|
|
1914
|
+
}
|
|
1915
|
+
interface PaletteButton{
|
|
1916
|
+
readonly Application: Application;
|
|
1917
|
+
readonly Parent: object | any;
|
|
1918
|
+
readonly OldValue: any;
|
|
1919
|
+
readonly Properties: Properties;
|
|
1920
|
+
SizeToFit(): void;
|
|
1921
|
+
Requery(): void;
|
|
1922
|
+
Goto(): void;
|
|
1923
|
+
SetFocus(): void;
|
|
1924
|
+
readonly Controls: Children;
|
|
1925
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
1926
|
+
Value: any;
|
|
1927
|
+
EventProcPrefix: string;
|
|
1928
|
+
_Name: string;
|
|
1929
|
+
ControlType: number;
|
|
1930
|
+
OptionValue: number;
|
|
1931
|
+
ControlSource: string;
|
|
1932
|
+
DefaultValue: string;
|
|
1933
|
+
ValidationRule: string;
|
|
1934
|
+
ValidationText: string;
|
|
1935
|
+
StatusBarText: string;
|
|
1936
|
+
Visible: boolean;
|
|
1937
|
+
DisplayWhen: number;
|
|
1938
|
+
Enabled: boolean;
|
|
1939
|
+
Locked: boolean;
|
|
1940
|
+
TripleState: boolean;
|
|
1941
|
+
TabStop: boolean;
|
|
1942
|
+
TabIndex: number;
|
|
1943
|
+
HideDuplicates: boolean;
|
|
1944
|
+
Left: number;
|
|
1945
|
+
Top: number;
|
|
1946
|
+
Width: number;
|
|
1947
|
+
Height: number;
|
|
1948
|
+
BackStyle: number;
|
|
1949
|
+
BackColor: number;
|
|
1950
|
+
ShortcutMenuBar: string;
|
|
1951
|
+
ControlTipText: string;
|
|
1952
|
+
HelpContextId: number;
|
|
1953
|
+
ColumnWidth: number;
|
|
1954
|
+
ColumnOrder: number;
|
|
1955
|
+
ColumnHidden: boolean;
|
|
1956
|
+
AutoLabel: boolean;
|
|
1957
|
+
AddColon: boolean;
|
|
1958
|
+
LabelX: number;
|
|
1959
|
+
LabelY: number;
|
|
1960
|
+
LabelAlign: number;
|
|
1961
|
+
Section: number;
|
|
1962
|
+
ControlName: string;
|
|
1963
|
+
Tag: string;
|
|
1964
|
+
IsVisible: boolean;
|
|
1965
|
+
InSelection: boolean;
|
|
1966
|
+
BeforeUpdate: string;
|
|
1967
|
+
AfterUpdate: string;
|
|
1968
|
+
OnEnter: string;
|
|
1969
|
+
OnExit: string;
|
|
1970
|
+
OnGotFocus: string;
|
|
1971
|
+
OnLostFocus: string;
|
|
1972
|
+
OnClick: string;
|
|
1973
|
+
OnDblClick: string;
|
|
1974
|
+
OnMouseDown: string;
|
|
1975
|
+
OnMouseMove: string;
|
|
1976
|
+
OnMouseUp: string;
|
|
1977
|
+
OnKeyDown: string;
|
|
1978
|
+
OnKeyUp: string;
|
|
1979
|
+
OnKeyPress: string;
|
|
1980
|
+
Name: string;
|
|
1981
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
1982
|
+
IsMemberSafe(dispid: number): boolean;
|
|
1983
|
+
BeforeUpdateMacro: string;
|
|
1984
|
+
AfterUpdateMacro: string;
|
|
1985
|
+
OnEnterMacro: string;
|
|
1986
|
+
OnExitMacro: string;
|
|
1987
|
+
OnGotFocusMacro: string;
|
|
1988
|
+
OnLostFocusMacro: string;
|
|
1989
|
+
OnClickMacro: string;
|
|
1990
|
+
OnDblClickMacro: string;
|
|
1991
|
+
OnMouseDownMacro: string;
|
|
1992
|
+
OnMouseMoveMacro: string;
|
|
1993
|
+
OnMouseUpMacro: string;
|
|
1994
|
+
OnKeyDownMacro: string;
|
|
1995
|
+
OnKeyUpMacro: string;
|
|
1996
|
+
OnKeyPressMacro: string;
|
|
1997
|
+
}
|
|
1998
|
+
interface SubForm{
|
|
1999
|
+
readonly Application: Application;
|
|
2000
|
+
readonly Parent: object | any;
|
|
2001
|
+
readonly Form: Form3;
|
|
2002
|
+
readonly Report: Report3;
|
|
2003
|
+
readonly Properties: Properties;
|
|
2004
|
+
SizeToFit(): void;
|
|
2005
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
2006
|
+
Goto(): void;
|
|
2007
|
+
SetFocus(): void;
|
|
2008
|
+
Requery(): void;
|
|
2009
|
+
readonly Controls: Controls;
|
|
2010
|
+
EventProcPrefix: string;
|
|
2011
|
+
_Name: string;
|
|
2012
|
+
ControlType: number;
|
|
2013
|
+
SourceObject: string;
|
|
2014
|
+
LinkChildFields: string;
|
|
2015
|
+
LinkMasterFields: string;
|
|
2016
|
+
StatusBarText: string;
|
|
2017
|
+
Visible: boolean;
|
|
2018
|
+
DisplayWhen: number;
|
|
2019
|
+
Enabled: boolean;
|
|
2020
|
+
Locked: boolean;
|
|
2021
|
+
TabStop: boolean;
|
|
2022
|
+
TabIndex: number;
|
|
2023
|
+
CanGrow: boolean;
|
|
2024
|
+
CanShrink: boolean;
|
|
2025
|
+
Left: number;
|
|
2026
|
+
Top: number;
|
|
2027
|
+
Width: number;
|
|
2028
|
+
Height: number;
|
|
2029
|
+
SpecialEffect: number;
|
|
2030
|
+
BorderStyle: number;
|
|
2031
|
+
OldBorderStyle: number;
|
|
2032
|
+
BorderWidth: number;
|
|
2033
|
+
BorderLineStyle: number;
|
|
2034
|
+
BorderColor: number;
|
|
2035
|
+
AutoLabel: boolean;
|
|
2036
|
+
AddColon: boolean;
|
|
2037
|
+
LabelX: number;
|
|
2038
|
+
LabelY: number;
|
|
2039
|
+
LabelAlign: number;
|
|
2040
|
+
Section: number;
|
|
2041
|
+
ControlName: string;
|
|
2042
|
+
Tag: string;
|
|
2043
|
+
IsVisible: boolean;
|
|
2044
|
+
InSelection: boolean;
|
|
2045
|
+
OnEnter: string;
|
|
2046
|
+
OnExit: string;
|
|
2047
|
+
Name: string;
|
|
2048
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
2049
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2050
|
+
OnEnterMacro: string;
|
|
2051
|
+
OnExitMacro: string;
|
|
2052
|
+
readonly Layout: AcLayoutType;
|
|
2053
|
+
LeftPadding: number;
|
|
2054
|
+
TopPadding: number;
|
|
2055
|
+
RightPadding: number;
|
|
2056
|
+
BottomPadding: number;
|
|
2057
|
+
GridlineStyleLeft: number;
|
|
2058
|
+
GridlineStyleTop: number;
|
|
2059
|
+
GridlineStyleRight: number;
|
|
2060
|
+
GridlineStyleBottom: number;
|
|
2061
|
+
GridlineWidthLeft: number;
|
|
2062
|
+
GridlineWidthTop: number;
|
|
2063
|
+
GridlineWidthRight: number;
|
|
2064
|
+
GridlineWidthBottom: number;
|
|
2065
|
+
GridlineColor: number;
|
|
2066
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
2067
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
2068
|
+
FilterOnEmptyMaster: boolean;
|
|
2069
|
+
readonly LayoutID: number;
|
|
2070
|
+
BorderThemeColorIndex: number;
|
|
2071
|
+
BorderTint: number;
|
|
2072
|
+
BorderShade: number;
|
|
2073
|
+
GridlineThemeColorIndex: number;
|
|
2074
|
+
GridlineTint: number;
|
|
2075
|
+
GridlineShade: number;
|
|
2076
|
+
}
|
|
2077
|
+
interface SubReport{
|
|
2078
|
+
readonly Application: Application;
|
|
2079
|
+
readonly Parent: object | any;
|
|
2080
|
+
readonly Form: Form3;
|
|
2081
|
+
readonly Report: Report3;
|
|
2082
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2083
|
+
}
|
|
2084
|
+
interface CustomControl{
|
|
2085
|
+
readonly Application: Application;
|
|
2086
|
+
readonly Parent: object | any;
|
|
2087
|
+
readonly OldValue: any;
|
|
2088
|
+
readonly Object: object | any;
|
|
2089
|
+
ObjectVerbs(Index: number): string;
|
|
2090
|
+
readonly Properties: Properties;
|
|
2091
|
+
SizeToFit(): void;
|
|
2092
|
+
Requery(): void;
|
|
2093
|
+
Goto(): void;
|
|
2094
|
+
SetFocus(): void;
|
|
2095
|
+
readonly Controls: Children;
|
|
2096
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
2097
|
+
Value: any;
|
|
2098
|
+
EventProcPrefix: string;
|
|
2099
|
+
_Name: string;
|
|
2100
|
+
ControlType: number;
|
|
2101
|
+
ControlSource: string;
|
|
2102
|
+
OLEClass: string;
|
|
2103
|
+
Verb: number;
|
|
2104
|
+
Class: string;
|
|
2105
|
+
Visible: boolean;
|
|
2106
|
+
DisplayWhen: number;
|
|
2107
|
+
Enabled: boolean;
|
|
2108
|
+
Locked: boolean;
|
|
2109
|
+
OleData: any;
|
|
2110
|
+
TabStop: boolean;
|
|
2111
|
+
TabIndex: number;
|
|
2112
|
+
Left: number;
|
|
2113
|
+
Top: number;
|
|
2114
|
+
Width: number;
|
|
2115
|
+
Height: number;
|
|
2116
|
+
SpecialEffect: number;
|
|
2117
|
+
BorderStyle: number;
|
|
2118
|
+
OldBorderStyle: number;
|
|
2119
|
+
BorderColor: number;
|
|
2120
|
+
BorderWidth: number;
|
|
2121
|
+
BorderLineStyle: number;
|
|
2122
|
+
ControlTipText: string;
|
|
2123
|
+
HelpContextId: number;
|
|
2124
|
+
Section: number;
|
|
2125
|
+
ControlName: string;
|
|
2126
|
+
Tag: string;
|
|
2127
|
+
ObjectPalette: any;
|
|
2128
|
+
LpOleObject: number;
|
|
2129
|
+
ObjectVerbsCount: number;
|
|
2130
|
+
IsVisible: boolean;
|
|
2131
|
+
InSelection: boolean;
|
|
2132
|
+
OnUpdated: string;
|
|
2133
|
+
OnEnter: string;
|
|
2134
|
+
OnExit: string;
|
|
2135
|
+
OnGotFocus: string;
|
|
2136
|
+
OnLostFocus: string;
|
|
2137
|
+
Default: boolean;
|
|
2138
|
+
Cancel: boolean;
|
|
2139
|
+
Custom: string;
|
|
2140
|
+
About: string;
|
|
2141
|
+
Name: string;
|
|
2142
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
2143
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2144
|
+
OnUpdatedMacro: string;
|
|
2145
|
+
OnEnterMacro: string;
|
|
2146
|
+
OnExitMacro: string;
|
|
2147
|
+
OnGotFocusMacro: string;
|
|
2148
|
+
OnLostFocusMacro: string;
|
|
2149
|
+
BorderThemeColorIndex: number;
|
|
2150
|
+
BorderTint: number;
|
|
2151
|
+
BorderShade: number;
|
|
2152
|
+
readonly Layout: AcLayoutType;
|
|
2153
|
+
LeftPadding: number;
|
|
2154
|
+
TopPadding: number;
|
|
2155
|
+
RightPadding: number;
|
|
2156
|
+
BottomPadding: number;
|
|
2157
|
+
GridlineStyleLeft: number;
|
|
2158
|
+
GridlineStyleTop: number;
|
|
2159
|
+
GridlineStyleRight: number;
|
|
2160
|
+
GridlineStyleBottom: number;
|
|
2161
|
+
GridlineWidthLeft: number;
|
|
2162
|
+
GridlineWidthTop: number;
|
|
2163
|
+
GridlineWidthRight: number;
|
|
2164
|
+
GridlineWidthBottom: number;
|
|
2165
|
+
GridlineColor: number;
|
|
2166
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
2167
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
2168
|
+
readonly LayoutID: number;
|
|
2169
|
+
VarOleObject: any;
|
|
2170
|
+
}
|
|
2171
|
+
interface TabControl{
|
|
2172
|
+
readonly Application: Application;
|
|
2173
|
+
readonly Parent: object | any;
|
|
2174
|
+
readonly OldValue: any;
|
|
2175
|
+
readonly Properties: Properties;
|
|
2176
|
+
SizeToFit(): void;
|
|
2177
|
+
readonly Pages: Pages;
|
|
2178
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
2179
|
+
Value: any;
|
|
2180
|
+
EventProcPrefix: string;
|
|
2181
|
+
_Name: string;
|
|
2182
|
+
ControlType: number;
|
|
2183
|
+
StatusBarText: string;
|
|
2184
|
+
Visible: boolean;
|
|
2185
|
+
DisplayWhen: number;
|
|
2186
|
+
Enabled: boolean;
|
|
2187
|
+
TabStop: boolean;
|
|
2188
|
+
TabIndex: number;
|
|
2189
|
+
Left: number;
|
|
2190
|
+
Top: number;
|
|
2191
|
+
Width: number;
|
|
2192
|
+
Height: number;
|
|
2193
|
+
BackStyle: number;
|
|
2194
|
+
MultiRow: boolean;
|
|
2195
|
+
Style: number;
|
|
2196
|
+
TabFixedHeight: number;
|
|
2197
|
+
TabFixedWidth: number;
|
|
2198
|
+
FontName: string;
|
|
2199
|
+
FontSize: number;
|
|
2200
|
+
FontWeight: number;
|
|
2201
|
+
FontItalic: boolean;
|
|
2202
|
+
FontUnderline: boolean;
|
|
2203
|
+
TextFontCharSet: number;
|
|
2204
|
+
FontBold: number;
|
|
2205
|
+
ShortcutMenuBar: string;
|
|
2206
|
+
HelpContextId: number;
|
|
2207
|
+
Section: number;
|
|
2208
|
+
ControlName: string;
|
|
2209
|
+
Tag: string;
|
|
2210
|
+
IsVisible: boolean;
|
|
2211
|
+
InSelection: boolean;
|
|
2212
|
+
OnChange: string;
|
|
2213
|
+
OnClick: string;
|
|
2214
|
+
OnDblClick: string;
|
|
2215
|
+
OnMouseDown: string;
|
|
2216
|
+
OnMouseMove: string;
|
|
2217
|
+
OnMouseUp: string;
|
|
2218
|
+
OnKeyDown: string;
|
|
2219
|
+
OnKeyUp: string;
|
|
2220
|
+
OnKeyPress: string;
|
|
2221
|
+
Name: string;
|
|
2222
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
2223
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2224
|
+
OnChangeMacro: string;
|
|
2225
|
+
OnClickMacro: string;
|
|
2226
|
+
OnDblClickMacro: string;
|
|
2227
|
+
OnMouseDownMacro: string;
|
|
2228
|
+
OnMouseMoveMacro: string;
|
|
2229
|
+
OnMouseUpMacro: string;
|
|
2230
|
+
OnKeyDownMacro: string;
|
|
2231
|
+
OnKeyUpMacro: string;
|
|
2232
|
+
OnKeyPressMacro: string;
|
|
2233
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
2234
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
2235
|
+
readonly Layout: AcLayoutType;
|
|
2236
|
+
LeftPadding: number;
|
|
2237
|
+
TopPadding: number;
|
|
2238
|
+
RightPadding: number;
|
|
2239
|
+
BottomPadding: number;
|
|
2240
|
+
GridlineStyleLeft: number;
|
|
2241
|
+
GridlineStyleTop: number;
|
|
2242
|
+
GridlineStyleRight: number;
|
|
2243
|
+
GridlineStyleBottom: number;
|
|
2244
|
+
GridlineWidthLeft: number;
|
|
2245
|
+
GridlineWidthTop: number;
|
|
2246
|
+
GridlineWidthRight: number;
|
|
2247
|
+
GridlineWidthBottom: number;
|
|
2248
|
+
GridlineColor: number;
|
|
2249
|
+
readonly LayoutID: number;
|
|
2250
|
+
ThemeFontIndex: number;
|
|
2251
|
+
BackColor: number;
|
|
2252
|
+
BackThemeColorIndex: number;
|
|
2253
|
+
BackTint: number;
|
|
2254
|
+
BackShade: number;
|
|
2255
|
+
BorderColor: number;
|
|
2256
|
+
BorderThemeColorIndex: number;
|
|
2257
|
+
BorderTint: number;
|
|
2258
|
+
BorderShade: number;
|
|
2259
|
+
BorderStyle: number;
|
|
2260
|
+
HoverColor: number;
|
|
2261
|
+
HoverThemeColorIndex: number;
|
|
2262
|
+
HoverTint: number;
|
|
2263
|
+
HoverShade: number;
|
|
2264
|
+
HoverForeColor: number;
|
|
2265
|
+
HoverForeThemeColorIndex: number;
|
|
2266
|
+
HoverForeTint: number;
|
|
2267
|
+
HoverForeShade: number;
|
|
2268
|
+
PressedColor: number;
|
|
2269
|
+
PressedThemeColorIndex: number;
|
|
2270
|
+
PressedTint: number;
|
|
2271
|
+
PressedShade: number;
|
|
2272
|
+
PressedForeColor: number;
|
|
2273
|
+
PressedForeThemeColorIndex: number;
|
|
2274
|
+
PressedForeTint: number;
|
|
2275
|
+
PressedForeShade: number;
|
|
2276
|
+
UseTheme: boolean;
|
|
2277
|
+
Shape: number;
|
|
2278
|
+
GridlineThemeColorIndex: number;
|
|
2279
|
+
GridlineTint: number;
|
|
2280
|
+
GridlineShade: number;
|
|
2281
|
+
ForeColor: number;
|
|
2282
|
+
ForeThemeColorIndex: number;
|
|
2283
|
+
ForeTint: number;
|
|
2284
|
+
ForeShade: number;
|
|
2285
|
+
Gradient: number;
|
|
2286
|
+
}
|
|
2287
|
+
interface Page{
|
|
2288
|
+
readonly Application: Application;
|
|
2289
|
+
readonly Parent: object | any;
|
|
2290
|
+
readonly Properties: Properties;
|
|
2291
|
+
SizeToFit(): void;
|
|
2292
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
2293
|
+
Requery(): void;
|
|
2294
|
+
Goto(): void;
|
|
2295
|
+
SetFocus(): void;
|
|
2296
|
+
readonly Controls: Children;
|
|
2297
|
+
EventProcPrefix: string;
|
|
2298
|
+
_Name: string;
|
|
2299
|
+
ControlType: number;
|
|
2300
|
+
Caption: string;
|
|
2301
|
+
Picture: string;
|
|
2302
|
+
PictureType: number;
|
|
2303
|
+
PageIndex: number;
|
|
2304
|
+
StatusBarText: string;
|
|
2305
|
+
Visible: boolean;
|
|
2306
|
+
Enabled: boolean;
|
|
2307
|
+
Left: number;
|
|
2308
|
+
Top: number;
|
|
2309
|
+
Width: number;
|
|
2310
|
+
Height: number;
|
|
2311
|
+
ShortcutMenuBar: string;
|
|
2312
|
+
ControlTipText: string;
|
|
2313
|
+
HelpContextId: number;
|
|
2314
|
+
Section: number;
|
|
2315
|
+
ControlName: string;
|
|
2316
|
+
Tag: string;
|
|
2317
|
+
IsVisible: boolean;
|
|
2318
|
+
InSelection: boolean;
|
|
2319
|
+
OnClick: string;
|
|
2320
|
+
OnDblClick: string;
|
|
2321
|
+
OnMouseDown: string;
|
|
2322
|
+
OnMouseMove: string;
|
|
2323
|
+
OnMouseUp: string;
|
|
2324
|
+
PictureData: any;
|
|
2325
|
+
Name: string;
|
|
2326
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
2327
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2328
|
+
OnClickMacro: string;
|
|
2329
|
+
OnDblClickMacro: string;
|
|
2330
|
+
OnMouseDownMacro: string;
|
|
2331
|
+
OnMouseMoveMacro: string;
|
|
2332
|
+
OnMouseUpMacro: string;
|
|
2333
|
+
SetTabOrder(): void;
|
|
2334
|
+
}
|
|
2335
|
+
interface Section{
|
|
2336
|
+
readonly Application: Application;
|
|
2337
|
+
readonly Parent: object | any;
|
|
2338
|
+
readonly Properties: Properties;
|
|
2339
|
+
readonly Controls: Children;
|
|
2340
|
+
EventProcPrefix: string;
|
|
2341
|
+
_Name: string;
|
|
2342
|
+
ForceNewPage: number;
|
|
2343
|
+
NewRowOrCol: number;
|
|
2344
|
+
KeepTogether: boolean;
|
|
2345
|
+
Visible: boolean;
|
|
2346
|
+
DisplayWhen: number;
|
|
2347
|
+
CanGrow: boolean;
|
|
2348
|
+
CanShrink: boolean;
|
|
2349
|
+
RepeatSection: boolean;
|
|
2350
|
+
Height: number;
|
|
2351
|
+
BackColor: number;
|
|
2352
|
+
SpecialEffect: number;
|
|
2353
|
+
Tag: string;
|
|
2354
|
+
OnFormat: string;
|
|
2355
|
+
OnPrint: string;
|
|
2356
|
+
OnRetreat: string;
|
|
2357
|
+
OnClick: string;
|
|
2358
|
+
OnDblClick: string;
|
|
2359
|
+
OnMouseDown: string;
|
|
2360
|
+
OnMouseMove: string;
|
|
2361
|
+
OnMouseUp: string;
|
|
2362
|
+
HasContinued: boolean;
|
|
2363
|
+
WillContinue: boolean;
|
|
2364
|
+
InSelection: boolean;
|
|
2365
|
+
Name: string;
|
|
2366
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2367
|
+
AutoHeight: boolean;
|
|
2368
|
+
OnFormatMacro: string;
|
|
2369
|
+
OnPrintMacro: string;
|
|
2370
|
+
OnRetreatMacro: string;
|
|
2371
|
+
OnClickMacro: string;
|
|
2372
|
+
OnDblClickMacro: string;
|
|
2373
|
+
OnMouseDownMacro: string;
|
|
2374
|
+
OnMouseMoveMacro: string;
|
|
2375
|
+
OnMouseUpMacro: string;
|
|
2376
|
+
AlternateBackColor: number;
|
|
2377
|
+
OnPaint: string;
|
|
2378
|
+
OnPaintMacro: string;
|
|
2379
|
+
SetTabOrder(): void;
|
|
2380
|
+
BackThemeColorIndex: number;
|
|
2381
|
+
BackTint: number;
|
|
2382
|
+
BackShade: number;
|
|
2383
|
+
AlternateBackThemeColorIndex: number;
|
|
2384
|
+
AlternateBackTint: number;
|
|
2385
|
+
AlternateBackShade: number;
|
|
2386
|
+
}
|
|
2387
|
+
interface GroupLevel{
|
|
2388
|
+
readonly Application: Application;
|
|
2389
|
+
readonly Parent: object | any;
|
|
2390
|
+
readonly Properties: Properties;
|
|
2391
|
+
ControlSource: string;
|
|
2392
|
+
SortOrder: boolean;
|
|
2393
|
+
GroupHeader: boolean;
|
|
2394
|
+
GroupFooter: boolean;
|
|
2395
|
+
GroupOn: number;
|
|
2396
|
+
GroupInterval: number;
|
|
2397
|
+
KeepTogether: number;
|
|
2398
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2399
|
+
}
|
|
2400
|
+
interface Module{
|
|
2401
|
+
readonly Application: Application;
|
|
2402
|
+
readonly Parent: object | any;
|
|
2403
|
+
InsertText(Text: string): void;
|
|
2404
|
+
Name: string;
|
|
2405
|
+
AddFromString(String: string): void;
|
|
2406
|
+
AddFromFile(FileName: string): void;
|
|
2407
|
+
Lines(Line: number, NumLines: number): string;
|
|
2408
|
+
readonly CountOfLines: number;
|
|
2409
|
+
InsertLines(Line: number, String: string): void;
|
|
2410
|
+
DeleteLines(StartLine: number, Count: number): void;
|
|
2411
|
+
ReplaceLine(Line: number, String: string): void;
|
|
2412
|
+
ProcStartLine(ProcName: string, ProcKind: vbext_ProcKind): number;
|
|
2413
|
+
ProcCountLines(ProcName: string, ProcKind: vbext_ProcKind): number;
|
|
2414
|
+
ProcBodyLine(ProcName: string, ProcKind: vbext_ProcKind): number;
|
|
2415
|
+
ProcOfLine(Line: number, pprockind: vbext_ProcKind): string;
|
|
2416
|
+
readonly CountOfDeclarationLines: number;
|
|
2417
|
+
CreateEventProc(EventName: string, ObjectName: string): number;
|
|
2418
|
+
Find(Target: string, StartLine: number, StartColumn: number, EndLine: number, EndColumn: number, WholeWord?: boolean, MatchCase?: boolean, PatternSearch?: boolean): boolean;
|
|
2419
|
+
readonly Type: AcModuleType;
|
|
2420
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2421
|
+
}
|
|
2422
|
+
interface Modules{
|
|
2423
|
+
readonly Application: Application;
|
|
2424
|
+
readonly Parent: object | any;
|
|
2425
|
+
Item(Index: any): Module;
|
|
2426
|
+
readonly Count: number;
|
|
2427
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2428
|
+
}
|
|
2429
|
+
interface Form{
|
|
2430
|
+
FormName: string;
|
|
2431
|
+
RecordSource: string;
|
|
2432
|
+
Filter: string;
|
|
2433
|
+
FilterOn: boolean;
|
|
2434
|
+
OrderBy: string;
|
|
2435
|
+
OrderByOn: boolean;
|
|
2436
|
+
AllowFilters: boolean;
|
|
2437
|
+
Caption: string;
|
|
2438
|
+
DefaultView: number;
|
|
2439
|
+
ViewsAllowed: number;
|
|
2440
|
+
AllowEditing: boolean;
|
|
2441
|
+
DefaultEditing: number;
|
|
2442
|
+
AllowEdits: boolean;
|
|
2443
|
+
AllowDeletions: boolean;
|
|
2444
|
+
AllowAdditions: boolean;
|
|
2445
|
+
DataEntry: boolean;
|
|
2446
|
+
AllowUpdating: number;
|
|
2447
|
+
RecordsetType: number;
|
|
2448
|
+
RecordLocks: number;
|
|
2449
|
+
ScrollBars: number;
|
|
2450
|
+
RecordSelectors: boolean;
|
|
2451
|
+
NavigationButtons: boolean;
|
|
2452
|
+
DividingLines: boolean;
|
|
2453
|
+
AutoResize: boolean;
|
|
2454
|
+
AutoCenter: boolean;
|
|
2455
|
+
PopUp: boolean;
|
|
2456
|
+
Modal: boolean;
|
|
2457
|
+
BorderStyle: number;
|
|
2458
|
+
ControlBox: boolean;
|
|
2459
|
+
MinButton: boolean;
|
|
2460
|
+
MaxButton: boolean;
|
|
2461
|
+
MinMaxButtons: number;
|
|
2462
|
+
CloseButton: boolean;
|
|
2463
|
+
WhatsThisButton: boolean;
|
|
2464
|
+
Width: number;
|
|
2465
|
+
Picture: string;
|
|
2466
|
+
PictureType: number;
|
|
2467
|
+
PictureSizeMode: number;
|
|
2468
|
+
PictureAlignment: number;
|
|
2469
|
+
PictureTiling: boolean;
|
|
2470
|
+
Cycle: number;
|
|
2471
|
+
MenuBar: string;
|
|
2472
|
+
Toolbar: string;
|
|
2473
|
+
ShortcutMenu: boolean;
|
|
2474
|
+
ShortcutMenuBar: string;
|
|
2475
|
+
GridX: number;
|
|
2476
|
+
GridY: number;
|
|
2477
|
+
LayoutForPrint: boolean;
|
|
2478
|
+
FastLaserPrinting: boolean;
|
|
2479
|
+
HelpFile: string;
|
|
2480
|
+
HelpContextId: number;
|
|
2481
|
+
RowHeight: number;
|
|
2482
|
+
DatasheetFontName: string;
|
|
2483
|
+
DatasheetFontHeight: number;
|
|
2484
|
+
DatasheetFontWeight: number;
|
|
2485
|
+
DatasheetFontItalic: boolean;
|
|
2486
|
+
DatasheetFontUnderline: boolean;
|
|
2487
|
+
TabularCharSet: number;
|
|
2488
|
+
DatasheetGridlinesBehavior: number;
|
|
2489
|
+
DatasheetGridlinesColor: number;
|
|
2490
|
+
DatasheetCellsEffect: number;
|
|
2491
|
+
DatasheetForeColor: number;
|
|
2492
|
+
ShowGrid: boolean;
|
|
2493
|
+
DatasheetBackColor: number;
|
|
2494
|
+
Hwnd: number;
|
|
2495
|
+
Count: number;
|
|
2496
|
+
Page: number;
|
|
2497
|
+
Pages: number;
|
|
2498
|
+
LogicalPageWidth: number;
|
|
2499
|
+
LogicalPageHeight: number;
|
|
2500
|
+
ZoomControl: number;
|
|
2501
|
+
Visible: boolean;
|
|
2502
|
+
Painting: boolean;
|
|
2503
|
+
PrtMip: any;
|
|
2504
|
+
PrtDevMode: any;
|
|
2505
|
+
PrtDevNames: any;
|
|
2506
|
+
FrozenColumns: number;
|
|
2507
|
+
Bookmark: any;
|
|
2508
|
+
TabularFamily: number;
|
|
2509
|
+
_Name: string;
|
|
2510
|
+
PaletteSource: string;
|
|
2511
|
+
Tag: string;
|
|
2512
|
+
PaintPalette: any;
|
|
2513
|
+
OnMenu: string;
|
|
2514
|
+
OpenArgs: any;
|
|
2515
|
+
ConnectSynch: number;
|
|
2516
|
+
OnCurrent: string;
|
|
2517
|
+
OnInsert: string;
|
|
2518
|
+
BeforeInsert: string;
|
|
2519
|
+
AfterInsert: string;
|
|
2520
|
+
BeforeUpdate: string;
|
|
2521
|
+
AfterUpdate: string;
|
|
2522
|
+
OnDirty: string;
|
|
2523
|
+
OnDelete: string;
|
|
2524
|
+
BeforeDelConfirm: string;
|
|
2525
|
+
AfterDelConfirm: string;
|
|
2526
|
+
OnOpen: string;
|
|
2527
|
+
OnLoad: string;
|
|
2528
|
+
OnResize: string;
|
|
2529
|
+
OnUnload: string;
|
|
2530
|
+
OnClose: string;
|
|
2531
|
+
OnActivate: string;
|
|
2532
|
+
OnDeactivate: string;
|
|
2533
|
+
OnGotFocus: string;
|
|
2534
|
+
OnLostFocus: string;
|
|
2535
|
+
OnClick: string;
|
|
2536
|
+
OnDblClick: string;
|
|
2537
|
+
OnMouseDown: string;
|
|
2538
|
+
OnMouseMove: string;
|
|
2539
|
+
OnMouseUp: string;
|
|
2540
|
+
OnKeyDown: string;
|
|
2541
|
+
OnKeyUp: string;
|
|
2542
|
+
OnKeyPress: string;
|
|
2543
|
+
KeyPreview: boolean;
|
|
2544
|
+
OnError: string;
|
|
2545
|
+
OnFilter: string;
|
|
2546
|
+
OnApplyFilter: string;
|
|
2547
|
+
OnTimer: string;
|
|
2548
|
+
TimerInterval: number;
|
|
2549
|
+
Dirty: boolean;
|
|
2550
|
+
WindowWidth: number;
|
|
2551
|
+
WindowHeight: number;
|
|
2552
|
+
CurrentView: number;
|
|
2553
|
+
CurrentSectionTop: number;
|
|
2554
|
+
CurrentSectionLeft: number;
|
|
2555
|
+
SelLeft: number;
|
|
2556
|
+
SelTop: number;
|
|
2557
|
+
SelWidth: number;
|
|
2558
|
+
SelHeight: number;
|
|
2559
|
+
CurrentRecord: number;
|
|
2560
|
+
PictureData: any;
|
|
2561
|
+
InsideHeight: number;
|
|
2562
|
+
InsideWidth: number;
|
|
2563
|
+
PicturePalette: any;
|
|
2564
|
+
HasModule: boolean;
|
|
2565
|
+
acHiddenCurrentPage: number;
|
|
2566
|
+
Orientation: number;
|
|
2567
|
+
AllowDesignChanges: boolean;
|
|
2568
|
+
ServerFilter: string;
|
|
2569
|
+
ServerFilterByForm: boolean;
|
|
2570
|
+
MaxRecords: number;
|
|
2571
|
+
UniqueTable: string;
|
|
2572
|
+
ResyncCommand: string;
|
|
2573
|
+
InputParameters: string;
|
|
2574
|
+
MaxRecButton: boolean;
|
|
2575
|
+
readonly Application: Application;
|
|
2576
|
+
readonly Parent: object | any;
|
|
2577
|
+
readonly NewRecord: number;
|
|
2578
|
+
Undo(): void;
|
|
2579
|
+
readonly ActiveControl: Control;
|
|
2580
|
+
DefaultControl(ControlType: number): Control;
|
|
2581
|
+
readonly Dynaset: object | any;
|
|
2582
|
+
readonly RecordsetClone: object | any;
|
|
2583
|
+
readonly Recordset: object | any;
|
|
2584
|
+
Section(Index: any): Section;
|
|
2585
|
+
readonly Form: Form3;
|
|
2586
|
+
readonly Module: Module;
|
|
2587
|
+
readonly Properties: Properties;
|
|
2588
|
+
readonly ConnectControl: Control;
|
|
2589
|
+
Recalc(): void;
|
|
2590
|
+
Requery(): void;
|
|
2591
|
+
Refresh(): void;
|
|
2592
|
+
Repaint(): void;
|
|
2593
|
+
GoToPage(PageNumber: number, Right?: number, Down?: number): void;
|
|
2594
|
+
SetFocus(): void;
|
|
2595
|
+
readonly Controls: Controls;
|
|
2596
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
2597
|
+
Name: string;
|
|
2598
|
+
SubdatasheetHeight: number;
|
|
2599
|
+
SubdatasheetExpanded: boolean;
|
|
2600
|
+
}
|
|
2601
|
+
interface Forms{
|
|
2602
|
+
readonly Application: Application;
|
|
2603
|
+
readonly Parent: object | any;
|
|
2604
|
+
Item(Index: any): Form3;
|
|
2605
|
+
readonly Count: number;
|
|
2606
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2607
|
+
}
|
|
2608
|
+
interface Report{
|
|
2609
|
+
FormName: string;
|
|
2610
|
+
RecordSource: string;
|
|
2611
|
+
Filter: string;
|
|
2612
|
+
FilterOn: boolean;
|
|
2613
|
+
OrderBy: string;
|
|
2614
|
+
OrderByOn: boolean;
|
|
2615
|
+
ServerFilter: string;
|
|
2616
|
+
Caption: string;
|
|
2617
|
+
RecordLocks: number;
|
|
2618
|
+
PageHeader: number;
|
|
2619
|
+
PageFooter: number;
|
|
2620
|
+
DateGrouping: number;
|
|
2621
|
+
GrpKeepTogether: number;
|
|
2622
|
+
MinButton: boolean;
|
|
2623
|
+
MaxButton: boolean;
|
|
2624
|
+
Width: number;
|
|
2625
|
+
Picture: string;
|
|
2626
|
+
PictureType: number;
|
|
2627
|
+
PictureSizeMode: number;
|
|
2628
|
+
PictureAlignment: number;
|
|
2629
|
+
PictureTiling: boolean;
|
|
2630
|
+
PicturePages: number;
|
|
2631
|
+
MenuBar: string;
|
|
2632
|
+
Toolbar: string;
|
|
2633
|
+
ShortcutMenuBar: string;
|
|
2634
|
+
GridX: number;
|
|
2635
|
+
GridY: number;
|
|
2636
|
+
LayoutForPrint: boolean;
|
|
2637
|
+
FastLaserPrinting: boolean;
|
|
2638
|
+
HelpFile: string;
|
|
2639
|
+
HelpContextId: number;
|
|
2640
|
+
Hwnd: number;
|
|
2641
|
+
Count: number;
|
|
2642
|
+
Page: number;
|
|
2643
|
+
Pages: number;
|
|
2644
|
+
LogicalPageWidth: number;
|
|
2645
|
+
LogicalPageHeight: number;
|
|
2646
|
+
ZoomControl: number;
|
|
2647
|
+
HasData: number;
|
|
2648
|
+
Left: number;
|
|
2649
|
+
Top: number;
|
|
2650
|
+
Height: number;
|
|
2651
|
+
PrintSection: boolean;
|
|
2652
|
+
NextRecord: boolean;
|
|
2653
|
+
MoveLayout: boolean;
|
|
2654
|
+
FormatCount: number;
|
|
2655
|
+
PrintCount: number;
|
|
2656
|
+
Visible: boolean;
|
|
2657
|
+
Painting: boolean;
|
|
2658
|
+
PrtMip: any;
|
|
2659
|
+
PrtDevMode: any;
|
|
2660
|
+
PrtDevNames: any;
|
|
2661
|
+
ForeColor: number;
|
|
2662
|
+
CurrentX: number;
|
|
2663
|
+
CurrentY: number;
|
|
2664
|
+
ScaleHeight: number;
|
|
2665
|
+
ScaleLeft: number;
|
|
2666
|
+
ScaleMode: number;
|
|
2667
|
+
ScaleTop: number;
|
|
2668
|
+
ScaleWidth: number;
|
|
2669
|
+
FontBold: number;
|
|
2670
|
+
FontItalic: number;
|
|
2671
|
+
FontName: string;
|
|
2672
|
+
FontSize: number;
|
|
2673
|
+
FontUnderline: number;
|
|
2674
|
+
DrawMode: number;
|
|
2675
|
+
DrawStyle: number;
|
|
2676
|
+
DrawWidth: number;
|
|
2677
|
+
FillColor: number;
|
|
2678
|
+
FillStyle: number;
|
|
2679
|
+
_Name: string;
|
|
2680
|
+
PaletteSource: string;
|
|
2681
|
+
Tag: string;
|
|
2682
|
+
PaintPalette: any;
|
|
2683
|
+
OnMenu: string;
|
|
2684
|
+
OnOpen: string;
|
|
2685
|
+
OnClose: string;
|
|
2686
|
+
OnActivate: string;
|
|
2687
|
+
OnDeactivate: string;
|
|
2688
|
+
OnNoData: string;
|
|
2689
|
+
OnPage: string;
|
|
2690
|
+
OnError: string;
|
|
2691
|
+
Dirty: boolean;
|
|
2692
|
+
CurrentRecord: number;
|
|
2693
|
+
PictureData: any;
|
|
2694
|
+
PicturePalette: any;
|
|
2695
|
+
HasModule: boolean;
|
|
2696
|
+
acHiddenCurrentPage: number;
|
|
2697
|
+
Orientation: number;
|
|
2698
|
+
InputParameters: string;
|
|
2699
|
+
readonly Application: Application;
|
|
2700
|
+
readonly Parent: object | any;
|
|
2701
|
+
readonly ActiveControl: Control;
|
|
2702
|
+
DefaultControl(ControlType: number): Control;
|
|
2703
|
+
Circle(flags: number, X: number, Y: number, radius: number, color: number, start: number, end: number, aspect: number): void;
|
|
2704
|
+
Line(flags: number, x1: number, y1: number, x2: number, y2: number, color: number): void;
|
|
2705
|
+
PSet(flags: number, X: number, Y: number, color: number): void;
|
|
2706
|
+
Scale(flags: number, x1: number, y1: number, x2: number, y2: number): void;
|
|
2707
|
+
TextWidth(Expr: string): number;
|
|
2708
|
+
TextHeight(Expr: string): number;
|
|
2709
|
+
Print(Expr: string): void;
|
|
2710
|
+
Section(Index: any): Section;
|
|
2711
|
+
GroupLevel(Index: number): GroupLevel;
|
|
2712
|
+
readonly Report: Report3;
|
|
2713
|
+
readonly Module: Module;
|
|
2714
|
+
readonly Properties: Properties;
|
|
2715
|
+
readonly Controls: Controls;
|
|
2716
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
2717
|
+
Name: string;
|
|
2718
|
+
}
|
|
2719
|
+
interface Reports{
|
|
2720
|
+
readonly Application: Application;
|
|
2721
|
+
readonly Parent: object | any;
|
|
2722
|
+
Item(Index: any): Report3;
|
|
2723
|
+
readonly Count: number;
|
|
2724
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2725
|
+
}
|
|
2726
|
+
interface Screen{
|
|
2727
|
+
readonly Application: Application;
|
|
2728
|
+
readonly Parent: object | any;
|
|
2729
|
+
readonly ActiveDatasheet: Form3;
|
|
2730
|
+
readonly ActiveControl: Control;
|
|
2731
|
+
readonly PreviousControl: Control;
|
|
2732
|
+
readonly ActiveForm: Form3;
|
|
2733
|
+
readonly ActiveReport: Report3;
|
|
2734
|
+
MousePointer: number;
|
|
2735
|
+
readonly ActiveDataAccessPage: DataAccessPage;
|
|
2736
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2737
|
+
}
|
|
2738
|
+
interface Application{
|
|
2739
|
+
readonly Application: Application;
|
|
2740
|
+
readonly Parent: object | any;
|
|
2741
|
+
readonly CodeContextObject: object | any;
|
|
2742
|
+
NewCurrentDatabaseOld(filepath: string): void;
|
|
2743
|
+
OpenCurrentDatabaseOld(filepath: string, Exclusive?: boolean): void;
|
|
2744
|
+
MenuBar: string;
|
|
2745
|
+
readonly CurrentObjectType: AcObjectType;
|
|
2746
|
+
readonly CurrentObjectName: string;
|
|
2747
|
+
GetOption(OptionName: string): any;
|
|
2748
|
+
SetOption(OptionName: string, Setting: any): void;
|
|
2749
|
+
Echo(EchoOn: number, bstrStatusBarText?: string): void;
|
|
2750
|
+
CloseCurrentDatabase(): void;
|
|
2751
|
+
Quit(Option?: AcQuitOption): void;
|
|
2752
|
+
readonly Forms: Forms;
|
|
2753
|
+
readonly Reports: Reports;
|
|
2754
|
+
readonly Screen: Screen;
|
|
2755
|
+
readonly DoCmd: DoCmd;
|
|
2756
|
+
ShortcutMenuBar: string;
|
|
2757
|
+
Visible: boolean;
|
|
2758
|
+
UserControl: boolean;
|
|
2759
|
+
SysCmd(Action: AcSysCmdAction, Argument2?: any, Argument3?: any): any;
|
|
2760
|
+
CreateForm(Database?: any, FormTemplate?: any): Form3;
|
|
2761
|
+
CreateReport(Database?: any, ReportTemplate?: any): Report3;
|
|
2762
|
+
CreateControlOld(FormName: string, ControlType: AcControlType, Section?: AcSection, Parent?: any, ColumnName?: any, Left?: any, Top?: any, Width?: any, Height?: any): Control;
|
|
2763
|
+
CreateReportControlOld(ReportName: string, ControlType: AcControlType, Section?: AcSection, Parent?: any, ColumnName?: any, Left?: any, Top?: any, Width?: any, Height?: any): Control;
|
|
2764
|
+
CreateControlExOld(FormName: string, ControlType: AcControlType, Section: AcSection, Parent: string, ControlSource: string, Left: number, Top: number, Width: number, Height: number): Control;
|
|
2765
|
+
CreateReportControlExOld(ReportName: string, ControlType: AcControlType, Section: AcSection, Parent: string, ControlName: string, Left: number, Top: number, Width: number, Height: number): Control;
|
|
2766
|
+
DeleteControl(FormName: string, ControlName: string): void;
|
|
2767
|
+
DeleteReportControl(ReportName: string, ControlName: string): void;
|
|
2768
|
+
CreateGroupLevel(ReportName: string, Expression: string, Header: number, Footer: number): number;
|
|
2769
|
+
DMin(Expr: string, Domain: string, Criteria?: any): any;
|
|
2770
|
+
DMax(Expr: string, Domain: string, Criteria?: any): any;
|
|
2771
|
+
DSum(Expr: string, Domain: string, Criteria?: any): any;
|
|
2772
|
+
DAvg(Expr: string, Domain: string, Criteria?: any): any;
|
|
2773
|
+
DLookup(Expr: string, Domain: string, Criteria?: any): any;
|
|
2774
|
+
DLast(Expr: string, Domain: string, Criteria?: any): any;
|
|
2775
|
+
DVar(Expr: string, Domain: string, Criteria?: any): any;
|
|
2776
|
+
DVarP(Expr: string, Domain: string, Criteria?: any): any;
|
|
2777
|
+
DStDev(Expr: string, Domain: string, Criteria?: any): any;
|
|
2778
|
+
DStDevP(Expr: string, Domain: string, Criteria?: any): any;
|
|
2779
|
+
DFirst(Expr: string, Domain: string, Criteria?: any): any;
|
|
2780
|
+
DCount(Expr: string, Domain: string, Criteria?: any): any;
|
|
2781
|
+
Eval(StringExpr: string): any;
|
|
2782
|
+
CurrentUser(): string;
|
|
2783
|
+
DDEInitiate(Application: string, Topic: string): any;
|
|
2784
|
+
DDEExecute(ChanNum: any, Command: string): void;
|
|
2785
|
+
DDEPoke(ChanNum: any, Item: string, Data: string): void;
|
|
2786
|
+
DDERequest(ChanNum: any, Item: string): string;
|
|
2787
|
+
DDETerminate(ChanNum: any): void;
|
|
2788
|
+
DDETerminateAll(): void;
|
|
2789
|
+
readonly DBEngine: DBEngine;
|
|
2790
|
+
CurrentDb(): Database;
|
|
2791
|
+
CodeDb(): Database;
|
|
2792
|
+
BeginUndoable(Hwnd: number): void;
|
|
2793
|
+
SetUndoRecording(yesno: number): void;
|
|
2794
|
+
BuildCriteria(Field: string, FieldType: number, Expression: string): string;
|
|
2795
|
+
InsertText(Text: string, ModuleName: string): void;
|
|
2796
|
+
ReloadAddIns(): void;
|
|
2797
|
+
DefaultWorkspaceClone(): Workspace;
|
|
2798
|
+
RefreshTitleBar(): void;
|
|
2799
|
+
AddAutoCorrect(ChangeFrom: string, ChangeTo: string): void;
|
|
2800
|
+
DelAutoCorrect(ChangeFrom: string): void;
|
|
2801
|
+
hWndAccessApp(): number;
|
|
2802
|
+
Run(Procedure: string, Arg1?: any, Arg2?: any, Arg3?: any, Arg4?: any, Arg5?: any, Arg6?: any, Arg7?: any, Arg8?: any, Arg9?: any, Arg10?: any, Arg11?: any, Arg12?: any, Arg13?: any, Arg14?: any, Arg15?: any, Arg16?: any, Arg17?: any, Arg18?: any, Arg19?: any, Arg20?: any, Arg21?: any, Arg22?: any, Arg23?: any, Arg24?: any, Arg25?: any, Arg26?: any, Arg27?: any, Arg28?: any, Arg29?: any, Arg30?: any): any;
|
|
2803
|
+
Nz(Value: any, ValueIfNull?: any): any;
|
|
2804
|
+
LoadPicture(FileName: string): object | any;
|
|
2805
|
+
ReplaceModule(objtyp: number, ModuleName: string, FileName: string, token: number): void;
|
|
2806
|
+
AccessError(ErrorNumber: any): any;
|
|
2807
|
+
BuilderString(): any;
|
|
2808
|
+
StringFromGUID(Guid: any): any;
|
|
2809
|
+
GUIDFromString(String: any): any;
|
|
2810
|
+
AppLoadString(id: number): any;
|
|
2811
|
+
readonly CommandBars: CommandBars;
|
|
2812
|
+
readonly Assistant: Assistant;
|
|
2813
|
+
FollowHyperlink(Address: string, SubAddress?: string, NewWindow?: boolean, AddHistory?: boolean, ExtraInfo?: any, Method?: MsoExtraInfoMethod, HeaderInfo?: string): void;
|
|
2814
|
+
SaveAsText(ObjectType: AcObjectType, ObjectName: string, FileName: string): void;
|
|
2815
|
+
LoadFromText(ObjectType: AcObjectType, ObjectName: string, FileName: string): void;
|
|
2816
|
+
AddToFavorites(): void;
|
|
2817
|
+
RefreshDatabaseWindow(): void;
|
|
2818
|
+
readonly References: References;
|
|
2819
|
+
readonly Modules: Modules;
|
|
2820
|
+
readonly FileSearch: FileSearch;
|
|
2821
|
+
readonly IsCompiled: boolean;
|
|
2822
|
+
RunCommand(Command: AcCommand): void;
|
|
2823
|
+
HyperlinkPart(Hyperlink: any, Part?: AcHyperlinkPart): string;
|
|
2824
|
+
GetHiddenAttribute(ObjectType: AcObjectType, ObjectName: string): boolean;
|
|
2825
|
+
SetHiddenAttribute(ObjectType: AcObjectType, ObjectName: string, fHidden: boolean): void;
|
|
2826
|
+
readonly DataAccessPages: DataAccessPages;
|
|
2827
|
+
CreateDataAccessPage(FileName?: any, CreateNewFile?: boolean): DataAccessPage;
|
|
2828
|
+
readonly ADOConnectString: string;
|
|
2829
|
+
readonly CurrentProject: CurrentProject;
|
|
2830
|
+
readonly CurrentData: CurrentData;
|
|
2831
|
+
readonly CodeProject: CurrentProject;
|
|
2832
|
+
readonly CodeData: CurrentData;
|
|
2833
|
+
NewAccessProject(filepath: string, Connect?: any): void;
|
|
2834
|
+
OpenAccessProject(filepath: string, Exclusive?: boolean): void;
|
|
2835
|
+
CreateAccessProject(filepath: string, Connect?: any): void;
|
|
2836
|
+
readonly WizHook: WizHook;
|
|
2837
|
+
readonly ProductCode: string;
|
|
2838
|
+
readonly COMAddIns: COMAddIns;
|
|
2839
|
+
readonly Name: string;
|
|
2840
|
+
readonly DefaultWebOptions: DefaultWebOptions;
|
|
2841
|
+
readonly LanguageSettings: LanguageSettings;
|
|
2842
|
+
readonly AnswerWizard: AnswerWizard;
|
|
2843
|
+
FeatureInstall: MsoFeatureInstall;
|
|
2844
|
+
EuroConvert(Number: number, SourceCurrency: string, TargetCurrency: string, FullPrecision?: any, TriangulationPrecision?: any): number;
|
|
2845
|
+
readonly VGXFrameInterval: any;
|
|
2846
|
+
FileDialog(dialogType: MsoFileDialogType): FileDialog;
|
|
2847
|
+
readonly BrokenReference: boolean;
|
|
2848
|
+
CreateNewWorkgroupFile(Path?: string, Name?: string, Company?: string, WorkgroupID?: string, Replace?: boolean): void;
|
|
2849
|
+
SetDefaultWorkgroupFile(Path: string): void;
|
|
2850
|
+
readonly Printers: Printers;
|
|
2851
|
+
Printer: Printer;
|
|
2852
|
+
readonly MsoDebugOptions: MsoDebugOptions;
|
|
2853
|
+
ConvertAccessProject(SourceFilename: string, DestinationFilename: string, DestinationFileFormat: AcFileFormat): void;
|
|
2854
|
+
readonly Version: string;
|
|
2855
|
+
readonly Build: number;
|
|
2856
|
+
OpenCurrentDatabase(filepath: string, Exclusive?: boolean, bstrPassword?: string): void;
|
|
2857
|
+
CompactRepair(SourceFile: string, DestinationFile: string, LogFile?: boolean): boolean;
|
|
2858
|
+
ExportXMLOld(ObjectType: AcExportXMLObjectType, DataSource: string, DataTarget?: string, SchemaTarget?: string, PresentationTarget?: string, ImageTarget?: string, Encoding?: AcExportXMLEncoding, OtherFlags?: number): void;
|
|
2859
|
+
ImportXML(DataSource: string, ImportOptions?: AcImportXMLOption): void;
|
|
2860
|
+
readonly NewFileTaskPane: NewFile;
|
|
2861
|
+
TransformXML(DataSource: string, TransformSource: string, OutputTarget: string, WellFormedXMLOutput?: boolean, ScriptOption?: AcTransformXMLScriptOption): void;
|
|
2862
|
+
CreateAdditionalData(): AdditionalData;
|
|
2863
|
+
readonly AutoCorrect: AutoCorrect;
|
|
2864
|
+
ExportXML(ObjectType: AcExportXMLObjectType, DataSource: string, DataTarget?: string, SchemaTarget?: string, PresentationTarget?: string, ImageTarget?: string, Encoding?: AcExportXMLEncoding, OtherFlags?: AcExportXMLOtherFlags, WhereCondition?: string, AdditionalData?: any): void;
|
|
2865
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2866
|
+
AutomationSecurity: MsoAutomationSecurity;
|
|
2867
|
+
NewCurrentDatabase(filepath: string, FileFormat?: AcNewDatabaseFormat, Template?: any, SiteAddress?: string, ListID?: string): void;
|
|
2868
|
+
PlainText(RichText: any, Length?: any): string;
|
|
2869
|
+
HtmlEncode(PlainText: any, Length?: any): string;
|
|
2870
|
+
readonly MacroError: MacroError;
|
|
2871
|
+
LoadCustomUI(CustomUIName: string, CustomUIXML: string): void;
|
|
2872
|
+
readonly TempVars: TempVars;
|
|
2873
|
+
ExportNavigationPane(Path: string): void;
|
|
2874
|
+
ImportNavigationPane(Path: string, fAppendOnly?: boolean): void;
|
|
2875
|
+
ColumnHistory(TableName: string, ColumnName: string, queryString: string): string;
|
|
2876
|
+
readonly Assistance: Assistance;
|
|
2877
|
+
CreateControl(FormName: string, ControlType: AcControlType, Section?: AcSection, Parent?: any, ColumnName?: any, Left?: any, Top?: any, Width?: any, Height?: any): Control;
|
|
2878
|
+
CreateReportControl(ReportName: string, ControlType: AcControlType, Section?: AcSection, Parent?: any, ColumnName?: any, Left?: any, Top?: any, Width?: any, Height?: any): Control;
|
|
2879
|
+
CreateControlEx(FormName: string, ControlType: AcControlType, Section: AcSection, Parent: string, ControlSource: string, Left: number, Top: number, Width: number, Height: number): Control;
|
|
2880
|
+
CreateReportControlEx(ReportName: string, ControlType: AcControlType, Section: AcSection, Parent: string, ControlName: string, Left: number, Top: number, Width: number, Height: number): Control;
|
|
2881
|
+
ExportCustomFixedFormat(ExternalExporter: any, OutputFileName: string, ObjectName: string, ObjectType: AcOutputObjectType, SelectedRecords?: boolean, FromPage?: number, ToPage?: number): void;
|
|
2882
|
+
SaveAsAXL(ObjectType: AcObjectType, ObjectName: string, FileName: string): void;
|
|
2883
|
+
LoadFromAXL(ObjectType: AcObjectType, ObjectName: string, FileName: string): void;
|
|
2884
|
+
SaveAsTemplate(Path: string, Title: string, IconPath: string, CoreTable: string, Category: string, PreviewPath?: any, Description?: any, InstantiationForm?: any, ApplicationPart?: any, IncludeData?: any, Variation?: any): void;
|
|
2885
|
+
InstantiateTemplate(Path: string): void;
|
|
2886
|
+
readonly WebServices: WebServices;
|
|
2887
|
+
readonly LocalVars: LocalVars;
|
|
2888
|
+
CurrentWebUser(DisplayOption: AcWebUserDisplay): any;
|
|
2889
|
+
CurrentWebUserGroups(DisplayOption: AcWebUserGroupsDisplay): any;
|
|
2890
|
+
IsCurrentWebUserInGroup(GroupNameOrID: any): boolean;
|
|
2891
|
+
DirtyObject(ObjectType: AcObjectType, ObjectName: string): void;
|
|
2892
|
+
IsClient(): boolean;
|
|
2893
|
+
readonly ReturnVars: ReturnVars;
|
|
2894
|
+
}
|
|
2895
|
+
interface Reference{
|
|
2896
|
+
readonly Collection: References;
|
|
2897
|
+
readonly Name: string;
|
|
2898
|
+
readonly Guid: string;
|
|
2899
|
+
readonly Major: number;
|
|
2900
|
+
readonly Minor: number;
|
|
2901
|
+
readonly FullPath: string;
|
|
2902
|
+
readonly BuiltIn: boolean;
|
|
2903
|
+
readonly IsBroken: boolean;
|
|
2904
|
+
readonly Kind: vbext_RefKind;
|
|
2905
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2906
|
+
}
|
|
2907
|
+
interface References{
|
|
2908
|
+
readonly Parent: object | any;
|
|
2909
|
+
Item(var_: any): Reference;
|
|
2910
|
+
readonly Count: number;
|
|
2911
|
+
AddFromGuid(Guid: string, Major: number, Minor: number): Reference;
|
|
2912
|
+
AddFromFile(FileName: string): Reference;
|
|
2913
|
+
Remove(Reference: Reference): void;
|
|
2914
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2915
|
+
}
|
|
2916
|
+
interface Dummy{
|
|
2917
|
+
}
|
|
2918
|
+
interface DataAccessPage{
|
|
2919
|
+
readonly _Name: string;
|
|
2920
|
+
readonly Name: string;
|
|
2921
|
+
Visible: boolean;
|
|
2922
|
+
Tag: string;
|
|
2923
|
+
readonly WindowWidth: number;
|
|
2924
|
+
readonly WindowHeight: number;
|
|
2925
|
+
readonly CurrentView: number;
|
|
2926
|
+
readonly Application: Application;
|
|
2927
|
+
readonly Parent: object | any;
|
|
2928
|
+
readonly Document: object | any;
|
|
2929
|
+
ApplyTheme(ThemeName: string): void;
|
|
2930
|
+
readonly WebOptions: WebOptions;
|
|
2931
|
+
ConnectionString: string;
|
|
2932
|
+
readonly FieldListConnection: object | any;
|
|
2933
|
+
readonly MailEnvelope: MsoEnvelopeVB;
|
|
2934
|
+
readonly CurrentSelection: object | any;
|
|
2935
|
+
readonly MSODSC: object | any;
|
|
2936
|
+
RemovePersonalInformation: boolean;
|
|
2937
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2938
|
+
}
|
|
2939
|
+
interface DataAccessPages{
|
|
2940
|
+
readonly Application: Application;
|
|
2941
|
+
readonly Parent: object | any;
|
|
2942
|
+
Item(var_: any): DataAccessPage;
|
|
2943
|
+
readonly Count: number;
|
|
2944
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2945
|
+
}
|
|
2946
|
+
interface AllObjects{
|
|
2947
|
+
readonly Application: Application;
|
|
2948
|
+
readonly Parent: object | any;
|
|
2949
|
+
Item(var_: any): AccessObject;
|
|
2950
|
+
readonly Count: number;
|
|
2951
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2952
|
+
}
|
|
2953
|
+
interface AccessObjectProperty{
|
|
2954
|
+
readonly _Value: any;
|
|
2955
|
+
readonly Name: string;
|
|
2956
|
+
Value: any;
|
|
2957
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2958
|
+
}
|
|
2959
|
+
interface AccessObjectProperties{
|
|
2960
|
+
readonly Application: Application;
|
|
2961
|
+
readonly Parent: object | any;
|
|
2962
|
+
Item(Index: any): AccessObjectProperty;
|
|
2963
|
+
readonly Count: number;
|
|
2964
|
+
Add(PropertyName: string, Value: any): void;
|
|
2965
|
+
Remove(Item: any): void;
|
|
2966
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2967
|
+
}
|
|
2968
|
+
interface CurrentProject{
|
|
2969
|
+
readonly AllForms: AllObjects;
|
|
2970
|
+
readonly AllReports: AllObjects;
|
|
2971
|
+
readonly AllMacros: AllObjects;
|
|
2972
|
+
readonly AllModules: AllObjects;
|
|
2973
|
+
readonly AllDataAccessPages: AllObjects;
|
|
2974
|
+
readonly ProjectType: AcProjectType;
|
|
2975
|
+
readonly BaseConnectionString: string;
|
|
2976
|
+
readonly IsConnected: boolean;
|
|
2977
|
+
OpenConnection(BaseConnectionString?: any, UserID?: any, Password?: any): void;
|
|
2978
|
+
CloseConnection(): void;
|
|
2979
|
+
readonly Name: string;
|
|
2980
|
+
readonly Path: string;
|
|
2981
|
+
readonly FullName: string;
|
|
2982
|
+
readonly Connection: Connection;
|
|
2983
|
+
readonly Properties: AccessObjectProperties;
|
|
2984
|
+
readonly Application: Application;
|
|
2985
|
+
readonly Parent: object | any;
|
|
2986
|
+
RemovePersonalInformation: boolean;
|
|
2987
|
+
readonly FileFormat: AcFileFormat;
|
|
2988
|
+
readonly AccessConnection: Connection;
|
|
2989
|
+
UpdateDependencyInfo(): void;
|
|
2990
|
+
IsMemberSafe(dispid: number): boolean;
|
|
2991
|
+
readonly ImportExportSpecifications: mportExportSpecifications;
|
|
2992
|
+
readonly IsTrusted: boolean;
|
|
2993
|
+
readonly WebSite: string;
|
|
2994
|
+
readonly IsWeb: boolean;
|
|
2995
|
+
readonly Resources: SharedResources;
|
|
2996
|
+
AddSharedImage(SharedImageName: string, FileName: string): void;
|
|
2997
|
+
readonly IsSQLBackend: boolean;
|
|
2998
|
+
}
|
|
2999
|
+
interface CurrentData{
|
|
3000
|
+
readonly AllTables: AllObjects;
|
|
3001
|
+
readonly AllQueries: AllObjects;
|
|
3002
|
+
readonly AllViews: AllObjects;
|
|
3003
|
+
readonly AllStoredProcedures: AllObjects;
|
|
3004
|
+
readonly AllDatabaseDiagrams: AllObjects;
|
|
3005
|
+
readonly AllFunctions: AllObjects;
|
|
3006
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3007
|
+
}
|
|
3008
|
+
interface AccessObject{
|
|
3009
|
+
readonly Parent: object | any;
|
|
3010
|
+
readonly _Name: string;
|
|
3011
|
+
readonly Name: string;
|
|
3012
|
+
readonly Type: AcObjectType;
|
|
3013
|
+
readonly Attributes: number;
|
|
3014
|
+
readonly Properties: AccessObjectProperties;
|
|
3015
|
+
readonly IsLoaded: boolean;
|
|
3016
|
+
FullName: string;
|
|
3017
|
+
readonly DateCreated: number;
|
|
3018
|
+
readonly DateModified: number;
|
|
3019
|
+
readonly CurrentView: AcCurrentView;
|
|
3020
|
+
IsDependentUpon(ObjectType: AcObjectType, ObjectName: string): boolean;
|
|
3021
|
+
GetDependencyInfo(): DependencyInfo;
|
|
3022
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3023
|
+
readonly IsWeb: boolean;
|
|
3024
|
+
}
|
|
3025
|
+
interface WizHook{
|
|
3026
|
+
Key: number;
|
|
3027
|
+
NameFromActid(Actid: number): string;
|
|
3028
|
+
ArgsOfActid(Actid: number): number;
|
|
3029
|
+
OpenScript(Script: string, Label: string, OpenMode: number, Extra: number, Version: number): number;
|
|
3030
|
+
GetScriptString(HScr: number, ScriptColumn: number, Value: string): boolean;
|
|
3031
|
+
SaveScriptString(HScr: number, ScriptColumn: number, Value: string): boolean;
|
|
3032
|
+
GlobalProcExists(Name: string): boolean;
|
|
3033
|
+
TableFieldHasUniqueIndex(Table: string, Columns: string): boolean;
|
|
3034
|
+
BracketString(String: string, flags: number): boolean;
|
|
3035
|
+
WizHelp(HelpFile: string, wCmd: number, ContextID: number): boolean;
|
|
3036
|
+
OpenPictureFile(File: string, Cancelled: boolean): boolean;
|
|
3037
|
+
EnglishPictToLocal(In: string, Out: string): boolean;
|
|
3038
|
+
TranslateExpression(In: string, Out: string, ParseFlags: number, TranslateFlags: number): boolean;
|
|
3039
|
+
FileExists(File: string): boolean;
|
|
3040
|
+
FullPath(RelativePath: string, FullPath: string): number;
|
|
3041
|
+
SplitPath(Path: string, Drive: string, Dir: string, File: string, Ext: string): void;
|
|
3042
|
+
TwipsFromFont(FontName: string, Size: number, Weight: number, Italic: boolean, Underline: boolean, Cch: number, Caption: string, MaxWidthCch: number, dx: number, dy: number): boolean;
|
|
3043
|
+
ObjTypOfRecordSource(RecordSource: string): number;
|
|
3044
|
+
IsValidIdent(Identifier: string): boolean;
|
|
3045
|
+
SortStringArray(Array: any[]): void;
|
|
3046
|
+
AnalyzeTable(Workspace: Workspace, Database: Database, Table: string, ReturnDebugInfo: boolean, Results: string): number;
|
|
3047
|
+
AnalyzeQuery(Workspace: Workspace, Database: Database, Query: string, Results: string): number;
|
|
3048
|
+
GetFileName(hwndOwner: number, AppName: string, DlgTitle: string, OpenTitle: string, File: string, InitialDir: string, Filter: string, FilterIndex: number, View: number, flags: number, fOpen: boolean): number;
|
|
3049
|
+
CreateDataPageControl(DpName: string, CtlName: string, Typ: number, Section: string, SectionType: number, AppletCode: string, X: number, Y: number, dx: number, dy: number): void;
|
|
3050
|
+
KnownWizLeaks(fStart: boolean): void;
|
|
3051
|
+
SetVbaPassword(bstrDbName: string, bstrConnect: string, bstrPasswd: string): boolean;
|
|
3052
|
+
LocalFont(): string;
|
|
3053
|
+
SaveObject(bstrName: string, objtyp: number): void;
|
|
3054
|
+
CurrentLangID(): number;
|
|
3055
|
+
KeyboardLangID(): number;
|
|
3056
|
+
AccessUserDataDir(): string;
|
|
3057
|
+
OfficeAddInDir(): string;
|
|
3058
|
+
EmbedFileOnDataPage(DpName: string, FileToInsert: string): string;
|
|
3059
|
+
readonly DbcVbProject: VBProject;
|
|
3060
|
+
ReportLeaksToFile(fRptToFile: boolean, bstrFileOut: string): void;
|
|
3061
|
+
IsMatchToDbcConnectString(bstrConnectionString: string): boolean;
|
|
3062
|
+
LoadImexSpecSolution(bstrFilename: string): void;
|
|
3063
|
+
SetDpBlockKeyInput(fBlockKeys: boolean): void;
|
|
3064
|
+
FirstDbcDataObject(Name: string, ObjType: AcObjectType, Attribs: number): boolean;
|
|
3065
|
+
CloseCurrentDatabase(): boolean;
|
|
3066
|
+
AccessWizFilePath(bstrWhich: string): string;
|
|
3067
|
+
HideDates(): boolean;
|
|
3068
|
+
GetColumns(bstrBase: string): string;
|
|
3069
|
+
GetFileOdso(bstrExt: string, bstrFilename: string): number;
|
|
3070
|
+
GetInfoForColumns(bstrBase: string): string;
|
|
3071
|
+
GetFileName2(hwndOwner: number, AppName: string, DlgTitle: string, OpenTitle: string, File: string, InitialDir: string, Filter: string, FilterIndex: number, View: number, flags: number, fOpen: boolean, fFileSystem: any): number;
|
|
3072
|
+
FGetMSDE(fBlockKeys: boolean): boolean;
|
|
3073
|
+
WizMsgBox(bstrText: string, bstrCaption: string, wStyle: number, idHelpID: number, bstrHelpFileName: string): number;
|
|
3074
|
+
AdpUIDPwd(pbstrUID: string, pbstrPwd: string): boolean;
|
|
3075
|
+
SetWizGlob(lWhich: number, vValue: any): void;
|
|
3076
|
+
GetWizGlob(lWhich: number): any;
|
|
3077
|
+
WizCopyCmdbars(bstrADPName: string): void;
|
|
3078
|
+
GetCurrentView(bstrTableName: string): number;
|
|
3079
|
+
FIsFEWch(wch: number): boolean;
|
|
3080
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3081
|
+
GetAccWizRCPath(): string;
|
|
3082
|
+
FCreateNameMap(objtyp: number, bstrObjName: string): boolean;
|
|
3083
|
+
GetAdeRegistryPath(): string;
|
|
3084
|
+
ExecuteTempImexSpec(bstrSpecXML: string): void;
|
|
3085
|
+
FCacheStatus(): boolean;
|
|
3086
|
+
CacheStatus(bstrStatus: string): void;
|
|
3087
|
+
SetDefaultSpecName(bstrSpecName: string): void;
|
|
3088
|
+
GetImexTblName(): string;
|
|
3089
|
+
GetLinkedListProperty(bstrTableName: string, bstrPropertyName: string, fServer: boolean): string;
|
|
3090
|
+
OpenEmScript(pProperty: AccessProperty, OpenMode: number, Extra: number, Version: number): number;
|
|
3091
|
+
GetDisabledExtensions(): string;
|
|
3092
|
+
GetObjPubOption(bstrObjectName: string, iobjtyp: AcObjectType, fTablesAsClient: boolean): number;
|
|
3093
|
+
FIsPublishedXasTable(bstrObjectName: string): boolean;
|
|
3094
|
+
FIsXasDb(): boolean;
|
|
3095
|
+
FIsValidXasObjectName(bstrObjectName: string, iobjtyp: AcObjectType): boolean;
|
|
3096
|
+
LoadResourceLibrary(bstrObjectName: string): any;
|
|
3097
|
+
}
|
|
3098
|
+
interface DefaultWebOptions{
|
|
3099
|
+
readonly Application: Application;
|
|
3100
|
+
readonly Parent: object | any;
|
|
3101
|
+
HyperlinkColor: AcColorIndex;
|
|
3102
|
+
FollowedHyperlinkColor: AcColorIndex;
|
|
3103
|
+
UnderlineHyperlinks: boolean;
|
|
3104
|
+
OrganizeInFolder: boolean;
|
|
3105
|
+
UseLongFileNames: boolean;
|
|
3106
|
+
CheckIfOfficeIsHTMLEditor: boolean;
|
|
3107
|
+
DownloadComponents: boolean;
|
|
3108
|
+
LocationOfComponents: string;
|
|
3109
|
+
Encoding: MsoEncoding;
|
|
3110
|
+
AlwaysSaveInDefaultEncoding: boolean;
|
|
3111
|
+
readonly FolderSuffix: string;
|
|
3112
|
+
TargetBrowser: MsoTargetBrowser;
|
|
3113
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3114
|
+
}
|
|
3115
|
+
interface WebOptions{
|
|
3116
|
+
readonly Application: Application;
|
|
3117
|
+
readonly Parent: object | any;
|
|
3118
|
+
OrganizeInFolder: boolean;
|
|
3119
|
+
UseLongFileNames: boolean;
|
|
3120
|
+
DownloadComponents: boolean;
|
|
3121
|
+
LocationOfComponents: string;
|
|
3122
|
+
Encoding: MsoEncoding;
|
|
3123
|
+
readonly FolderSuffix: string;
|
|
3124
|
+
UseDefaultFolderSuffix(): void;
|
|
3125
|
+
TargetBrowser: MsoTargetBrowser;
|
|
3126
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3127
|
+
}
|
|
3128
|
+
interface Printer{
|
|
3129
|
+
ColorMode: AcPrintColor;
|
|
3130
|
+
Copies: number;
|
|
3131
|
+
readonly DeviceName: string;
|
|
3132
|
+
readonly DriverName: string;
|
|
3133
|
+
Duplex: AcPrintDuplex;
|
|
3134
|
+
Orientation: AcPrintOrientation;
|
|
3135
|
+
PaperBin: AcPrintPaperBin;
|
|
3136
|
+
PaperSize: AcPrintPaperSize;
|
|
3137
|
+
readonly Port: string;
|
|
3138
|
+
PrintQuality: AcPrintObjQuality;
|
|
3139
|
+
LeftMargin: number;
|
|
3140
|
+
RightMargin: number;
|
|
3141
|
+
TopMargin: number;
|
|
3142
|
+
BottomMargin: number;
|
|
3143
|
+
DataOnly: boolean;
|
|
3144
|
+
ItemsAcross: number;
|
|
3145
|
+
RowSpacing: number;
|
|
3146
|
+
ColumnSpacing: number;
|
|
3147
|
+
DefaultSize: boolean;
|
|
3148
|
+
ItemSizeWidth: number;
|
|
3149
|
+
ItemSizeHeight: number;
|
|
3150
|
+
ItemLayout: AcPrintItemLayout;
|
|
3151
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3152
|
+
}
|
|
3153
|
+
interface Printers{
|
|
3154
|
+
readonly Application: Application;
|
|
3155
|
+
readonly Parent: object | any;
|
|
3156
|
+
Item(Index: any): Printer;
|
|
3157
|
+
readonly Count: number;
|
|
3158
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3159
|
+
}
|
|
3160
|
+
interface Form2{
|
|
3161
|
+
FormName: string;
|
|
3162
|
+
RecordSource: string;
|
|
3163
|
+
Filter: string;
|
|
3164
|
+
FilterOn: boolean;
|
|
3165
|
+
OrderBy: string;
|
|
3166
|
+
OrderByOn: boolean;
|
|
3167
|
+
AllowFilters: boolean;
|
|
3168
|
+
Caption: string;
|
|
3169
|
+
DefaultView: number;
|
|
3170
|
+
ViewsAllowed: number;
|
|
3171
|
+
AllowEditing: boolean;
|
|
3172
|
+
DefaultEditing: number;
|
|
3173
|
+
AllowEdits: boolean;
|
|
3174
|
+
AllowDeletions: boolean;
|
|
3175
|
+
AllowAdditions: boolean;
|
|
3176
|
+
DataEntry: boolean;
|
|
3177
|
+
AllowUpdating: number;
|
|
3178
|
+
RecordsetType: number;
|
|
3179
|
+
RecordLocks: number;
|
|
3180
|
+
ScrollBars: number;
|
|
3181
|
+
RecordSelectors: boolean;
|
|
3182
|
+
NavigationButtons: boolean;
|
|
3183
|
+
DividingLines: boolean;
|
|
3184
|
+
AutoResize: boolean;
|
|
3185
|
+
AutoCenter: boolean;
|
|
3186
|
+
PopUp: boolean;
|
|
3187
|
+
Modal: boolean;
|
|
3188
|
+
BorderStyle: number;
|
|
3189
|
+
ControlBox: boolean;
|
|
3190
|
+
MinButton: boolean;
|
|
3191
|
+
MaxButton: boolean;
|
|
3192
|
+
MinMaxButtons: number;
|
|
3193
|
+
CloseButton: boolean;
|
|
3194
|
+
WhatsThisButton: boolean;
|
|
3195
|
+
Width: number;
|
|
3196
|
+
Picture: string;
|
|
3197
|
+
PictureType: number;
|
|
3198
|
+
PictureSizeMode: number;
|
|
3199
|
+
PictureAlignment: number;
|
|
3200
|
+
PictureTiling: boolean;
|
|
3201
|
+
Cycle: number;
|
|
3202
|
+
MenuBar: string;
|
|
3203
|
+
Toolbar: string;
|
|
3204
|
+
ShortcutMenu: boolean;
|
|
3205
|
+
ShortcutMenuBar: string;
|
|
3206
|
+
GridX: number;
|
|
3207
|
+
GridY: number;
|
|
3208
|
+
LayoutForPrint: boolean;
|
|
3209
|
+
FastLaserPrinting: boolean;
|
|
3210
|
+
HelpFile: string;
|
|
3211
|
+
HelpContextId: number;
|
|
3212
|
+
RowHeight: number;
|
|
3213
|
+
DatasheetFontName: string;
|
|
3214
|
+
DatasheetFontHeight: number;
|
|
3215
|
+
DatasheetFontWeight: number;
|
|
3216
|
+
DatasheetFontItalic: boolean;
|
|
3217
|
+
DatasheetFontUnderline: boolean;
|
|
3218
|
+
TabularCharSet: number;
|
|
3219
|
+
DatasheetGridlinesBehavior: number;
|
|
3220
|
+
DatasheetGridlinesColor: number;
|
|
3221
|
+
DatasheetCellsEffect: number;
|
|
3222
|
+
DatasheetForeColor: number;
|
|
3223
|
+
ShowGrid: boolean;
|
|
3224
|
+
DatasheetBackColor: number;
|
|
3225
|
+
Hwnd: number;
|
|
3226
|
+
Count: number;
|
|
3227
|
+
Page: number;
|
|
3228
|
+
Pages: number;
|
|
3229
|
+
LogicalPageWidth: number;
|
|
3230
|
+
LogicalPageHeight: number;
|
|
3231
|
+
ZoomControl: number;
|
|
3232
|
+
Visible: boolean;
|
|
3233
|
+
Painting: boolean;
|
|
3234
|
+
PrtMip: any;
|
|
3235
|
+
PrtDevMode: any;
|
|
3236
|
+
PrtDevNames: any;
|
|
3237
|
+
FrozenColumns: number;
|
|
3238
|
+
Bookmark: any;
|
|
3239
|
+
TabularFamily: number;
|
|
3240
|
+
_Name: string;
|
|
3241
|
+
PaletteSource: string;
|
|
3242
|
+
Tag: string;
|
|
3243
|
+
PaintPalette: any;
|
|
3244
|
+
OnMenu: string;
|
|
3245
|
+
OpenArgs: any;
|
|
3246
|
+
ConnectSynch: number;
|
|
3247
|
+
OnCurrent: string;
|
|
3248
|
+
OnInsert: string;
|
|
3249
|
+
BeforeInsert: string;
|
|
3250
|
+
AfterInsert: string;
|
|
3251
|
+
BeforeUpdate: string;
|
|
3252
|
+
AfterUpdate: string;
|
|
3253
|
+
OnDirty: string;
|
|
3254
|
+
OnDelete: string;
|
|
3255
|
+
BeforeDelConfirm: string;
|
|
3256
|
+
AfterDelConfirm: string;
|
|
3257
|
+
OnOpen: string;
|
|
3258
|
+
OnLoad: string;
|
|
3259
|
+
OnResize: string;
|
|
3260
|
+
OnUnload: string;
|
|
3261
|
+
OnClose: string;
|
|
3262
|
+
OnActivate: string;
|
|
3263
|
+
OnDeactivate: string;
|
|
3264
|
+
OnGotFocus: string;
|
|
3265
|
+
OnLostFocus: string;
|
|
3266
|
+
OnClick: string;
|
|
3267
|
+
OnDblClick: string;
|
|
3268
|
+
OnMouseDown: string;
|
|
3269
|
+
OnMouseMove: string;
|
|
3270
|
+
OnMouseUp: string;
|
|
3271
|
+
OnKeyDown: string;
|
|
3272
|
+
OnKeyUp: string;
|
|
3273
|
+
OnKeyPress: string;
|
|
3274
|
+
KeyPreview: boolean;
|
|
3275
|
+
OnError: string;
|
|
3276
|
+
OnFilter: string;
|
|
3277
|
+
OnApplyFilter: string;
|
|
3278
|
+
OnTimer: string;
|
|
3279
|
+
TimerInterval: number;
|
|
3280
|
+
Dirty: boolean;
|
|
3281
|
+
WindowWidth: number;
|
|
3282
|
+
WindowHeight: number;
|
|
3283
|
+
CurrentView: number;
|
|
3284
|
+
CurrentSectionTop: number;
|
|
3285
|
+
CurrentSectionLeft: number;
|
|
3286
|
+
SelLeft: number;
|
|
3287
|
+
SelTop: number;
|
|
3288
|
+
SelWidth: number;
|
|
3289
|
+
SelHeight: number;
|
|
3290
|
+
CurrentRecord: number;
|
|
3291
|
+
PictureData: any;
|
|
3292
|
+
InsideHeight: number;
|
|
3293
|
+
InsideWidth: number;
|
|
3294
|
+
PicturePalette: any;
|
|
3295
|
+
HasModule: boolean;
|
|
3296
|
+
acHiddenCurrentPage: number;
|
|
3297
|
+
Orientation: number;
|
|
3298
|
+
AllowDesignChanges: boolean;
|
|
3299
|
+
ServerFilter: string;
|
|
3300
|
+
ServerFilterByForm: boolean;
|
|
3301
|
+
MaxRecords: number;
|
|
3302
|
+
UniqueTable: string;
|
|
3303
|
+
ResyncCommand: string;
|
|
3304
|
+
InputParameters: string;
|
|
3305
|
+
MaxRecButton: boolean;
|
|
3306
|
+
readonly Application: Application;
|
|
3307
|
+
readonly Parent: object | any;
|
|
3308
|
+
readonly NewRecord: number;
|
|
3309
|
+
Undo(): void;
|
|
3310
|
+
readonly ActiveControl: Control;
|
|
3311
|
+
DefaultControl(ControlType: number): Control;
|
|
3312
|
+
readonly Dynaset: object | any;
|
|
3313
|
+
readonly RecordsetClone: object | any;
|
|
3314
|
+
readonly Recordset: object | any;
|
|
3315
|
+
Section(Index: any): Section;
|
|
3316
|
+
readonly Form: Form3;
|
|
3317
|
+
readonly Module: Module;
|
|
3318
|
+
readonly Properties: Properties;
|
|
3319
|
+
readonly ConnectControl: Control;
|
|
3320
|
+
Recalc(): void;
|
|
3321
|
+
Requery(): void;
|
|
3322
|
+
Refresh(): void;
|
|
3323
|
+
Repaint(): void;
|
|
3324
|
+
GoToPage(PageNumber: number, Right?: number, Down?: number): void;
|
|
3325
|
+
SetFocus(): void;
|
|
3326
|
+
readonly Controls: Controls;
|
|
3327
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
3328
|
+
Name: string;
|
|
3329
|
+
SubdatasheetHeight: number;
|
|
3330
|
+
SubdatasheetExpanded: boolean;
|
|
3331
|
+
DatasheetBorderLineStyle: number;
|
|
3332
|
+
DatasheetColumnHeaderUnderlineStyle: number;
|
|
3333
|
+
HorizontalDatasheetGridlineStyle: number;
|
|
3334
|
+
VerticalDatasheetGridlineStyle: number;
|
|
3335
|
+
readonly WindowTop: number;
|
|
3336
|
+
readonly WindowLeft: number;
|
|
3337
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
3338
|
+
OnUndo: string;
|
|
3339
|
+
OnRecordExit: string;
|
|
3340
|
+
readonly PivotTable: object | any;
|
|
3341
|
+
readonly ChartSpace: object | any;
|
|
3342
|
+
Printer: Printer;
|
|
3343
|
+
Moveable: boolean;
|
|
3344
|
+
BeginBatchEdit: string;
|
|
3345
|
+
UndoBatchEdit: string;
|
|
3346
|
+
BeforeBeginTransaction: string;
|
|
3347
|
+
AfterBeginTransaction: string;
|
|
3348
|
+
BeforeCommitTransaction: string;
|
|
3349
|
+
AfterCommitTransaction: string;
|
|
3350
|
+
RollbackTransaction: string;
|
|
3351
|
+
AllowFormView: boolean;
|
|
3352
|
+
AllowDatasheetView: boolean;
|
|
3353
|
+
AllowPivotTableView: boolean;
|
|
3354
|
+
AllowPivotChartView: boolean;
|
|
3355
|
+
OnConnect: string;
|
|
3356
|
+
OnDisconnect: string;
|
|
3357
|
+
PivotTableChange: string;
|
|
3358
|
+
Query: string;
|
|
3359
|
+
BeforeQuery: string;
|
|
3360
|
+
SelectionChange: string;
|
|
3361
|
+
CommandBeforeExecute: string;
|
|
3362
|
+
CommandChecked: string;
|
|
3363
|
+
CommandEnabled: string;
|
|
3364
|
+
CommandExecute: string;
|
|
3365
|
+
DataSetChange: string;
|
|
3366
|
+
BeforeScreenTip: string;
|
|
3367
|
+
AfterFinalRender: string;
|
|
3368
|
+
AfterRender: string;
|
|
3369
|
+
AfterLayout: string;
|
|
3370
|
+
BeforeRender: string;
|
|
3371
|
+
MouseWheel: string;
|
|
3372
|
+
ViewChange: string;
|
|
3373
|
+
DataChange: string;
|
|
3374
|
+
FetchDefaults: boolean;
|
|
3375
|
+
BatchUpdates: boolean;
|
|
3376
|
+
CommitOnClose: number;
|
|
3377
|
+
CommitOnNavigation: boolean;
|
|
3378
|
+
UseDefaultPrinter: boolean;
|
|
3379
|
+
RecordSourceQualifier: string;
|
|
3380
|
+
}
|
|
3381
|
+
interface Report2{
|
|
3382
|
+
FormName: string;
|
|
3383
|
+
RecordSource: string;
|
|
3384
|
+
Filter: string;
|
|
3385
|
+
FilterOn: boolean;
|
|
3386
|
+
OrderBy: string;
|
|
3387
|
+
OrderByOn: boolean;
|
|
3388
|
+
ServerFilter: string;
|
|
3389
|
+
Caption: string;
|
|
3390
|
+
RecordLocks: number;
|
|
3391
|
+
PageHeader: number;
|
|
3392
|
+
PageFooter: number;
|
|
3393
|
+
DateGrouping: number;
|
|
3394
|
+
GrpKeepTogether: number;
|
|
3395
|
+
MinButton: boolean;
|
|
3396
|
+
MaxButton: boolean;
|
|
3397
|
+
Width: number;
|
|
3398
|
+
Picture: string;
|
|
3399
|
+
PictureType: number;
|
|
3400
|
+
PictureSizeMode: number;
|
|
3401
|
+
PictureAlignment: number;
|
|
3402
|
+
PictureTiling: boolean;
|
|
3403
|
+
PicturePages: number;
|
|
3404
|
+
MenuBar: string;
|
|
3405
|
+
Toolbar: string;
|
|
3406
|
+
ShortcutMenuBar: string;
|
|
3407
|
+
GridX: number;
|
|
3408
|
+
GridY: number;
|
|
3409
|
+
LayoutForPrint: boolean;
|
|
3410
|
+
FastLaserPrinting: boolean;
|
|
3411
|
+
HelpFile: string;
|
|
3412
|
+
HelpContextId: number;
|
|
3413
|
+
Hwnd: number;
|
|
3414
|
+
Count: number;
|
|
3415
|
+
Page: number;
|
|
3416
|
+
Pages: number;
|
|
3417
|
+
LogicalPageWidth: number;
|
|
3418
|
+
LogicalPageHeight: number;
|
|
3419
|
+
ZoomControl: number;
|
|
3420
|
+
HasData: number;
|
|
3421
|
+
Left: number;
|
|
3422
|
+
Top: number;
|
|
3423
|
+
Height: number;
|
|
3424
|
+
PrintSection: boolean;
|
|
3425
|
+
NextRecord: boolean;
|
|
3426
|
+
MoveLayout: boolean;
|
|
3427
|
+
FormatCount: number;
|
|
3428
|
+
PrintCount: number;
|
|
3429
|
+
Visible: boolean;
|
|
3430
|
+
Painting: boolean;
|
|
3431
|
+
PrtMip: any;
|
|
3432
|
+
PrtDevMode: any;
|
|
3433
|
+
PrtDevNames: any;
|
|
3434
|
+
ForeColor: number;
|
|
3435
|
+
CurrentX: number;
|
|
3436
|
+
CurrentY: number;
|
|
3437
|
+
ScaleHeight: number;
|
|
3438
|
+
ScaleLeft: number;
|
|
3439
|
+
ScaleMode: number;
|
|
3440
|
+
ScaleTop: number;
|
|
3441
|
+
ScaleWidth: number;
|
|
3442
|
+
FontBold: number;
|
|
3443
|
+
FontItalic: number;
|
|
3444
|
+
FontName: string;
|
|
3445
|
+
FontSize: number;
|
|
3446
|
+
FontUnderline: number;
|
|
3447
|
+
DrawMode: number;
|
|
3448
|
+
DrawStyle: number;
|
|
3449
|
+
DrawWidth: number;
|
|
3450
|
+
FillColor: number;
|
|
3451
|
+
FillStyle: number;
|
|
3452
|
+
_Name: string;
|
|
3453
|
+
PaletteSource: string;
|
|
3454
|
+
Tag: string;
|
|
3455
|
+
PaintPalette: any;
|
|
3456
|
+
OnMenu: string;
|
|
3457
|
+
OnOpen: string;
|
|
3458
|
+
OnClose: string;
|
|
3459
|
+
OnActivate: string;
|
|
3460
|
+
OnDeactivate: string;
|
|
3461
|
+
OnNoData: string;
|
|
3462
|
+
OnPage: string;
|
|
3463
|
+
OnError: string;
|
|
3464
|
+
Dirty: boolean;
|
|
3465
|
+
CurrentRecord: number;
|
|
3466
|
+
PictureData: any;
|
|
3467
|
+
PicturePalette: any;
|
|
3468
|
+
HasModule: boolean;
|
|
3469
|
+
acHiddenCurrentPage: number;
|
|
3470
|
+
Orientation: number;
|
|
3471
|
+
InputParameters: string;
|
|
3472
|
+
readonly Application: Application;
|
|
3473
|
+
readonly Parent: object | any;
|
|
3474
|
+
readonly ActiveControl: Control;
|
|
3475
|
+
DefaultControl(ControlType: number): Control;
|
|
3476
|
+
Circle(flags: number, X: number, Y: number, radius: number, color: number, start: number, end: number, aspect: number): void;
|
|
3477
|
+
Line(flags: number, x1: number, y1: number, x2: number, y2: number, color: number): void;
|
|
3478
|
+
PSet(flags: number, X: number, Y: number, color: number): void;
|
|
3479
|
+
Scale(flags: number, x1: number, y1: number, x2: number, y2: number): void;
|
|
3480
|
+
TextWidth(Expr: string): number;
|
|
3481
|
+
TextHeight(Expr: string): number;
|
|
3482
|
+
Print(Expr: string): void;
|
|
3483
|
+
Section(Index: any): Section;
|
|
3484
|
+
GroupLevel(Index: number): GroupLevel;
|
|
3485
|
+
readonly Report: Report3;
|
|
3486
|
+
readonly Module: Module;
|
|
3487
|
+
readonly Properties: Properties;
|
|
3488
|
+
readonly Controls: Controls;
|
|
3489
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
3490
|
+
Name: string;
|
|
3491
|
+
AutoResize: boolean;
|
|
3492
|
+
AutoCenter: boolean;
|
|
3493
|
+
PopUp: boolean;
|
|
3494
|
+
Modal: boolean;
|
|
3495
|
+
BorderStyle: number;
|
|
3496
|
+
ControlBox: boolean;
|
|
3497
|
+
MinMaxButtons: number;
|
|
3498
|
+
CloseButton: boolean;
|
|
3499
|
+
WindowWidth: number;
|
|
3500
|
+
WindowHeight: number;
|
|
3501
|
+
readonly WindowTop: number;
|
|
3502
|
+
readonly WindowLeft: number;
|
|
3503
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
3504
|
+
OpenArgs: any;
|
|
3505
|
+
Printer: Printer;
|
|
3506
|
+
Moveable: boolean;
|
|
3507
|
+
UseDefaultPrinter: boolean;
|
|
3508
|
+
readonly Recordset: object | any;
|
|
3509
|
+
RecordSourceQualifier: string;
|
|
3510
|
+
readonly Shape: string;
|
|
3511
|
+
}
|
|
3512
|
+
interface AdditionalData{
|
|
3513
|
+
Name: string;
|
|
3514
|
+
Item(Index: any): AdditionalData;
|
|
3515
|
+
readonly Count: number;
|
|
3516
|
+
Add(var_: string): AdditionalData;
|
|
3517
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3518
|
+
}
|
|
3519
|
+
interface AutoCorrect{
|
|
3520
|
+
DisplayAutoCorrectOptions: boolean;
|
|
3521
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3522
|
+
}
|
|
3523
|
+
interface DependencyObjects{
|
|
3524
|
+
readonly Application: Application;
|
|
3525
|
+
readonly Parent: object | any;
|
|
3526
|
+
Item(Index: any): AccessObject;
|
|
3527
|
+
readonly Count: number;
|
|
3528
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3529
|
+
}
|
|
3530
|
+
interface DependencyInfo{
|
|
3531
|
+
readonly Parent: object | any;
|
|
3532
|
+
readonly Dependants: DependencyObjects;
|
|
3533
|
+
readonly Dependencies: DependencyObjects;
|
|
3534
|
+
readonly OutOfDateObjects: DependencyObjects;
|
|
3535
|
+
readonly InsufficientPermissions: DependencyObjects;
|
|
3536
|
+
readonly UnsupportedObjects: DependencyObjects;
|
|
3537
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3538
|
+
}
|
|
3539
|
+
interface SmartTags{
|
|
3540
|
+
readonly Application: Application;
|
|
3541
|
+
readonly Parent: object | any;
|
|
3542
|
+
Item(Index: any): SmartTag;
|
|
3543
|
+
readonly Count: number;
|
|
3544
|
+
Add(Name: string): SmartTag;
|
|
3545
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3546
|
+
}
|
|
3547
|
+
interface SmartTagAction{
|
|
3548
|
+
readonly Application: Application;
|
|
3549
|
+
readonly Parent: object | any;
|
|
3550
|
+
readonly Name: string;
|
|
3551
|
+
Execute(): void;
|
|
3552
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3553
|
+
}
|
|
3554
|
+
interface SmartTagActions{
|
|
3555
|
+
readonly Application: Application;
|
|
3556
|
+
readonly Count: number;
|
|
3557
|
+
readonly Parent: object | any;
|
|
3558
|
+
Item(Index: any): SmartTagAction;
|
|
3559
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3560
|
+
}
|
|
3561
|
+
interface SmartTagProperty{
|
|
3562
|
+
Name: string;
|
|
3563
|
+
Value: string;
|
|
3564
|
+
Delete(): void;
|
|
3565
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3566
|
+
}
|
|
3567
|
+
interface SmartTagProperties{
|
|
3568
|
+
readonly Application: Application;
|
|
3569
|
+
readonly Count: number;
|
|
3570
|
+
readonly Parent: object | any;
|
|
3571
|
+
Item(Index: any): SmartTagProperty;
|
|
3572
|
+
Add(Name: string, Value: any): SmartTagProperty;
|
|
3573
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3574
|
+
}
|
|
3575
|
+
interface SmartTag{
|
|
3576
|
+
readonly Application: Application;
|
|
3577
|
+
readonly Name: string;
|
|
3578
|
+
readonly Parent: object | any;
|
|
3579
|
+
readonly Properties: SmartTagProperties;
|
|
3580
|
+
readonly SmartTagActions: SmartTagActions;
|
|
3581
|
+
readonly XML: string;
|
|
3582
|
+
Delete(): void;
|
|
3583
|
+
readonly IsMissing: boolean;
|
|
3584
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3585
|
+
}
|
|
3586
|
+
interface mportExportSpecification{
|
|
3587
|
+
readonly Application: Application;
|
|
3588
|
+
readonly Parent: object | any;
|
|
3589
|
+
Name: string;
|
|
3590
|
+
Execute(Prompt?: any): void;
|
|
3591
|
+
Delete(): void;
|
|
3592
|
+
XML: string;
|
|
3593
|
+
Description: string;
|
|
3594
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3595
|
+
}
|
|
3596
|
+
interface mportExportSpecifications{
|
|
3597
|
+
readonly Application: Application;
|
|
3598
|
+
readonly Count: number;
|
|
3599
|
+
readonly Parent: object | any;
|
|
3600
|
+
Item(Index: any): mportExportSpecification;
|
|
3601
|
+
Add(Name: string, SpecificationDefinition: string): mportExportSpecification;
|
|
3602
|
+
IsMemberSafe(dispid: number): boolean;
|
|
3603
|
+
}
|
|
3604
|
+
interface Form3{
|
|
3605
|
+
FormName: string;
|
|
3606
|
+
RecordSource: string;
|
|
3607
|
+
Filter: string;
|
|
3608
|
+
FilterOn: boolean;
|
|
3609
|
+
OrderBy: string;
|
|
3610
|
+
OrderByOn: boolean;
|
|
3611
|
+
AllowFilters: boolean;
|
|
3612
|
+
Caption: string;
|
|
3613
|
+
DefaultView: number;
|
|
3614
|
+
ViewsAllowed: number;
|
|
3615
|
+
AllowEditing: boolean;
|
|
3616
|
+
DefaultEditing: number;
|
|
3617
|
+
AllowEdits: boolean;
|
|
3618
|
+
AllowDeletions: boolean;
|
|
3619
|
+
AllowAdditions: boolean;
|
|
3620
|
+
DataEntry: boolean;
|
|
3621
|
+
AllowUpdating: number;
|
|
3622
|
+
RecordsetType: number;
|
|
3623
|
+
RecordLocks: number;
|
|
3624
|
+
ScrollBars: number;
|
|
3625
|
+
RecordSelectors: boolean;
|
|
3626
|
+
NavigationButtons: boolean;
|
|
3627
|
+
DividingLines: boolean;
|
|
3628
|
+
AutoResize: boolean;
|
|
3629
|
+
AutoCenter: boolean;
|
|
3630
|
+
PopUp: boolean;
|
|
3631
|
+
Modal: boolean;
|
|
3632
|
+
BorderStyle: number;
|
|
3633
|
+
ControlBox: boolean;
|
|
3634
|
+
MinButton: boolean;
|
|
3635
|
+
MaxButton: boolean;
|
|
3636
|
+
MinMaxButtons: number;
|
|
3637
|
+
CloseButton: boolean;
|
|
3638
|
+
WhatsThisButton: boolean;
|
|
3639
|
+
Width: number;
|
|
3640
|
+
Picture: string;
|
|
3641
|
+
PictureType: number;
|
|
3642
|
+
PictureSizeMode: number;
|
|
3643
|
+
PictureAlignment: number;
|
|
3644
|
+
PictureTiling: boolean;
|
|
3645
|
+
Cycle: number;
|
|
3646
|
+
MenuBar: string;
|
|
3647
|
+
Toolbar: string;
|
|
3648
|
+
ShortcutMenu: boolean;
|
|
3649
|
+
ShortcutMenuBar: string;
|
|
3650
|
+
GridX: number;
|
|
3651
|
+
GridY: number;
|
|
3652
|
+
LayoutForPrint: boolean;
|
|
3653
|
+
FastLaserPrinting: boolean;
|
|
3654
|
+
HelpFile: string;
|
|
3655
|
+
HelpContextId: number;
|
|
3656
|
+
RowHeight: number;
|
|
3657
|
+
DatasheetFontName: string;
|
|
3658
|
+
DatasheetFontHeight: number;
|
|
3659
|
+
DatasheetFontWeight: number;
|
|
3660
|
+
DatasheetFontItalic: boolean;
|
|
3661
|
+
DatasheetFontUnderline: boolean;
|
|
3662
|
+
TabularCharSet: number;
|
|
3663
|
+
DatasheetGridlinesBehavior: number;
|
|
3664
|
+
DatasheetGridlinesColor: number;
|
|
3665
|
+
DatasheetCellsEffect: number;
|
|
3666
|
+
DatasheetForeColor: number;
|
|
3667
|
+
ShowGrid: boolean;
|
|
3668
|
+
DatasheetBackColor: number;
|
|
3669
|
+
Hwnd: number;
|
|
3670
|
+
Count: number;
|
|
3671
|
+
Page: number;
|
|
3672
|
+
Pages: number;
|
|
3673
|
+
LogicalPageWidth: number;
|
|
3674
|
+
LogicalPageHeight: number;
|
|
3675
|
+
ZoomControl: number;
|
|
3676
|
+
Visible: boolean;
|
|
3677
|
+
Painting: boolean;
|
|
3678
|
+
PrtMip: any;
|
|
3679
|
+
PrtDevMode: any;
|
|
3680
|
+
PrtDevNames: any;
|
|
3681
|
+
FrozenColumns: number;
|
|
3682
|
+
Bookmark: any;
|
|
3683
|
+
TabularFamily: number;
|
|
3684
|
+
_Name: string;
|
|
3685
|
+
PaletteSource: string;
|
|
3686
|
+
Tag: string;
|
|
3687
|
+
PaintPalette: any;
|
|
3688
|
+
OnMenu: string;
|
|
3689
|
+
OpenArgs: any;
|
|
3690
|
+
ConnectSynch: number;
|
|
3691
|
+
OnCurrent: string;
|
|
3692
|
+
OnInsert: string;
|
|
3693
|
+
BeforeInsert: string;
|
|
3694
|
+
AfterInsert: string;
|
|
3695
|
+
BeforeUpdate: string;
|
|
3696
|
+
AfterUpdate: string;
|
|
3697
|
+
OnDirty: string;
|
|
3698
|
+
OnDelete: string;
|
|
3699
|
+
BeforeDelConfirm: string;
|
|
3700
|
+
AfterDelConfirm: string;
|
|
3701
|
+
OnOpen: string;
|
|
3702
|
+
OnLoad: string;
|
|
3703
|
+
OnResize: string;
|
|
3704
|
+
OnUnload: string;
|
|
3705
|
+
OnClose: string;
|
|
3706
|
+
OnActivate: string;
|
|
3707
|
+
OnDeactivate: string;
|
|
3708
|
+
OnGotFocus: string;
|
|
3709
|
+
OnLostFocus: string;
|
|
3710
|
+
OnClick: string;
|
|
3711
|
+
OnDblClick: string;
|
|
3712
|
+
OnMouseDown: string;
|
|
3713
|
+
OnMouseMove: string;
|
|
3714
|
+
OnMouseUp: string;
|
|
3715
|
+
OnKeyDown: string;
|
|
3716
|
+
OnKeyUp: string;
|
|
3717
|
+
OnKeyPress: string;
|
|
3718
|
+
KeyPreview: boolean;
|
|
3719
|
+
OnError: string;
|
|
3720
|
+
OnFilter: string;
|
|
3721
|
+
OnApplyFilter: string;
|
|
3722
|
+
OnTimer: string;
|
|
3723
|
+
TimerInterval: number;
|
|
3724
|
+
Dirty: boolean;
|
|
3725
|
+
WindowWidth: number;
|
|
3726
|
+
WindowHeight: number;
|
|
3727
|
+
CurrentView: number;
|
|
3728
|
+
CurrentSectionTop: number;
|
|
3729
|
+
CurrentSectionLeft: number;
|
|
3730
|
+
SelLeft: number;
|
|
3731
|
+
SelTop: number;
|
|
3732
|
+
SelWidth: number;
|
|
3733
|
+
SelHeight: number;
|
|
3734
|
+
CurrentRecord: number;
|
|
3735
|
+
PictureData: any;
|
|
3736
|
+
InsideHeight: number;
|
|
3737
|
+
InsideWidth: number;
|
|
3738
|
+
PicturePalette: any;
|
|
3739
|
+
HasModule: boolean;
|
|
3740
|
+
acHiddenCurrentPage: number;
|
|
3741
|
+
Orientation: number;
|
|
3742
|
+
AllowDesignChanges: boolean;
|
|
3743
|
+
ServerFilter: string;
|
|
3744
|
+
ServerFilterByForm: boolean;
|
|
3745
|
+
MaxRecords: number;
|
|
3746
|
+
UniqueTable: string;
|
|
3747
|
+
ResyncCommand: string;
|
|
3748
|
+
InputParameters: string;
|
|
3749
|
+
MaxRecButton: boolean;
|
|
3750
|
+
readonly Application: Application;
|
|
3751
|
+
readonly Parent: object | any;
|
|
3752
|
+
readonly NewRecord: number;
|
|
3753
|
+
Undo(): void;
|
|
3754
|
+
readonly ActiveControl: Control;
|
|
3755
|
+
DefaultControl(ControlType: number): Control;
|
|
3756
|
+
readonly Dynaset: object | any;
|
|
3757
|
+
readonly RecordsetClone: object | any;
|
|
3758
|
+
readonly Recordset: object | any;
|
|
3759
|
+
SectionOld(Index: any): Section;
|
|
3760
|
+
readonly Form: Form3;
|
|
3761
|
+
readonly Module: Module;
|
|
3762
|
+
readonly Properties: Properties;
|
|
3763
|
+
readonly ConnectControl: Control;
|
|
3764
|
+
Recalc(): void;
|
|
3765
|
+
Requery(): void;
|
|
3766
|
+
Refresh(): void;
|
|
3767
|
+
Repaint(): void;
|
|
3768
|
+
GoToPage(PageNumber: number, Right?: number, Down?: number): void;
|
|
3769
|
+
SetFocus(): void;
|
|
3770
|
+
readonly Controls: Controls;
|
|
3771
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
3772
|
+
Name: string;
|
|
3773
|
+
SubdatasheetHeight: number;
|
|
3774
|
+
SubdatasheetExpanded: boolean;
|
|
3775
|
+
DatasheetBorderLineStyle: number;
|
|
3776
|
+
DatasheetColumnHeaderUnderlineStyle: number;
|
|
3777
|
+
HorizontalDatasheetGridlineStyle: number;
|
|
3778
|
+
VerticalDatasheetGridlineStyle: number;
|
|
3779
|
+
readonly WindowTop: number;
|
|
3780
|
+
readonly WindowLeft: number;
|
|
3781
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
3782
|
+
OnUndo: string;
|
|
3783
|
+
OnRecordExit: string;
|
|
3784
|
+
readonly PivotTable: object | any;
|
|
3785
|
+
readonly ChartSpace: object | any;
|
|
3786
|
+
Printer: Printer;
|
|
3787
|
+
Moveable: boolean;
|
|
3788
|
+
BeginBatchEdit: string;
|
|
3789
|
+
UndoBatchEdit: string;
|
|
3790
|
+
BeforeBeginTransaction: string;
|
|
3791
|
+
AfterBeginTransaction: string;
|
|
3792
|
+
BeforeCommitTransaction: string;
|
|
3793
|
+
AfterCommitTransaction: string;
|
|
3794
|
+
RollbackTransaction: string;
|
|
3795
|
+
AllowFormView: boolean;
|
|
3796
|
+
AllowDatasheetView: boolean;
|
|
3797
|
+
AllowPivotTableView: boolean;
|
|
3798
|
+
AllowPivotChartView: boolean;
|
|
3799
|
+
OnConnect: string;
|
|
3800
|
+
OnDisconnect: string;
|
|
3801
|
+
PivotTableChange: string;
|
|
3802
|
+
Query: string;
|
|
3803
|
+
BeforeQuery: string;
|
|
3804
|
+
SelectionChange: string;
|
|
3805
|
+
CommandBeforeExecute: string;
|
|
3806
|
+
CommandChecked: string;
|
|
3807
|
+
CommandEnabled: string;
|
|
3808
|
+
CommandExecute: string;
|
|
3809
|
+
DataSetChange: string;
|
|
3810
|
+
BeforeScreenTip: string;
|
|
3811
|
+
AfterFinalRender: string;
|
|
3812
|
+
AfterRender: string;
|
|
3813
|
+
AfterLayout: string;
|
|
3814
|
+
BeforeRender: string;
|
|
3815
|
+
MouseWheel: string;
|
|
3816
|
+
ViewChange: string;
|
|
3817
|
+
DataChange: string;
|
|
3818
|
+
FetchDefaults: boolean;
|
|
3819
|
+
BatchUpdates: boolean;
|
|
3820
|
+
CommitOnClose: number;
|
|
3821
|
+
CommitOnNavigation: boolean;
|
|
3822
|
+
UseDefaultPrinter: boolean;
|
|
3823
|
+
RecordSourceQualifier: string;
|
|
3824
|
+
FilterOnLoad: boolean;
|
|
3825
|
+
OrderByOnLoad: boolean;
|
|
3826
|
+
SplitFormOrientation: AcSplitFormOrientation;
|
|
3827
|
+
SplitFormDatasheet: AcSplitFormDatasheet;
|
|
3828
|
+
SplitFormSplitterBar: boolean;
|
|
3829
|
+
SplitFormPrinting: AcSplitFormPrinting;
|
|
3830
|
+
SplitFormSplitterBarSave: boolean;
|
|
3831
|
+
NavigationCaption: string;
|
|
3832
|
+
OnCurrentMacro: string;
|
|
3833
|
+
BeforeInsertMacro: string;
|
|
3834
|
+
AfterInsertMacro: string;
|
|
3835
|
+
BeforeUpdateMacro: string;
|
|
3836
|
+
AfterUpdateMacro: string;
|
|
3837
|
+
OnDirtyMacro: string;
|
|
3838
|
+
OnDeleteMacro: string;
|
|
3839
|
+
BeforeDelConfirmMacro: string;
|
|
3840
|
+
AfterDelConfirmMacro: string;
|
|
3841
|
+
OnOpenMacro: string;
|
|
3842
|
+
OnLoadMacro: string;
|
|
3843
|
+
OnResizeMacro: string;
|
|
3844
|
+
OnUnloadMacro: string;
|
|
3845
|
+
OnCloseMacro: string;
|
|
3846
|
+
OnActivateMacro: string;
|
|
3847
|
+
OnDeactivateMacro: string;
|
|
3848
|
+
OnGotFocusMacro: string;
|
|
3849
|
+
OnLostFocusMacro: string;
|
|
3850
|
+
OnClickMacro: string;
|
|
3851
|
+
OnDblClickMacro: string;
|
|
3852
|
+
OnMouseDownMacro: string;
|
|
3853
|
+
OnMouseMoveMacro: string;
|
|
3854
|
+
OnMouseUpMacro: string;
|
|
3855
|
+
OnKeyDownMacro: string;
|
|
3856
|
+
OnKeyUpMacro: string;
|
|
3857
|
+
OnKeyPressMacro: string;
|
|
3858
|
+
OnErrorMacro: string;
|
|
3859
|
+
OnFilterMacro: string;
|
|
3860
|
+
OnApplyFilterMacro: string;
|
|
3861
|
+
OnTimerMacro: string;
|
|
3862
|
+
OnUndoMacro: string;
|
|
3863
|
+
OnRecordExitMacro: string;
|
|
3864
|
+
BeginBatchEditMacro: string;
|
|
3865
|
+
UndoBatchEditMacro: string;
|
|
3866
|
+
BeforeBeginTransactionMacro: string;
|
|
3867
|
+
AfterBeginTransactionMacro: string;
|
|
3868
|
+
BeforeCommitTransactionMacro: string;
|
|
3869
|
+
AfterCommitTransactionMacro: string;
|
|
3870
|
+
RollbackTransactionMacro: string;
|
|
3871
|
+
OnConnectMacro: string;
|
|
3872
|
+
OnDisconnectMacro: string;
|
|
3873
|
+
PivotTableChangeMacro: string;
|
|
3874
|
+
QueryMacro: string;
|
|
3875
|
+
BeforeQueryMacro: string;
|
|
3876
|
+
SelectionChangeMacro: string;
|
|
3877
|
+
CommandBeforeExecuteMacro: string;
|
|
3878
|
+
CommandCheckedMacro: string;
|
|
3879
|
+
CommandEnabledMacro: string;
|
|
3880
|
+
CommandExecuteMacro: string;
|
|
3881
|
+
DataSetChangeMacro: string;
|
|
3882
|
+
BeforeScreenTipMacro: string;
|
|
3883
|
+
AfterFinalRenderMacro: string;
|
|
3884
|
+
AfterRenderMacro: string;
|
|
3885
|
+
AfterLayoutMacro: string;
|
|
3886
|
+
BeforeRenderMacro: string;
|
|
3887
|
+
MouseWheelMacro: string;
|
|
3888
|
+
ViewChangeMacro: string;
|
|
3889
|
+
DataChangeMacro: string;
|
|
3890
|
+
AllowLayoutView: boolean;
|
|
3891
|
+
DatasheetAlternateBackColor: number;
|
|
3892
|
+
DisplayOnSharePointSite: number;
|
|
3893
|
+
SplitFormSize: number;
|
|
3894
|
+
Section(Index: any): Section;
|
|
3895
|
+
RibbonName: string;
|
|
3896
|
+
FitToScreen: boolean;
|
|
3897
|
+
}
|
|
3898
|
+
interface Report3{
|
|
3899
|
+
FormName: string;
|
|
3900
|
+
RecordSource: string;
|
|
3901
|
+
Filter: string;
|
|
3902
|
+
FilterOn: boolean;
|
|
3903
|
+
OrderBy: string;
|
|
3904
|
+
OrderByOn: boolean;
|
|
3905
|
+
ServerFilter: string;
|
|
3906
|
+
Caption: string;
|
|
3907
|
+
RecordLocks: number;
|
|
3908
|
+
PageHeader: number;
|
|
3909
|
+
PageFooter: number;
|
|
3910
|
+
DateGrouping: number;
|
|
3911
|
+
GrpKeepTogether: number;
|
|
3912
|
+
MinButton: boolean;
|
|
3913
|
+
MaxButton: boolean;
|
|
3914
|
+
Width: number;
|
|
3915
|
+
Picture: string;
|
|
3916
|
+
PictureType: number;
|
|
3917
|
+
PictureSizeMode: number;
|
|
3918
|
+
PictureAlignment: number;
|
|
3919
|
+
PictureTiling: boolean;
|
|
3920
|
+
PicturePages: number;
|
|
3921
|
+
MenuBar: string;
|
|
3922
|
+
Toolbar: string;
|
|
3923
|
+
ShortcutMenuBar: string;
|
|
3924
|
+
GridX: number;
|
|
3925
|
+
GridY: number;
|
|
3926
|
+
LayoutForPrint: boolean;
|
|
3927
|
+
FastLaserPrinting: boolean;
|
|
3928
|
+
HelpFile: string;
|
|
3929
|
+
HelpContextId: number;
|
|
3930
|
+
Hwnd: number;
|
|
3931
|
+
Count: number;
|
|
3932
|
+
Page: number;
|
|
3933
|
+
Pages: number;
|
|
3934
|
+
LogicalPageWidth: number;
|
|
3935
|
+
LogicalPageHeight: number;
|
|
3936
|
+
ZoomControl: number;
|
|
3937
|
+
HasData: number;
|
|
3938
|
+
Left: number;
|
|
3939
|
+
Top: number;
|
|
3940
|
+
Height: number;
|
|
3941
|
+
PrintSection: boolean;
|
|
3942
|
+
NextRecord: boolean;
|
|
3943
|
+
MoveLayout: boolean;
|
|
3944
|
+
FormatCount: number;
|
|
3945
|
+
PrintCount: number;
|
|
3946
|
+
Visible: boolean;
|
|
3947
|
+
Painting: boolean;
|
|
3948
|
+
PrtMip: any;
|
|
3949
|
+
PrtDevMode: any;
|
|
3950
|
+
PrtDevNames: any;
|
|
3951
|
+
ForeColor: number;
|
|
3952
|
+
CurrentX: number;
|
|
3953
|
+
CurrentY: number;
|
|
3954
|
+
ScaleHeight: number;
|
|
3955
|
+
ScaleLeft: number;
|
|
3956
|
+
ScaleMode: number;
|
|
3957
|
+
ScaleTop: number;
|
|
3958
|
+
ScaleWidth: number;
|
|
3959
|
+
FontBold: number;
|
|
3960
|
+
FontItalic: number;
|
|
3961
|
+
FontName: string;
|
|
3962
|
+
FontSize: number;
|
|
3963
|
+
FontUnderline: number;
|
|
3964
|
+
DrawMode: number;
|
|
3965
|
+
DrawStyle: number;
|
|
3966
|
+
DrawWidth: number;
|
|
3967
|
+
FillColor: number;
|
|
3968
|
+
FillStyle: number;
|
|
3969
|
+
_Name: string;
|
|
3970
|
+
PaletteSource: string;
|
|
3971
|
+
Tag: string;
|
|
3972
|
+
PaintPalette: any;
|
|
3973
|
+
OnMenu: string;
|
|
3974
|
+
OnOpen: string;
|
|
3975
|
+
OnClose: string;
|
|
3976
|
+
OnActivate: string;
|
|
3977
|
+
OnDeactivate: string;
|
|
3978
|
+
OnNoData: string;
|
|
3979
|
+
OnPage: string;
|
|
3980
|
+
OnError: string;
|
|
3981
|
+
Dirty: boolean;
|
|
3982
|
+
CurrentRecord: number;
|
|
3983
|
+
PictureData: any;
|
|
3984
|
+
PicturePalette: any;
|
|
3985
|
+
HasModule: boolean;
|
|
3986
|
+
acHiddenCurrentPage: number;
|
|
3987
|
+
Orientation: number;
|
|
3988
|
+
InputParameters: string;
|
|
3989
|
+
readonly Application: Application;
|
|
3990
|
+
readonly Parent: object | any;
|
|
3991
|
+
readonly ActiveControl: Control;
|
|
3992
|
+
DefaultControl(ControlType: number): Control;
|
|
3993
|
+
Circle(flags: number, X: number, Y: number, radius: number, color: number, start: number, end: number, aspect: number): void;
|
|
3994
|
+
Line(flags: number, x1: number, y1: number, x2: number, y2: number, color: number): void;
|
|
3995
|
+
PSet(flags: number, X: number, Y: number, color: number): void;
|
|
3996
|
+
Scale(flags: number, x1: number, y1: number, x2: number, y2: number): void;
|
|
3997
|
+
TextWidth(Expr: string): number;
|
|
3998
|
+
TextHeight(Expr: string): number;
|
|
3999
|
+
Print(Expr: string): void;
|
|
4000
|
+
SectionOld(Index: any): Section;
|
|
4001
|
+
GroupLevel(Index: number): GroupLevel;
|
|
4002
|
+
readonly Report: Report3;
|
|
4003
|
+
readonly Module: Module;
|
|
4004
|
+
readonly Properties: Properties;
|
|
4005
|
+
readonly Controls: Controls;
|
|
4006
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
4007
|
+
Name: string;
|
|
4008
|
+
AutoResize: boolean;
|
|
4009
|
+
AutoCenter: boolean;
|
|
4010
|
+
PopUp: boolean;
|
|
4011
|
+
Modal: boolean;
|
|
4012
|
+
BorderStyle: number;
|
|
4013
|
+
ControlBox: boolean;
|
|
4014
|
+
MinMaxButtons: number;
|
|
4015
|
+
CloseButton: boolean;
|
|
4016
|
+
WindowWidth: number;
|
|
4017
|
+
WindowHeight: number;
|
|
4018
|
+
readonly WindowTop: number;
|
|
4019
|
+
readonly WindowLeft: number;
|
|
4020
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
4021
|
+
OpenArgs: any;
|
|
4022
|
+
Printer: Printer;
|
|
4023
|
+
Moveable: boolean;
|
|
4024
|
+
UseDefaultPrinter: boolean;
|
|
4025
|
+
readonly Recordset: object | any;
|
|
4026
|
+
RecordSourceQualifier: string;
|
|
4027
|
+
readonly Shape: string;
|
|
4028
|
+
FilterOnLoad: boolean;
|
|
4029
|
+
OrderByOnLoad: boolean;
|
|
4030
|
+
DefaultView: number;
|
|
4031
|
+
AllowReportView: boolean;
|
|
4032
|
+
ScrollBars: number;
|
|
4033
|
+
Cycle: number;
|
|
4034
|
+
AllowDesignChanges: boolean;
|
|
4035
|
+
OnCurrent: string;
|
|
4036
|
+
KeyPreview: boolean;
|
|
4037
|
+
TimerInterval: number;
|
|
4038
|
+
CurrentView: number;
|
|
4039
|
+
Requery(): void;
|
|
4040
|
+
OnOpenMacro: string;
|
|
4041
|
+
OnCloseMacro: string;
|
|
4042
|
+
OnActivateMacro: string;
|
|
4043
|
+
OnDeactivateMacro: string;
|
|
4044
|
+
OnNoDataMacro: string;
|
|
4045
|
+
OnPageMacro: string;
|
|
4046
|
+
OnErrorMacro: string;
|
|
4047
|
+
OnCurrentMacro: string;
|
|
4048
|
+
OnLoadMacro: string;
|
|
4049
|
+
OnResizeMacro: string;
|
|
4050
|
+
OnUnloadMacro: string;
|
|
4051
|
+
OnGotFocusMacro: string;
|
|
4052
|
+
OnLostFocusMacro: string;
|
|
4053
|
+
OnClickMacro: string;
|
|
4054
|
+
OnDblClickMacro: string;
|
|
4055
|
+
OnMouseDownMacro: string;
|
|
4056
|
+
OnMouseMoveMacro: string;
|
|
4057
|
+
OnMouseUpMacro: string;
|
|
4058
|
+
OnKeyDownMacro: string;
|
|
4059
|
+
OnKeyUpMacro: string;
|
|
4060
|
+
OnKeyPressMacro: string;
|
|
4061
|
+
OnFilterMacro: string;
|
|
4062
|
+
OnApplyFilterMacro: string;
|
|
4063
|
+
OnTimerMacro: string;
|
|
4064
|
+
MouseWheelMacro: string;
|
|
4065
|
+
ShowPageMargins: boolean;
|
|
4066
|
+
FitToPage: boolean;
|
|
4067
|
+
AllowLayoutView: boolean;
|
|
4068
|
+
OnLoad: string;
|
|
4069
|
+
OnResize: string;
|
|
4070
|
+
OnUnload: string;
|
|
4071
|
+
OnGotFocus: string;
|
|
4072
|
+
OnLostFocus: string;
|
|
4073
|
+
OnClick: string;
|
|
4074
|
+
OnDblClick: string;
|
|
4075
|
+
OnMouseDown: string;
|
|
4076
|
+
OnMouseMove: string;
|
|
4077
|
+
OnMouseUp: string;
|
|
4078
|
+
OnKeyDown: string;
|
|
4079
|
+
OnKeyUp: string;
|
|
4080
|
+
OnKeyPress: string;
|
|
4081
|
+
OnFilter: string;
|
|
4082
|
+
OnApplyFilter: string;
|
|
4083
|
+
OnTimer: string;
|
|
4084
|
+
MouseWheel: string;
|
|
4085
|
+
DisplayOnSharePointSite: number;
|
|
4086
|
+
Section(Index: any): Section;
|
|
4087
|
+
RibbonName: string;
|
|
4088
|
+
}
|
|
4089
|
+
interface Attachment{
|
|
4090
|
+
readonly Application: Application;
|
|
4091
|
+
readonly Parent: object | any;
|
|
4092
|
+
readonly OldValue: any;
|
|
4093
|
+
readonly Properties: Properties;
|
|
4094
|
+
SizeToFit(): void;
|
|
4095
|
+
Requery(): void;
|
|
4096
|
+
Goto(): void;
|
|
4097
|
+
SetFocus(): void;
|
|
4098
|
+
readonly Controls: Children;
|
|
4099
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
4100
|
+
readonly Hyperlink: Hyperlink;
|
|
4101
|
+
EventProcPrefix: string;
|
|
4102
|
+
_Name: string;
|
|
4103
|
+
ControlType: number;
|
|
4104
|
+
PictureSizeMode: number;
|
|
4105
|
+
PictureAlignment: number;
|
|
4106
|
+
PictureTiling: boolean;
|
|
4107
|
+
Visible: boolean;
|
|
4108
|
+
DisplayWhen: number;
|
|
4109
|
+
Left: number;
|
|
4110
|
+
Top: number;
|
|
4111
|
+
Width: number;
|
|
4112
|
+
Height: number;
|
|
4113
|
+
BackStyle: number;
|
|
4114
|
+
BackColor: number;
|
|
4115
|
+
SpecialEffect: number;
|
|
4116
|
+
BorderStyle: number;
|
|
4117
|
+
OldBorderStyle: number;
|
|
4118
|
+
BorderColor: number;
|
|
4119
|
+
BorderWidth: number;
|
|
4120
|
+
BorderLineStyle: number;
|
|
4121
|
+
ControlTipText: string;
|
|
4122
|
+
HelpContextId: number;
|
|
4123
|
+
Section: number;
|
|
4124
|
+
ControlName: string;
|
|
4125
|
+
IsVisible: boolean;
|
|
4126
|
+
BeforeUpdate: string;
|
|
4127
|
+
AfterUpdate: string;
|
|
4128
|
+
OnEnter: string;
|
|
4129
|
+
OnExit: string;
|
|
4130
|
+
OnDirty: string;
|
|
4131
|
+
OnChange: string;
|
|
4132
|
+
OnGotFocus: string;
|
|
4133
|
+
OnLostFocus: string;
|
|
4134
|
+
OnClick: string;
|
|
4135
|
+
OnDblClick: string;
|
|
4136
|
+
OnMouseDown: string;
|
|
4137
|
+
OnMouseMove: string;
|
|
4138
|
+
OnMouseUp: string;
|
|
4139
|
+
OnKeyDown: string;
|
|
4140
|
+
OnKeyUp: string;
|
|
4141
|
+
OnKeyPress: string;
|
|
4142
|
+
OnAttachmentCurrent: string;
|
|
4143
|
+
BeforeUpdateMacro: string;
|
|
4144
|
+
AfterUpdateMacro: string;
|
|
4145
|
+
OnEnterMacro: string;
|
|
4146
|
+
OnExitMacro: string;
|
|
4147
|
+
OnDirtyMacro: string;
|
|
4148
|
+
OnChangeMacro: string;
|
|
4149
|
+
OnGotFocusMacro: string;
|
|
4150
|
+
OnLostFocusMacro: string;
|
|
4151
|
+
OnClickMacro: string;
|
|
4152
|
+
OnDblClickMacro: string;
|
|
4153
|
+
OnMouseDownMacro: string;
|
|
4154
|
+
OnMouseMoveMacro: string;
|
|
4155
|
+
OnMouseUpMacro: string;
|
|
4156
|
+
OnKeyDownMacro: string;
|
|
4157
|
+
OnKeyUpMacro: string;
|
|
4158
|
+
OnKeyPressMacro: string;
|
|
4159
|
+
OnAttachmentCurrentMacro: string;
|
|
4160
|
+
ShortcutMenuBar: string;
|
|
4161
|
+
InSelection: boolean;
|
|
4162
|
+
Tag: string;
|
|
4163
|
+
Name: string;
|
|
4164
|
+
DisplayAs: AcDisplayAs;
|
|
4165
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
4166
|
+
Forward(): void;
|
|
4167
|
+
Back(): void;
|
|
4168
|
+
readonly AttachmentCount: number;
|
|
4169
|
+
CurrentAttachment: number;
|
|
4170
|
+
FileName(var_?: any): string;
|
|
4171
|
+
FileType(var_?: any): string;
|
|
4172
|
+
FileURL(var_?: any): string;
|
|
4173
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4174
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
4175
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
4176
|
+
readonly Layout: AcLayoutType;
|
|
4177
|
+
LeftPadding: number;
|
|
4178
|
+
TopPadding: number;
|
|
4179
|
+
RightPadding: number;
|
|
4180
|
+
BottomPadding: number;
|
|
4181
|
+
GridlineStyleLeft: number;
|
|
4182
|
+
GridlineStyleTop: number;
|
|
4183
|
+
GridlineStyleRight: number;
|
|
4184
|
+
GridlineStyleBottom: number;
|
|
4185
|
+
GridlineWidthLeft: number;
|
|
4186
|
+
GridlineWidthTop: number;
|
|
4187
|
+
GridlineWidthRight: number;
|
|
4188
|
+
GridlineWidthBottom: number;
|
|
4189
|
+
GridlineColor: number;
|
|
4190
|
+
DefaultPicture: string;
|
|
4191
|
+
readonly LayoutID: number;
|
|
4192
|
+
AutoLabel: boolean;
|
|
4193
|
+
AddColon: boolean;
|
|
4194
|
+
LabelX: number;
|
|
4195
|
+
LabelY: number;
|
|
4196
|
+
LabelAlign: number;
|
|
4197
|
+
ColumnWidth: number;
|
|
4198
|
+
ColumnOrder: number;
|
|
4199
|
+
ColumnHidden: boolean;
|
|
4200
|
+
ControlSource: string;
|
|
4201
|
+
StatusBarText: string;
|
|
4202
|
+
TabStop: boolean;
|
|
4203
|
+
TabIndex: number;
|
|
4204
|
+
Enabled: boolean;
|
|
4205
|
+
Locked: boolean;
|
|
4206
|
+
FileData(var_?: any): any;
|
|
4207
|
+
PictureDisp(var_?: any): any;
|
|
4208
|
+
BackThemeColorIndex: number;
|
|
4209
|
+
BackTint: number;
|
|
4210
|
+
BackShade: number;
|
|
4211
|
+
BorderThemeColorIndex: number;
|
|
4212
|
+
BorderTint: number;
|
|
4213
|
+
BorderShade: number;
|
|
4214
|
+
GridlineThemeColorIndex: number;
|
|
4215
|
+
GridlineTint: number;
|
|
4216
|
+
GridlineShade: number;
|
|
4217
|
+
DefaultPictureType: number;
|
|
4218
|
+
}
|
|
4219
|
+
interface MacroError{
|
|
4220
|
+
readonly Condition: string;
|
|
4221
|
+
readonly ActionName: string;
|
|
4222
|
+
readonly Arguments: string;
|
|
4223
|
+
readonly Description: string;
|
|
4224
|
+
readonly Number: number;
|
|
4225
|
+
readonly MacroName: string;
|
|
4226
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4227
|
+
}
|
|
4228
|
+
interface TempVar{
|
|
4229
|
+
_Value: any;
|
|
4230
|
+
readonly Name: string;
|
|
4231
|
+
Value: any;
|
|
4232
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4233
|
+
}
|
|
4234
|
+
interface TempVars{
|
|
4235
|
+
readonly Application: Application;
|
|
4236
|
+
readonly Parent: object | any;
|
|
4237
|
+
Item(Index: any): TempVar;
|
|
4238
|
+
readonly Count: number;
|
|
4239
|
+
Add(Name: string, Value: any): void;
|
|
4240
|
+
Remove(var_: any): void;
|
|
4241
|
+
RemoveAll(): void;
|
|
4242
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4243
|
+
}
|
|
4244
|
+
interface EmptyCell{
|
|
4245
|
+
readonly Application: Application;
|
|
4246
|
+
readonly Parent: object | any;
|
|
4247
|
+
readonly Properties: Properties;
|
|
4248
|
+
SizeToFit(): void;
|
|
4249
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
4250
|
+
readonly Hyperlink: Hyperlink;
|
|
4251
|
+
EventProcPrefix: string;
|
|
4252
|
+
_Name: string;
|
|
4253
|
+
ControlType: number;
|
|
4254
|
+
Visible: boolean;
|
|
4255
|
+
DisplayWhen: number;
|
|
4256
|
+
Left: number;
|
|
4257
|
+
Top: number;
|
|
4258
|
+
Width: number;
|
|
4259
|
+
Height: number;
|
|
4260
|
+
BackStyle: number;
|
|
4261
|
+
BackColor: number;
|
|
4262
|
+
SpecialEffect: number;
|
|
4263
|
+
HelpContextId: number;
|
|
4264
|
+
Section: number;
|
|
4265
|
+
ControlName: string;
|
|
4266
|
+
IsVisible: boolean;
|
|
4267
|
+
ShortcutMenuBar: string;
|
|
4268
|
+
InSelection: boolean;
|
|
4269
|
+
Tag: string;
|
|
4270
|
+
Name: string;
|
|
4271
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
4272
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4273
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
4274
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
4275
|
+
readonly Layout: AcLayoutType;
|
|
4276
|
+
LeftPadding: number;
|
|
4277
|
+
TopPadding: number;
|
|
4278
|
+
RightPadding: number;
|
|
4279
|
+
BottomPadding: number;
|
|
4280
|
+
GridlineStyleLeft: number;
|
|
4281
|
+
GridlineStyleTop: number;
|
|
4282
|
+
GridlineStyleRight: number;
|
|
4283
|
+
GridlineStyleBottom: number;
|
|
4284
|
+
GridlineWidthLeft: number;
|
|
4285
|
+
GridlineWidthTop: number;
|
|
4286
|
+
GridlineWidthRight: number;
|
|
4287
|
+
GridlineWidthBottom: number;
|
|
4288
|
+
GridlineColor: number;
|
|
4289
|
+
readonly LayoutID: number;
|
|
4290
|
+
StatusBarText: string;
|
|
4291
|
+
BackThemeColorIndex: number;
|
|
4292
|
+
BackTint: number;
|
|
4293
|
+
BackShade: number;
|
|
4294
|
+
GridlineThemeColorIndex: number;
|
|
4295
|
+
GridlineTint: number;
|
|
4296
|
+
GridlineShade: number;
|
|
4297
|
+
}
|
|
4298
|
+
interface WebBrowserControl{
|
|
4299
|
+
readonly Application: Application;
|
|
4300
|
+
readonly Parent: object | any;
|
|
4301
|
+
Undo(): void;
|
|
4302
|
+
readonly OldValue: any;
|
|
4303
|
+
readonly Properties: Properties;
|
|
4304
|
+
SizeToFit(): void;
|
|
4305
|
+
Requery(): void;
|
|
4306
|
+
Goto(): void;
|
|
4307
|
+
SetFocus(): void;
|
|
4308
|
+
readonly Controls: Children;
|
|
4309
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
4310
|
+
readonly Hyperlink: Hyperlink;
|
|
4311
|
+
Value: any;
|
|
4312
|
+
ControlSource: string;
|
|
4313
|
+
DisplayWhen: number;
|
|
4314
|
+
Enabled: boolean;
|
|
4315
|
+
readonly ReadyState: AcWebBrowserState;
|
|
4316
|
+
readonly Progress: number;
|
|
4317
|
+
ScrollBars: AcWebBrowserScrollBars;
|
|
4318
|
+
ScrollTop: number;
|
|
4319
|
+
ScrollLeft: number;
|
|
4320
|
+
Transform: string;
|
|
4321
|
+
readonly LocationURL: string;
|
|
4322
|
+
readonly Object: object | any;
|
|
4323
|
+
Left: number;
|
|
4324
|
+
Top: number;
|
|
4325
|
+
Width: number;
|
|
4326
|
+
Height: number;
|
|
4327
|
+
SpecialEffect: number;
|
|
4328
|
+
BorderStyle: number;
|
|
4329
|
+
BorderColor: number;
|
|
4330
|
+
BorderWidth: number;
|
|
4331
|
+
BorderLineStyle: number;
|
|
4332
|
+
Section: number;
|
|
4333
|
+
OnMouseDown: string;
|
|
4334
|
+
OnMouseMove: string;
|
|
4335
|
+
OnMouseUp: string;
|
|
4336
|
+
OnKeyDown: string;
|
|
4337
|
+
OnKeyUp: string;
|
|
4338
|
+
OnKeyPress: string;
|
|
4339
|
+
Name: string;
|
|
4340
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
4341
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4342
|
+
readonly Layout: AcLayoutType;
|
|
4343
|
+
LeftPadding: number;
|
|
4344
|
+
TopPadding: number;
|
|
4345
|
+
RightPadding: number;
|
|
4346
|
+
BottomPadding: number;
|
|
4347
|
+
GridlineStyleLeft: number;
|
|
4348
|
+
GridlineStyleTop: number;
|
|
4349
|
+
GridlineStyleRight: number;
|
|
4350
|
+
GridlineStyleBottom: number;
|
|
4351
|
+
GridlineWidthLeft: number;
|
|
4352
|
+
GridlineWidthTop: number;
|
|
4353
|
+
GridlineWidthRight: number;
|
|
4354
|
+
GridlineWidthBottom: number;
|
|
4355
|
+
GridlineColor: number;
|
|
4356
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
4357
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
4358
|
+
OnClickMacro: string;
|
|
4359
|
+
OnDblClickMacro: string;
|
|
4360
|
+
OnMouseDownMacro: string;
|
|
4361
|
+
OnMouseMoveMacro: string;
|
|
4362
|
+
OnMouseUpMacro: string;
|
|
4363
|
+
OnKeyDownMacro: string;
|
|
4364
|
+
OnKeyUpMacro: string;
|
|
4365
|
+
OnKeyPressMacro: string;
|
|
4366
|
+
readonly LayoutID: number;
|
|
4367
|
+
OnBeforeNavigate: string;
|
|
4368
|
+
OnDocumentComplete: string;
|
|
4369
|
+
OnNavigateError: string;
|
|
4370
|
+
OnProgressChange: string;
|
|
4371
|
+
OnUpdated: string;
|
|
4372
|
+
OnBeforeNavigateMacro: string;
|
|
4373
|
+
OnDocumentCompleteMacro: string;
|
|
4374
|
+
OnNavigateErrorMacro: string;
|
|
4375
|
+
OnProgressChangeMacro: string;
|
|
4376
|
+
OnUpdatedMacro: string;
|
|
4377
|
+
TabStop: boolean;
|
|
4378
|
+
TabIndex: number;
|
|
4379
|
+
Visible: boolean;
|
|
4380
|
+
InSelection: boolean;
|
|
4381
|
+
ControlType: number;
|
|
4382
|
+
BorderThemeColorIndex: number;
|
|
4383
|
+
BorderTint: number;
|
|
4384
|
+
BorderShade: number;
|
|
4385
|
+
GridlineThemeColorIndex: number;
|
|
4386
|
+
GridlineTint: number;
|
|
4387
|
+
GridlineShade: number;
|
|
4388
|
+
StatusBarText: string;
|
|
4389
|
+
ControlTipText: string;
|
|
4390
|
+
EventProcPrefix: string;
|
|
4391
|
+
HelpContextId: number;
|
|
4392
|
+
Tag: string;
|
|
4393
|
+
}
|
|
4394
|
+
interface WebServices{
|
|
4395
|
+
readonly Application: Application;
|
|
4396
|
+
readonly Parent: object | any;
|
|
4397
|
+
Item(Index: any): WebService;
|
|
4398
|
+
readonly Count: number;
|
|
4399
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4400
|
+
}
|
|
4401
|
+
interface WebService{
|
|
4402
|
+
readonly Parent: object | any;
|
|
4403
|
+
readonly Name: string;
|
|
4404
|
+
readonly Entities: Entities;
|
|
4405
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4406
|
+
}
|
|
4407
|
+
interface Entities{
|
|
4408
|
+
readonly Parent: object | any;
|
|
4409
|
+
Item(Index: any): Entity;
|
|
4410
|
+
readonly Count: number;
|
|
4411
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4412
|
+
}
|
|
4413
|
+
interface Entity{
|
|
4414
|
+
readonly Parent: object | any;
|
|
4415
|
+
readonly Name: string;
|
|
4416
|
+
readonly Operations: Operations;
|
|
4417
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4418
|
+
}
|
|
4419
|
+
interface Operations{
|
|
4420
|
+
readonly Parent: object | any;
|
|
4421
|
+
Item(Index: any): Operation;
|
|
4422
|
+
readonly Count: number;
|
|
4423
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4424
|
+
}
|
|
4425
|
+
interface Operation{
|
|
4426
|
+
readonly Parent: object | any;
|
|
4427
|
+
readonly Name: string;
|
|
4428
|
+
readonly WSParameters: WSParameters;
|
|
4429
|
+
Execute(bstrParameters?: string): any;
|
|
4430
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4431
|
+
}
|
|
4432
|
+
interface WSParameters{
|
|
4433
|
+
readonly Parent: object | any;
|
|
4434
|
+
Item(Index: any): WSParameter;
|
|
4435
|
+
readonly Count: number;
|
|
4436
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4437
|
+
}
|
|
4438
|
+
interface WSParameter{
|
|
4439
|
+
readonly Parent: object | any;
|
|
4440
|
+
readonly Name: string;
|
|
4441
|
+
readonly Type: number;
|
|
4442
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4443
|
+
}
|
|
4444
|
+
interface NavigationButton{
|
|
4445
|
+
readonly Application: Application;
|
|
4446
|
+
readonly Parent: object | any;
|
|
4447
|
+
readonly OldValue: any;
|
|
4448
|
+
readonly Properties: Properties;
|
|
4449
|
+
SizeToFit(): void;
|
|
4450
|
+
Requery(): void;
|
|
4451
|
+
Goto(): void;
|
|
4452
|
+
SetFocus(): void;
|
|
4453
|
+
readonly Controls: Children;
|
|
4454
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
4455
|
+
readonly Hyperlink: Hyperlink;
|
|
4456
|
+
EventProcPrefix: string;
|
|
4457
|
+
_Name: string;
|
|
4458
|
+
ControlType: number;
|
|
4459
|
+
Caption: string;
|
|
4460
|
+
Picture: string;
|
|
4461
|
+
PictureType: number;
|
|
4462
|
+
PictureData: any;
|
|
4463
|
+
Transparent: boolean;
|
|
4464
|
+
AutoRepeat: boolean;
|
|
4465
|
+
StatusBarText: string;
|
|
4466
|
+
OnPush: string;
|
|
4467
|
+
HyperlinkAddress: string;
|
|
4468
|
+
HyperlinkSubAddress: string;
|
|
4469
|
+
Visible: boolean;
|
|
4470
|
+
DisplayWhen: number;
|
|
4471
|
+
Enabled: boolean;
|
|
4472
|
+
TabStop: boolean;
|
|
4473
|
+
TabIndex: number;
|
|
4474
|
+
readonly Left: number;
|
|
4475
|
+
readonly Top: number;
|
|
4476
|
+
Width: number;
|
|
4477
|
+
Height: number;
|
|
4478
|
+
ForeColor: number;
|
|
4479
|
+
FontName: string;
|
|
4480
|
+
FontSize: number;
|
|
4481
|
+
FontWeight: number;
|
|
4482
|
+
FontItalic: boolean;
|
|
4483
|
+
FontUnderline: boolean;
|
|
4484
|
+
TextFontCharSet: number;
|
|
4485
|
+
FontBold: number;
|
|
4486
|
+
ShortcutMenuBar: string;
|
|
4487
|
+
ControlTipText: string;
|
|
4488
|
+
HelpContextId: number;
|
|
4489
|
+
AutoLabel: boolean;
|
|
4490
|
+
AddColon: boolean;
|
|
4491
|
+
LabelX: number;
|
|
4492
|
+
LabelY: number;
|
|
4493
|
+
LabelAlign: number;
|
|
4494
|
+
Section: number;
|
|
4495
|
+
ControlName: string;
|
|
4496
|
+
Tag: string;
|
|
4497
|
+
ObjectPalette: any;
|
|
4498
|
+
IsVisible: boolean;
|
|
4499
|
+
InSelection: boolean;
|
|
4500
|
+
OnEnter: string;
|
|
4501
|
+
OnExit: string;
|
|
4502
|
+
OnGotFocus: string;
|
|
4503
|
+
OnLostFocus: string;
|
|
4504
|
+
OnClick: string;
|
|
4505
|
+
OnDblClick: string;
|
|
4506
|
+
OnMouseDown: string;
|
|
4507
|
+
OnMouseMove: string;
|
|
4508
|
+
OnMouseUp: string;
|
|
4509
|
+
OnKeyDown: string;
|
|
4510
|
+
OnKeyUp: string;
|
|
4511
|
+
OnKeyPress: string;
|
|
4512
|
+
ReadingOrder: number;
|
|
4513
|
+
Name: string;
|
|
4514
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
4515
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4516
|
+
BeforeUpdateMacro: string;
|
|
4517
|
+
AfterUpdateMacro: string;
|
|
4518
|
+
OnEnterMacro: string;
|
|
4519
|
+
OnExitMacro: string;
|
|
4520
|
+
OnGotFocusMacro: string;
|
|
4521
|
+
OnLostFocusMacro: string;
|
|
4522
|
+
OnClickMacro: string;
|
|
4523
|
+
OnDblClickMacro: string;
|
|
4524
|
+
OnMouseDownMacro: string;
|
|
4525
|
+
OnMouseMoveMacro: string;
|
|
4526
|
+
OnMouseUpMacro: string;
|
|
4527
|
+
OnKeyDownMacro: string;
|
|
4528
|
+
OnKeyUpMacro: string;
|
|
4529
|
+
OnKeyPressMacro: string;
|
|
4530
|
+
readonly Layout: AcLayoutType;
|
|
4531
|
+
LeftPadding: number;
|
|
4532
|
+
TopPadding: number;
|
|
4533
|
+
RightPadding: number;
|
|
4534
|
+
BottomPadding: number;
|
|
4535
|
+
GridlineStyleLeft: number;
|
|
4536
|
+
GridlineStyleTop: number;
|
|
4537
|
+
GridlineStyleRight: number;
|
|
4538
|
+
GridlineStyleBottom: number;
|
|
4539
|
+
GridlineWidthLeft: number;
|
|
4540
|
+
GridlineWidthTop: number;
|
|
4541
|
+
GridlineWidthRight: number;
|
|
4542
|
+
GridlineWidthBottom: number;
|
|
4543
|
+
GridlineColor: number;
|
|
4544
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
4545
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
4546
|
+
readonly LayoutID: number;
|
|
4547
|
+
BackStyle: number;
|
|
4548
|
+
CursorOnHover: AcCursorOnHover;
|
|
4549
|
+
PictureCaptionArrangement: AcPictureCaptionArrangement;
|
|
4550
|
+
Alignment: number;
|
|
4551
|
+
Target: string;
|
|
4552
|
+
ForeThemeColorIndex: number;
|
|
4553
|
+
ForeTint: number;
|
|
4554
|
+
ForeShade: number;
|
|
4555
|
+
ThemeFontIndex: number;
|
|
4556
|
+
GridlineThemeColorIndex: number;
|
|
4557
|
+
GridlineTint: number;
|
|
4558
|
+
GridlineShade: number;
|
|
4559
|
+
NavigationTargetName: string;
|
|
4560
|
+
NavigationWhereClause: string;
|
|
4561
|
+
readonly ParentTab: NavigationButton;
|
|
4562
|
+
BackThemeColorIndex: number;
|
|
4563
|
+
BackTint: number;
|
|
4564
|
+
BackShade: number;
|
|
4565
|
+
BorderThemeColorIndex: number;
|
|
4566
|
+
BorderTint: number;
|
|
4567
|
+
BorderShade: number;
|
|
4568
|
+
BorderWidth: number;
|
|
4569
|
+
BorderStyle: number;
|
|
4570
|
+
HoverColor: number;
|
|
4571
|
+
HoverThemeColorIndex: number;
|
|
4572
|
+
HoverTint: number;
|
|
4573
|
+
HoverShade: number;
|
|
4574
|
+
HoverForeColor: number;
|
|
4575
|
+
HoverForeThemeColorIndex: number;
|
|
4576
|
+
HoverForeTint: number;
|
|
4577
|
+
HoverForeShade: number;
|
|
4578
|
+
PressedColor: number;
|
|
4579
|
+
PressedThemeColorIndex: number;
|
|
4580
|
+
PressedTint: number;
|
|
4581
|
+
PressedShade: number;
|
|
4582
|
+
PressedForeColor: number;
|
|
4583
|
+
PressedForeThemeColorIndex: number;
|
|
4584
|
+
PressedForeTint: number;
|
|
4585
|
+
PressedForeShade: number;
|
|
4586
|
+
Shape: number;
|
|
4587
|
+
Bevel: number;
|
|
4588
|
+
Glow: number;
|
|
4589
|
+
Shadow: number;
|
|
4590
|
+
SoftEdges: number;
|
|
4591
|
+
QuickStyle: number;
|
|
4592
|
+
QuickStyleMask: number;
|
|
4593
|
+
Gradient: number;
|
|
4594
|
+
BackColor: number;
|
|
4595
|
+
BorderColor: number;
|
|
4596
|
+
}
|
|
4597
|
+
interface NavigationControl{
|
|
4598
|
+
readonly Application: Application;
|
|
4599
|
+
readonly Parent: object | any;
|
|
4600
|
+
Undo(): void;
|
|
4601
|
+
readonly OldValue: any;
|
|
4602
|
+
readonly Properties: Properties;
|
|
4603
|
+
SizeToFit(): void;
|
|
4604
|
+
Requery(): void;
|
|
4605
|
+
Goto(): void;
|
|
4606
|
+
SetFocus(): void;
|
|
4607
|
+
readonly Controls: Children;
|
|
4608
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
4609
|
+
readonly Hyperlink: Hyperlink;
|
|
4610
|
+
readonly FormatConditions: FormatConditions;
|
|
4611
|
+
Value: any;
|
|
4612
|
+
EventProcPrefix: string;
|
|
4613
|
+
_Name: string;
|
|
4614
|
+
ControlType: number;
|
|
4615
|
+
StatusBarText: string;
|
|
4616
|
+
Visible: boolean;
|
|
4617
|
+
DisplayWhen: number;
|
|
4618
|
+
Enabled: boolean;
|
|
4619
|
+
FilterLookup: number;
|
|
4620
|
+
AutoTab: boolean;
|
|
4621
|
+
TabStop: boolean;
|
|
4622
|
+
TabIndex: number;
|
|
4623
|
+
Left: number;
|
|
4624
|
+
Top: number;
|
|
4625
|
+
Width: number;
|
|
4626
|
+
Height: number;
|
|
4627
|
+
BackStyle: number;
|
|
4628
|
+
BackColor: number;
|
|
4629
|
+
SpecialEffect: number;
|
|
4630
|
+
BorderStyle: number;
|
|
4631
|
+
OldBorderStyle: number;
|
|
4632
|
+
BorderColor: number;
|
|
4633
|
+
BorderWidth: number;
|
|
4634
|
+
BorderLineStyle: number;
|
|
4635
|
+
ShortcutMenuBar: string;
|
|
4636
|
+
ControlTipText: string;
|
|
4637
|
+
HelpContextId: number;
|
|
4638
|
+
Section: number;
|
|
4639
|
+
ControlName: string;
|
|
4640
|
+
Tag: string;
|
|
4641
|
+
IsVisible: boolean;
|
|
4642
|
+
InSelection: boolean;
|
|
4643
|
+
OnGotFocus: string;
|
|
4644
|
+
OnLostFocus: string;
|
|
4645
|
+
OnClick: string;
|
|
4646
|
+
OnDblClick: string;
|
|
4647
|
+
OnMouseDown: string;
|
|
4648
|
+
OnMouseMove: string;
|
|
4649
|
+
OnMouseUp: string;
|
|
4650
|
+
OnKeyDown: string;
|
|
4651
|
+
OnKeyUp: string;
|
|
4652
|
+
OnKeyPress: string;
|
|
4653
|
+
ReadingOrder: number;
|
|
4654
|
+
KeyboardLanguage: number;
|
|
4655
|
+
AllowedText: number;
|
|
4656
|
+
ScrollBarAlign: number;
|
|
4657
|
+
NumeralShapes: number;
|
|
4658
|
+
Name: string;
|
|
4659
|
+
LineSpacing: number;
|
|
4660
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
4661
|
+
readonly SmartTags: SmartTags;
|
|
4662
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4663
|
+
readonly Layout: AcLayoutType;
|
|
4664
|
+
LeftPadding: number;
|
|
4665
|
+
TopPadding: number;
|
|
4666
|
+
RightPadding: number;
|
|
4667
|
+
BottomPadding: number;
|
|
4668
|
+
GridlineStyleLeft: number;
|
|
4669
|
+
GridlineStyleTop: number;
|
|
4670
|
+
GridlineStyleRight: number;
|
|
4671
|
+
GridlineStyleBottom: number;
|
|
4672
|
+
GridlineWidthLeft: number;
|
|
4673
|
+
GridlineWidthTop: number;
|
|
4674
|
+
GridlineWidthRight: number;
|
|
4675
|
+
GridlineWidthBottom: number;
|
|
4676
|
+
GridlineColor: number;
|
|
4677
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
4678
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
4679
|
+
OnGotFocusMacro: string;
|
|
4680
|
+
OnLostFocusMacro: string;
|
|
4681
|
+
OnClickMacro: string;
|
|
4682
|
+
OnDblClickMacro: string;
|
|
4683
|
+
OnMouseDownMacro: string;
|
|
4684
|
+
OnMouseMoveMacro: string;
|
|
4685
|
+
OnMouseUpMacro: string;
|
|
4686
|
+
OnKeyDownMacro: string;
|
|
4687
|
+
OnKeyUpMacro: string;
|
|
4688
|
+
OnKeyPressMacro: string;
|
|
4689
|
+
readonly LayoutID: number;
|
|
4690
|
+
Target: string;
|
|
4691
|
+
BackThemeColorIndex: number;
|
|
4692
|
+
BackTint: number;
|
|
4693
|
+
BackShade: number;
|
|
4694
|
+
BorderThemeColorIndex: number;
|
|
4695
|
+
BorderTint: number;
|
|
4696
|
+
BorderShade: number;
|
|
4697
|
+
GridlineThemeColorIndex: number;
|
|
4698
|
+
GridlineTint: number;
|
|
4699
|
+
GridlineShade: number;
|
|
4700
|
+
SubForm: string;
|
|
4701
|
+
readonly Tabs: Children;
|
|
4702
|
+
readonly SelectedTab: NavigationButton;
|
|
4703
|
+
Span: AcNavigationSpan;
|
|
4704
|
+
}
|
|
4705
|
+
interface LocalVar{
|
|
4706
|
+
_Value: any;
|
|
4707
|
+
readonly Name: string;
|
|
4708
|
+
Value: any;
|
|
4709
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4710
|
+
}
|
|
4711
|
+
interface LocalVars{
|
|
4712
|
+
readonly Application: Application;
|
|
4713
|
+
readonly Parent: object | any;
|
|
4714
|
+
Item(Index: any): LocalVar;
|
|
4715
|
+
readonly Count: number;
|
|
4716
|
+
Add(Name: string, Value: any): void;
|
|
4717
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4718
|
+
}
|
|
4719
|
+
interface SharedResources{
|
|
4720
|
+
readonly Application: Application;
|
|
4721
|
+
readonly Parent: object | any;
|
|
4722
|
+
Item(Index: number): SharedResource;
|
|
4723
|
+
readonly Count: number;
|
|
4724
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4725
|
+
}
|
|
4726
|
+
interface SharedResource{
|
|
4727
|
+
readonly Parent: object | any;
|
|
4728
|
+
Name: string;
|
|
4729
|
+
readonly Type: AcResourceType;
|
|
4730
|
+
Delete(): void;
|
|
4731
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4732
|
+
}
|
|
4733
|
+
interface ReturnVar{
|
|
4734
|
+
readonly _Value: any;
|
|
4735
|
+
readonly Name: string;
|
|
4736
|
+
readonly Value: any;
|
|
4737
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4738
|
+
}
|
|
4739
|
+
interface ReturnVars{
|
|
4740
|
+
readonly Application: Application;
|
|
4741
|
+
readonly Parent: object | any;
|
|
4742
|
+
Item(Index: any): ReturnVar;
|
|
4743
|
+
readonly Count: number;
|
|
4744
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4745
|
+
}
|
|
4746
|
+
interface DesignerReceiver{
|
|
4747
|
+
SetReady(): void;
|
|
4748
|
+
RefreshRibbon(): void;
|
|
4749
|
+
LaunchBuilder(builder: number, bstrBuilderValue: string): any;
|
|
4750
|
+
RetrievePropertyValues(propertytype: number, inputData?: any): any;
|
|
4751
|
+
RecordSourceUpdated(bstrRecordSource: string): void;
|
|
4752
|
+
GetEmbeddedRecordSourceSQL(): string;
|
|
4753
|
+
SetEmbeddedRecordSourceSQL(bstrRecordSource: string): string;
|
|
4754
|
+
QuickCreateView(bstrViewName: string, viewtype: number, bstrRecordSource: string, fStandalone: boolean): void;
|
|
4755
|
+
IsExpressionValid(bstrExpression: string): any;
|
|
4756
|
+
NotifyControlIDChanged(bstrOldCtrlID: string, bstrNewCtrlID: string): void;
|
|
4757
|
+
RetrieveControlSourcesInfo(bstrRecordSource: string): any;
|
|
4758
|
+
OpenAccessObject(accessObjectType: number, accessObjectName: string, fDesignMode: boolean): void;
|
|
4759
|
+
DeleteAccessObject(accessObjectType: number, accessObjectName: string, pdispDependentObjectTypeNamePairArray: object | any): boolean;
|
|
4760
|
+
DuplicateAccessObject(accessObjectType: number, accessObjectName: string): void;
|
|
4761
|
+
RetrieveRecordSourceInfo(bstrRecordSource: string): any;
|
|
4762
|
+
RetrieveViewInfo(bstrViewName: string): any;
|
|
4763
|
+
GetEmbeddedObject(handlerType: number, bstrCtrl: string, bstrProperty: string): string;
|
|
4764
|
+
SaveEmbeddedObject(handlerType: number, bstrCtrl: string, bstrProperty: string, bstrExpression: string): void;
|
|
4765
|
+
DeleteEmbeddedObject(handlerType: number, bstrCtrl: string, bstrProperty: string): void;
|
|
4766
|
+
GetFormBodyAndCss(bstrFormName: string): any;
|
|
4767
|
+
IsValidAccessObjectName(accessObjectType: number, varName: any): boolean;
|
|
4768
|
+
NotifyToUpdateView(iId: number): void;
|
|
4769
|
+
}
|
|
4770
|
+
interface AddTileUIReceiver{
|
|
4771
|
+
GetClientProtocolVersion(): string;
|
|
4772
|
+
CreateCustomTable(bstrTableName: string, bstrNounID: string): string;
|
|
4773
|
+
GetNounsVersion(): string;
|
|
4774
|
+
GetNounsMetadata(): string;
|
|
4775
|
+
GetDefinitionOfNounID(bstrNounID: string): string;
|
|
4776
|
+
CreateObjectFromDefinition(pdispNounDefArray: object | any, pdispFinalNameArray: object | any): void;
|
|
4777
|
+
CreateRelationship(bstrLeftTable: string, bstrRightTable: string, bstrLookupFieldName: string, bstrLookupFieldDescription: string, lookupFieldPosition: number, iOptions: number): void;
|
|
4778
|
+
ImportData(Type: number): void;
|
|
4779
|
+
GetNounTables(): string;
|
|
4780
|
+
RegisterSearchTerm(bstrSearchTerm: string): void;
|
|
4781
|
+
BeginBatchNounAdd(): void;
|
|
4782
|
+
FinishBatchNounAdd(): void;
|
|
4783
|
+
NotifyAddTileUIVisibilityChange(fVisible: boolean): void;
|
|
4784
|
+
LaunchHyperlink(Type: number, bstrUrl: string): void;
|
|
4785
|
+
MetadataLoaded(): void;
|
|
4786
|
+
IsOnlineContentAllowed(): boolean;
|
|
4787
|
+
}
|
|
4788
|
+
interface SqmProxyReceiver{
|
|
4789
|
+
SetDataPoint(id: number, dwValue: number): void;
|
|
4790
|
+
SetDataPointMax(id: number, dwValue: number): void;
|
|
4791
|
+
SetDataPointMin(id: number, dwValue: number): void;
|
|
4792
|
+
CreateStream(id: number, Type: number, Width: number, maxRows: number): void;
|
|
4793
|
+
AddStreamData1(id: number, dw1: number): void;
|
|
4794
|
+
AddStreamData2(id: number, dw1: number, dw2: number): void;
|
|
4795
|
+
AddStreamData8(id: number, dw1: number, dw2: number, dw3: number, dw4: number, dw5: number, dw6: number, dw7: number, dw8: number): void;
|
|
4796
|
+
}
|
|
4797
|
+
interface ChartSeries{
|
|
4798
|
+
readonly Name: string;
|
|
4799
|
+
PlotSeriesOn: AcValueAxis;
|
|
4800
|
+
DisplayDataLabel: boolean;
|
|
4801
|
+
FillColor: number;
|
|
4802
|
+
BorderColor: number;
|
|
4803
|
+
TrendlineOptions: AcTrendlineOptions;
|
|
4804
|
+
TrendlineName: string;
|
|
4805
|
+
ComboChartType: AcChartType;
|
|
4806
|
+
DisplayName: string;
|
|
4807
|
+
DashType: AcDashType;
|
|
4808
|
+
LineWeight: number;
|
|
4809
|
+
MissingDataPolicy: AcMissingDataPolicy;
|
|
4810
|
+
MarkerType: AcMarkerType;
|
|
4811
|
+
GridlinesType: AcGridlineType;
|
|
4812
|
+
DisplayBoxWhiskerDataPoints: boolean;
|
|
4813
|
+
DisplayBoxWhiskerMeanMarker: boolean;
|
|
4814
|
+
DataLabelPosition: AcDataLabelPosition;
|
|
4815
|
+
WordCloudShape: AcWordCloudShape;
|
|
4816
|
+
WordCloudWordOrientation: AcWordCloudWordOrientation;
|
|
4817
|
+
ShowWaterfallConnectorLines: boolean;
|
|
4818
|
+
ShowWaterfallTotal: boolean;
|
|
4819
|
+
ShowFunnelPercentages: boolean;
|
|
4820
|
+
PercentageDataLabelDecimalPlaces: AcPercentageDataLabelDecimalPlaces;
|
|
4821
|
+
DataLabelDisplayFormat: AcDataLabelDisplayFormat;
|
|
4822
|
+
SortOrderType: AcSortOrderType;
|
|
4823
|
+
GridlinesColor: number;
|
|
4824
|
+
ParetoLineColor: number;
|
|
4825
|
+
}
|
|
4826
|
+
interface ChartSeriesCollection{
|
|
4827
|
+
readonly Application: Application;
|
|
4828
|
+
readonly Parent: object | any;
|
|
4829
|
+
Item(Index: any): ChartSeries;
|
|
4830
|
+
readonly Count: number;
|
|
4831
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4832
|
+
}
|
|
4833
|
+
interface ChartAxis{
|
|
4834
|
+
readonly Name: string;
|
|
4835
|
+
GroupType: AcDateGroupType;
|
|
4836
|
+
}
|
|
4837
|
+
interface ChartAxisCollection{
|
|
4838
|
+
readonly Application: Application;
|
|
4839
|
+
readonly Parent: object | any;
|
|
4840
|
+
Item(Index: any): ChartAxis;
|
|
4841
|
+
readonly Count: number;
|
|
4842
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4843
|
+
}
|
|
4844
|
+
interface ChartValues{
|
|
4845
|
+
readonly Name: string;
|
|
4846
|
+
AggregateType: AcAggregateType;
|
|
4847
|
+
}
|
|
4848
|
+
interface ChartValuesCollection{
|
|
4849
|
+
readonly Application: Application;
|
|
4850
|
+
readonly Parent: object | any;
|
|
4851
|
+
Item(Index: any): ChartValues;
|
|
4852
|
+
readonly Count: number;
|
|
4853
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4854
|
+
}
|
|
4855
|
+
interface vyChart{
|
|
4856
|
+
readonly Application: Application;
|
|
4857
|
+
readonly Parent: object | any;
|
|
4858
|
+
readonly Properties: Properties;
|
|
4859
|
+
SizeToFit(): void;
|
|
4860
|
+
Requery(): void;
|
|
4861
|
+
Goto(): void;
|
|
4862
|
+
SetFocus(): void;
|
|
4863
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
4864
|
+
EventProcPrefix: string;
|
|
4865
|
+
_Name: string;
|
|
4866
|
+
ControlType: number;
|
|
4867
|
+
RowSource: string;
|
|
4868
|
+
LinkChildFields: string;
|
|
4869
|
+
LinkMasterFields: string;
|
|
4870
|
+
Visible: boolean;
|
|
4871
|
+
DisplayWhen: number;
|
|
4872
|
+
Enabled: boolean;
|
|
4873
|
+
StatusBarText: string;
|
|
4874
|
+
TabStop: boolean;
|
|
4875
|
+
TabIndex: number;
|
|
4876
|
+
Left: number;
|
|
4877
|
+
Top: number;
|
|
4878
|
+
Width: number;
|
|
4879
|
+
Height: number;
|
|
4880
|
+
BackStyle: number;
|
|
4881
|
+
BackColor: number;
|
|
4882
|
+
SpecialEffect: number;
|
|
4883
|
+
BorderStyle: number;
|
|
4884
|
+
OldBorderStyle: number;
|
|
4885
|
+
BorderColor: number;
|
|
4886
|
+
BorderWidth: number;
|
|
4887
|
+
BorderLineStyle: number;
|
|
4888
|
+
ShortcutMenuBar: string;
|
|
4889
|
+
ControlTipText: string;
|
|
4890
|
+
HelpContextId: number;
|
|
4891
|
+
Section: number;
|
|
4892
|
+
ControlName: string;
|
|
4893
|
+
Tag: string;
|
|
4894
|
+
IsVisible: boolean;
|
|
4895
|
+
InSelection: boolean;
|
|
4896
|
+
OnEnter: string;
|
|
4897
|
+
OnExit: string;
|
|
4898
|
+
OnGotFocus: string;
|
|
4899
|
+
OnLostFocus: string;
|
|
4900
|
+
OnClick: string;
|
|
4901
|
+
OnDblClick: string;
|
|
4902
|
+
OnMouseDown: string;
|
|
4903
|
+
OnMouseMove: string;
|
|
4904
|
+
OnMouseUp: string;
|
|
4905
|
+
OnKeyDown: string;
|
|
4906
|
+
OnKeyUp: string;
|
|
4907
|
+
OnKeyPress: string;
|
|
4908
|
+
Name: string;
|
|
4909
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
4910
|
+
IsMemberSafe(dispid: number): boolean;
|
|
4911
|
+
OnEnterMacro: string;
|
|
4912
|
+
OnExitMacro: string;
|
|
4913
|
+
OnGotFocusMacro: string;
|
|
4914
|
+
OnLostFocusMacro: string;
|
|
4915
|
+
OnClickMacro: string;
|
|
4916
|
+
OnDblClickMacro: string;
|
|
4917
|
+
OnMouseDownMacro: string;
|
|
4918
|
+
OnMouseMoveMacro: string;
|
|
4919
|
+
OnMouseUpMacro: string;
|
|
4920
|
+
OnKeyDownMacro: string;
|
|
4921
|
+
OnKeyUpMacro: string;
|
|
4922
|
+
OnKeyPressMacro: string;
|
|
4923
|
+
readonly Layout: AcLayoutType;
|
|
4924
|
+
LeftPadding: number;
|
|
4925
|
+
TopPadding: number;
|
|
4926
|
+
RightPadding: number;
|
|
4927
|
+
BottomPadding: number;
|
|
4928
|
+
GridlineStyleLeft: number;
|
|
4929
|
+
GridlineStyleTop: number;
|
|
4930
|
+
GridlineStyleRight: number;
|
|
4931
|
+
GridlineStyleBottom: number;
|
|
4932
|
+
GridlineWidthLeft: number;
|
|
4933
|
+
GridlineWidthTop: number;
|
|
4934
|
+
GridlineWidthRight: number;
|
|
4935
|
+
GridlineWidthBottom: number;
|
|
4936
|
+
GridlineColor: number;
|
|
4937
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
4938
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
4939
|
+
readonly LayoutID: number;
|
|
4940
|
+
BackThemeColorIndex: number;
|
|
4941
|
+
BackTint: number;
|
|
4942
|
+
BackShade: number;
|
|
4943
|
+
BorderThemeColorIndex: number;
|
|
4944
|
+
BorderTint: number;
|
|
4945
|
+
BorderShade: number;
|
|
4946
|
+
GridlineThemeColorIndex: number;
|
|
4947
|
+
GridlineTint: number;
|
|
4948
|
+
GridlineShade: number;
|
|
4949
|
+
ChartAxis: string;
|
|
4950
|
+
ChartLegend: string;
|
|
4951
|
+
ChartValues: string;
|
|
4952
|
+
HasLegend: boolean;
|
|
4953
|
+
HasTitle: boolean;
|
|
4954
|
+
ChartTitle: string;
|
|
4955
|
+
HasAxisTitles: boolean;
|
|
4956
|
+
CategoryAxisTitle: string;
|
|
4957
|
+
PrimaryValuesAxisTitle: string;
|
|
4958
|
+
SecondaryValuesAxisTitle: string;
|
|
4959
|
+
readonly TransformedRowSource: string;
|
|
4960
|
+
ChartType: AcChartType;
|
|
4961
|
+
LegendPosition: AcLegendPosition;
|
|
4962
|
+
PrimaryValuesAxisMinimum: number;
|
|
4963
|
+
PrimaryValuesAxisMaximum: number;
|
|
4964
|
+
SecondaryValuesAxisMinimum: number;
|
|
4965
|
+
SecondaryValuesAxisMaximum: number;
|
|
4966
|
+
PrimaryValuesAxisRange: AcAxisRange;
|
|
4967
|
+
SecondaryValuesAxisRange: AcAxisRange;
|
|
4968
|
+
PrimaryValuesAxisFontSize: number;
|
|
4969
|
+
PrimaryValuesAxisFontColor: number;
|
|
4970
|
+
PrimaryValuesAxisThemeColorIndex: number;
|
|
4971
|
+
PrimaryValuesAxisFontTint: number;
|
|
4972
|
+
PrimaryValuesAxisFontShade: number;
|
|
4973
|
+
SecondaryValuesAxisFontSize: number;
|
|
4974
|
+
SecondaryValuesAxisThemeColorIndex: number;
|
|
4975
|
+
SecondaryValuesAxisFontTint: number;
|
|
4976
|
+
SecondaryValuesAxisFontShade: number;
|
|
4977
|
+
SecondaryValuesAxisFontColor: number;
|
|
4978
|
+
CategoryAxisFontSize: number;
|
|
4979
|
+
CategoryAxisFontColor: number;
|
|
4980
|
+
CategoryAxisThemeColorIndex: number;
|
|
4981
|
+
CategoryAxisFontTint: number;
|
|
4982
|
+
CategoryAxisFontShade: number;
|
|
4983
|
+
ChartTitleFontColor: number;
|
|
4984
|
+
ChartTitleThemeColorIndex: number;
|
|
4985
|
+
ChartTitleFontTint: number;
|
|
4986
|
+
ChartTitleFontShade: number;
|
|
4987
|
+
ChartTitleFontSize: number;
|
|
4988
|
+
readonly ChartSeriesCollection: ChartSeriesCollection;
|
|
4989
|
+
readonly ChartAxisCollection: ChartAxisCollection;
|
|
4990
|
+
readonly ChartValuesCollection: ChartValuesCollection;
|
|
4991
|
+
PrimaryValuesAxisFormat: string;
|
|
4992
|
+
SecondaryValuesAxisFormat: string;
|
|
4993
|
+
PrimaryValuesAxisDisplayUnits: AcAxisUnits;
|
|
4994
|
+
SecondaryValuesAxisDisplayUnits: AcAxisUnits;
|
|
4995
|
+
ChartTitleFontName: string;
|
|
4996
|
+
LegendTextFontSize: number;
|
|
4997
|
+
LegendTextFontColor: number;
|
|
4998
|
+
LegendTextThemeColorIndex: number;
|
|
4999
|
+
LegendTextFontTint: number;
|
|
5000
|
+
LegendTextFontShade: number;
|
|
5001
|
+
HasSubtitle: boolean;
|
|
5002
|
+
ChartSubtitle: string;
|
|
5003
|
+
ChartSubtitleFontSize: number;
|
|
5004
|
+
ChartSubtitleFontColor: number;
|
|
5005
|
+
ChartSubtitleThemeColorIndex: number;
|
|
5006
|
+
ChartSubtitleFontTint: number;
|
|
5007
|
+
ChartSubtitleFontShade: number;
|
|
5008
|
+
}
|
|
5009
|
+
interface Edge{
|
|
5010
|
+
readonly Application: Application;
|
|
5011
|
+
readonly Parent: object | any;
|
|
5012
|
+
readonly OldValue: any;
|
|
5013
|
+
readonly Properties: Properties;
|
|
5014
|
+
SizeToFit(): void;
|
|
5015
|
+
Requery(): void;
|
|
5016
|
+
Goto(): void;
|
|
5017
|
+
SetFocus(): void;
|
|
5018
|
+
readonly Controls: Children;
|
|
5019
|
+
_Evaluate(bstrExpr: string, ppsa: any[]): any;
|
|
5020
|
+
readonly Hyperlink: Hyperlink;
|
|
5021
|
+
Value: any;
|
|
5022
|
+
ControlSource: string;
|
|
5023
|
+
DisplayWhen: number;
|
|
5024
|
+
Enabled: boolean;
|
|
5025
|
+
readonly ReadyState: AcWebBrowserState;
|
|
5026
|
+
ScrollBars: AcWebBrowserScrollBars;
|
|
5027
|
+
ScrollTop: number;
|
|
5028
|
+
ScrollLeft: number;
|
|
5029
|
+
readonly LocationURL: string;
|
|
5030
|
+
Left: number;
|
|
5031
|
+
Top: number;
|
|
5032
|
+
Width: number;
|
|
5033
|
+
Height: number;
|
|
5034
|
+
SpecialEffect: number;
|
|
5035
|
+
BorderStyle: number;
|
|
5036
|
+
BorderColor: number;
|
|
5037
|
+
BorderWidth: number;
|
|
5038
|
+
BorderLineStyle: number;
|
|
5039
|
+
Section: number;
|
|
5040
|
+
OnMouseDown: string;
|
|
5041
|
+
OnMouseMove: string;
|
|
5042
|
+
OnMouseUp: string;
|
|
5043
|
+
OnKeyDown: string;
|
|
5044
|
+
OnKeyUp: string;
|
|
5045
|
+
OnKeyPress: string;
|
|
5046
|
+
Name: string;
|
|
5047
|
+
Move(Left: any, Top?: any, Width?: any, Height?: any): void;
|
|
5048
|
+
IsMemberSafe(dispid: number): boolean;
|
|
5049
|
+
readonly Layout: AcLayoutType;
|
|
5050
|
+
LeftPadding: number;
|
|
5051
|
+
TopPadding: number;
|
|
5052
|
+
RightPadding: number;
|
|
5053
|
+
BottomPadding: number;
|
|
5054
|
+
GridlineStyleLeft: number;
|
|
5055
|
+
GridlineStyleTop: number;
|
|
5056
|
+
GridlineStyleRight: number;
|
|
5057
|
+
GridlineStyleBottom: number;
|
|
5058
|
+
GridlineWidthLeft: number;
|
|
5059
|
+
GridlineWidthTop: number;
|
|
5060
|
+
GridlineWidthRight: number;
|
|
5061
|
+
GridlineWidthBottom: number;
|
|
5062
|
+
GridlineColor: number;
|
|
5063
|
+
HorizontalAnchor: AcHorizontalAnchor;
|
|
5064
|
+
VerticalAnchor: AcVerticalAnchor;
|
|
5065
|
+
OnClickMacro: string;
|
|
5066
|
+
OnDblClickMacro: string;
|
|
5067
|
+
OnMouseDownMacro: string;
|
|
5068
|
+
OnMouseMoveMacro: string;
|
|
5069
|
+
OnMouseUpMacro: string;
|
|
5070
|
+
OnKeyDownMacro: string;
|
|
5071
|
+
OnKeyUpMacro: string;
|
|
5072
|
+
OnKeyPressMacro: string;
|
|
5073
|
+
readonly LayoutID: number;
|
|
5074
|
+
OnBeforeNavigate: string;
|
|
5075
|
+
OnDocumentComplete: string;
|
|
5076
|
+
OnNavigateError: string;
|
|
5077
|
+
OnUpdated: string;
|
|
5078
|
+
OnBeforeNavigateMacro: string;
|
|
5079
|
+
OnDocumentCompleteMacro: string;
|
|
5080
|
+
OnNavigateErrorMacro: string;
|
|
5081
|
+
OnUpdatedMacro: string;
|
|
5082
|
+
TabStop: boolean;
|
|
5083
|
+
TabIndex: number;
|
|
5084
|
+
Visible: boolean;
|
|
5085
|
+
InSelection: boolean;
|
|
5086
|
+
ControlType: number;
|
|
5087
|
+
BorderThemeColorIndex: number;
|
|
5088
|
+
BorderTint: number;
|
|
5089
|
+
BorderShade: number;
|
|
5090
|
+
GridlineThemeColorIndex: number;
|
|
5091
|
+
GridlineTint: number;
|
|
5092
|
+
GridlineShade: number;
|
|
5093
|
+
StatusBarText: string;
|
|
5094
|
+
ControlTipText: string;
|
|
5095
|
+
EventProcPrefix: string;
|
|
5096
|
+
HelpContextId: number;
|
|
5097
|
+
Tag: string;
|
|
5098
|
+
ExecuteJavascript(Script: string): void;
|
|
5099
|
+
RetrieveJavascriptValue(Expression: string): string;
|
|
5100
|
+
Navigate(URL: string): void;
|
|
5101
|
+
Refresh(): void;
|
|
5102
|
+
}
|
|
5103
|
+
|
|
5104
|
+
declare const Application: Application & base.Application;
|