-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage-api.json
More file actions
1454 lines (1454 loc) · 255 KB
/
Copy pathpackage-api.json
File metadata and controls
1454 lines (1454 loc) · 255 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"build": 983,
"packages": {
"AppGlobalClassProject": {
"exports": ["AppGlobalClassObject"],
"types": [
{"name":"_App","kind":"interface","members":{"Path":"property","EXEName":"property","Title":"property","PrevInstance":"property","StartMode":"property","TaskVisible":"property","OleServerBusyTimeout":"property","OleServerBusyMsgTitle":"property","OleServerBusyMsgText":"property","OleServerBusyRaiseError":"property","OleRequestPendingTimeout":"property","OleRequestPendingMsgTitle":"property","OleRequestPendingMsgText":"property","Major":"property","Minor":"property","Revision":"property","Comments":"property","CompanyName":"property","FileDescription":"property","LegalCopyright":"property","LegalTrademarks":"property","ProductName":"property","hInstance":"property","NonModalAllowed":"property","LogPath":"property","LogMode":"property","UnattendedApp":"property","ThreadID":"property","HelpFile":"property","RetainedProject":"property","StartLogging":"sub","LogEvent":"sub","IsInIDE":"property","Build":"property","ModulePath":"property","LastBuildPath":"property"}},
{"name":"App","kind":"coclass","default":"_App"},
{"name":"InternalStuff","kind":"module","members":{"CreateGlobalObject":"function","GetApphInstance":"function","GetAppThreadID":"function","GetAppPath":"function","GetAppEXEName":"function","GetAppIsInIDE":"function","GetAppMajor":"function","GetAppMinor":"function","GetAppRevision":"function","GetAppBuild":"function","GetAppModulePath":"function","GetAppComments":"function","GetAppCompanyName":"function","GetAppFileDescription":"function","GetAppLegalCopyright":"function","GetAppLegalTrademarks":"function","GetAppProductName":"function","GetAppLastBuildPath":"function","GetAppPrevInstance":"function","GetAppTitle":"function","LetAppTitle":"sub","GetAppHelpFile":"function","LetAppHelpFile":"sub","GetAppLogMode":"function"},"hiddenMembers":["CreateGlobalObject","GetApphInstance","GetAppThreadID","GetAppPath","GetAppEXEName","GetAppIsInIDE","GetAppMajor","GetAppMinor","GetAppRevision","GetAppBuild","GetAppModulePath","GetAppComments","GetAppCompanyName","GetAppFileDescription","GetAppLegalCopyright","GetAppLegalTrademarks","GetAppProductName","GetAppLastBuildPath","GetAppPrevInstance","GetAppTitle","LetAppTitle","GetAppHelpFile","LetAppHelpFile","GetAppLogMode"]},
{"name":"LogModeConstants","kind":"enum","in":"InternalStuff","values":["vbLogAuto","vbLogOff","vbLogToFile","vbLogToNT","vbLogOverwrite","vbLogThreadID"]}
]
},
"CustomControls": {
"exports": ["CustomControls"],
"types": [
{"name":"Constants","kind":"module"},
{"name":"ColorRGBA","kind":"enum","in":"Constants","values":["_MAX"]},
{"name":"PixelCount","kind":"enum","in":"Constants","values":["_MAX"]},
{"name":"PointSize","kind":"enum","in":"Constants","values":["_MAX"]},
{"name":"CornerShape","kind":"enum","in":"Constants","values":["tbCurve","tbNotched","tbCutOut"]},
{"name":"FillPattern","kind":"enum","in":"Constants","values":["tbPatternNone","tbGradientNorthToSouth","tbGradientSouthToNorth","tbGradientWestToEast","tbGradientEastToWest","tbGradientNorthWestToSouthEast","tbGradientNorthWestToSouthEastAlt","tbGradientNorthEastToSouthWest","tbGradientNorthEastToSouthWestAlt","tbGradientSouthWestToNorthEast","tbGradientSouthWestToNorthEastAlt","tbGradientSouthEastToNorthWest","tbGradientSouthEastToNorthWestAlt","tbGradientCornerTopLeft","tbGradientCornerTopRight","tbGradientCornerBottomLeft","tbGradientCornerBottomRight","tbGradientCornerTopLeftAlt","tbGradientCornerTopRightAlt","tbGradientCornerBottomLeftAlt","tbGradientCornerBottomRightAlt"]},
{"name":"TextAlignment","kind":"enum","in":"Constants","values":["tbAlignTopLeft","tbAlignTopCenter","tbAlignTopRight","tbAlignMiddleLeft","tbAlignMiddleCenter","tbAlignMiddleRight","tbAlignBottomLeft","tbAlignBottomCenter","tbAlignBottomRight"]},
{"name":"TextOverflowMode","kind":"enum","in":"Constants","values":["tbAllowPartialChars","tbDisallowPartialChars","tbAppendEllipsis","tbShrinkToFit"]},
{"name":"DockMode","kind":"enum","in":"Constants","values":["tbDockNone","tbDockLeft","tbDockTop","tbDockRight","tbDockBottom","tbDockFill"]},
{"name":"FontWeight","kind":"enum","in":"Constants","values":["tbThin","tbExtraLight","tbLight","tbNormal","tbMedium","tbSemiBold","tbBold","tbExtraBold","tbHeavy"]},
{"name":"StartupPosition","kind":"enum","in":"Constants","values":["tbStartUpManual","tbStartUpCenterOwner","tbStartUpCenterScreen","tbStartUpWindowsDefault"]},
{"name":"Customtate","kind":"enum","in":"Constants","values":["tbNormal","tbMinimized","tbMaximized"]},
{"name":"BorderStyle","kind":"enum","in":"Constants","values":["tbNone","tbFixedSingle","tbFixedSizable","tbFixedDialog","tbFixedToolWindow","tbSizableToolWindow"]},
{"name":"WindowState","kind":"enum","in":"Constants","values":["tbNormal","tbMinimized","tbMaximized"]},
{"name":"SerializeInfo","kind":"type","in":"Constants","fields":["Pointer"],"members":{"RuntimeUISrzDeserialize":"function","RuntimeUISrzGetRootCLSID":"function","RuntimeUISrzGetRootClassDispatch":"function","RuntimeUISrzIsDesignMode":"function","RuntimeUISrzGetFormHWND":"function","RuntimeUISrzIsReportMode":"function","RuntimeUISrzIsRuntimeAdded":"function","RuntimeUISrzGetOrientationHint":"function"}},
{"name":"Canvas","kind":"type","in":"Constants","fields":["Pointer"],"members":{"RuntimeUICCCanvasAddElement":"sub","RuntimeUICCGetDpiScaleFactor":"function","RuntimeUICCGetDpi":"function","RuntimeUICCGetWidth":"function","RuntimeUICCGetHeight":"function"}},
{"name":"_CustomControlTimer","kind":"interface","members":{"Interval":"property","Enabled":"property"}},
{"name":"_CustomControlTimerEvents","kind":"interface","members":{"OnTimer":"sub"}},
{"name":"CustomControlTimer","kind":"coclass","default":"_CustomControlTimer","source":["_CustomControlTimerEvents"]},
{"name":"_CustomControlContext","kind":"interface","members":{"GetSerializer":"function","Repaint":"sub","CreateTimer":"function","ChangeFocusedElement":"sub"}},
{"name":"CustomControlContext","kind":"coclass","default":"_CustomControlContext"},
{"name":"_CustomFormContext","kind":"interface","extends":"CustomControls._CustomControlContext","members":{"Show":"sub","Close":"sub"}},
{"name":"CustomFormContext","kind":"coclass","default":"_CustomFormContext"},
{"name":"ICustomControl","kind":"interface","members":{"Initialize":"sub","Destroy":"sub","Paint":"sub"}},
{"name":"_CustomControlsCollection","kind":"interface","members":{"Count":"property","Item":"property","Add":"function","Remove":"sub","_NewEnum":"function"},"hiddenMembers":["_NewEnum"]},
{"name":"CustomControlsCollection","kind":"coclass","default":"_CustomControlsCollection"},
{"name":"ICustomForm","kind":"interface","members":{"Initialize":"sub","Destroy":"sub","Paint":"sub"}}
]
},
"CustomControlsPackage": {
"exports": ["CustomControlsPackage"],
"types": [
{"name":"WaynesButtonState","kind":"class","public":false},
{"name":"WaynesButton","kind":"class","control":true,"members":{"Click":"event","GotFocus":"event","LostFocus":"event","MouseMove":"event","MouseDown":"event","MouseUp":"event","MouseEnter":"event","MouseLeave":"event","KeyPress":"event","KeyDown":"event","KeyUp":"event","NormalState":"field","HoverState":"field","FocusedState":"field","PressedState":"field","Caption":"field"}},
{"name":"WaynesForm","kind":"class","control":true,"members":{"Click":"event","Caption":"field","BackgroundFill":"field","WindowsOptions":"field","Show":"sub","StartupShow":"sub","Close":"sub"}},
{"name":"WaynesFrame","kind":"class","control":true,"members":{"BackgroundFill":"field"}},
{"name":"Column","kind":"class","members":{"Caption":"field","Width":"field","OnChanged":"event"}},
{"name":"CellRenderingOptions","kind":"class","members":{"Fill":"field","TextRendering":"field","Borders":"field","Corners":"field","Cursor":"field","OnChanged":"event","New":"sub"}},
{"name":"WaynesGrid","kind":"class","control":true,"members":{"GetCellText":"event","ColumnHeaderOptions":"field","RowHeaderOptions":"field","CellOptions":"field","HoverCellOptions":"field","SelectedCellOptions":"field","MultiSelectCellOptions":"field","HeaderRowHeight":"field","RowHeight":"field","SelectedCellX":"field","SelectedCellY":"field","SelectedFullColumnX":"field","SelectedFullRowY":"field","RowCount":"field","Columns":"field","VerticalLineOptions":"field","HorizontalLineOptions":"field","ResizerBar":"field","Repaint":"sub"}},
{"name":"WaynesLabel","kind":"class","control":true,"members":{"BackgroundFill":"field","TextRendering":"field","Caption":"field"}},
{"name":"WaynesSliderState","kind":"class","members":{"BackgroundFill":"field","BackgroundBorders":"field","BackgroundCorners":"field","BlockFill":"field","BlockBorders":"field","BlockCorners":"field","BlockWidth":"field","TextRendering":"field","OnChanged":"event","InitializeDefaultValues":"sub"}},
{"name":"WaynesSlider","kind":"class","control":true,"members":{"MoveInterval":"field","WrapAround":"field","Value":"field","MinValue":"field","MaxValue":"field","StepValue":"field","PagingStepValue":"field","NormalState":"field","HoverState":"field","FocusedState":"field","Direction":"field","DisplayFormat":"field"}},
{"name":"SliderDirection","kind":"enum","in":"WaynesSlider","values":["Horizontal","Vertical"]},
{"name":"SliderDisplayValueFormat","kind":"enum","in":"WaynesSlider","values":["DisplayValue","DisplayPercentage","DisplayNone"]},
{"name":"WaynesTextBoxState","kind":"class","members":{"BackgroundFill":"field","TextRendering":"field","Corners":"field","Borders":"field","SelectedBackgroundFill":"field","SelectedTextFill":"field","CaretFill":"field","CaretWidth":"field","DecorationERROR":"field","DecorationWARNING":"field","DecorationINFO":"field","OnChanged":"event","InitializeDefaultValues":"sub","InitializeDefaultValues_Focused":"sub"}},
{"name":"WaynesTextBox","kind":"class","control":true,"members":{"NormalState":"field","HoverState":"field","FocusedState":"field","Value":"field"}},
{"name":"WaynesTimer","kind":"class","control":true,"members":{"Timer":"event","Interval":"field","Enabled":"field"}},
{"name":"Corner","kind":"class","public":false},
{"name":"Corners","kind":"class","public":false},
{"name":"Padding","kind":"class","public":false},
{"name":"FillColorPoint","kind":"class","public":false},
{"name":"FillColorPoints","kind":"class","public":false},
{"name":"Border","kind":"class","public":false},
{"name":"Borders","kind":"class","public":false},
{"name":"Line","kind":"class","public":false},
{"name":"WindowsFormOptions","kind":"class","public":false},
{"name":"Anchors","kind":"class","public":false},
{"name":"Fill","kind":"class","public":false},
{"name":"FontStyle","kind":"class","public":false},
{"name":"TextRendering","kind":"class","public":false},
{"name":"TextDecorator","kind":"class","public":false},
{"name":"Range","kind":"type","in":"TextDecorator","public":false},
{"name":"TextDecoratorStyle","kind":"enum","in":"TextDecorator","values":["UnderlineSquiggle","UnderlineStraight","BackgroundFill","Caret","ForegroundFill"]},
{"name":"TextDecorators","kind":"class","public":false},
{"name":"UDTs","kind":"class","public":false},
{"name":"MouseEvent","kind":"type","in":"UDTs","public":false},
{"name":"KeyEvent","kind":"type","in":"UDTs","public":false},
{"name":"FocusEvent","kind":"type","in":"UDTs","public":false},
{"name":"CaretPosition","kind":"enum","in":"UDTs","values":["CaretPositionNone","CaretPositionStart","CaretPositionEnd"]},
{"name":"SpecialKeyCodes","kind":"enum","in":"UDTs","values":["SelectAll","Copy","Paste","Cut"]},
{"name":"ElementDescriptor","kind":"type","in":"UDTs","public":false},
{"name":"BaseForm","kind":"class","public":false},
{"name":"BaseControl","kind":"class","public":false},
{"name":"BaseControlFocusable","kind":"class","public":false},
{"name":"MathSupport","kind":"module","public":false},
{"name":"ColorSupport","kind":"module","public":false}
]
},
"Assert": {
"exports": ["TwinBasicAssertions"],
"types": [
{"name":"Exact","kind":"module","members":{"Succeed":"sub","Fail":"sub","Inconclusive":"sub","AreEqual":"sub","AreNotEqual":"sub","AreSame":"sub","AreNotSame":"sub","IsTrue":"sub","IsFalse":"sub","IsNothing":"sub","IsNotNothing":"sub","IsNull":"sub","IsNotNull":"sub","SequenceEquals":"sub","NotSequenceEquals":"sub"}},
{"name":"Permissive","kind":"module","members":{"Succeed":"sub","Fail":"sub","Inconclusive":"sub","AreEqual":"sub","AreNotEqual":"sub","AreSame":"sub","AreNotSame":"sub","IsTrue":"sub","IsFalse":"sub","IsNothing":"sub","IsNotNothing":"sub","IsNull":"sub","IsNotNull":"sub","SequenceEquals":"sub","NotSequenceEquals":"sub"}},
{"name":"Strict","kind":"module","members":{"Succeed":"sub","Fail":"sub","Inconclusive":"sub","AreEqual":"sub","AreNotEqual":"sub","AreSame":"sub","AreNotSame":"sub","IsTrue":"sub","IsFalse":"sub","IsNothing":"sub","IsNotNothing":"sub","IsNull":"sub","IsNotNull":"sub","SequenceEquals":"sub","NotSequenceEquals":"sub"}}
]
},
"VB": {
"exports": ["VB"],
"types": [
{"name":"COMCTL32Module","kind":"module","public":false},
{"name":"COMCTL32","kind":"type","in":"COMCTL32Module","public":false},
{"name":"COMDLG32Module","kind":"module","public":false},
{"name":"COMDLG32","kind":"type","in":"COMDLG32Module","public":false},
{"name":"GDI32Module","kind":"module","public":false},
{"name":"GDI32","kind":"type","in":"GDI32Module","public":false},
{"name":"KERNEL32Module","kind":"module","public":false},
{"name":"KERNEL32","kind":"type","in":"KERNEL32Module","public":false},
{"name":"MPRModule","kind":"module","public":false},
{"name":"MPR","kind":"type","in":"MPRModule","public":false},
{"name":"OLE32Module","kind":"module","public":false},
{"name":"OLE32","kind":"type","in":"OLE32Module","public":false},
{"name":"OLEAUT32Module","kind":"module","public":false},
{"name":"OLEAUT32","kind":"type","in":"OLEAUT32Module","public":false},
{"name":"SHLWAPIModule","kind":"module","public":false},
{"name":"SHLWAPI","kind":"type","in":"SHLWAPIModule","public":false},
{"name":"USER32Module","kind":"module","public":false},
{"name":"USER32","kind":"type","in":"USER32Module","public":false},
{"name":"UXTHEMEModule","kind":"module","public":false},
{"name":"UXTHEME","kind":"type","in":"UXTHEMEModule","public":false},
{"name":"WINSPOOLModule","kind":"module","public":false},
{"name":"WINSPOOL","kind":"type","in":"WINSPOOLModule","public":false},
{"name":"BaseControl","kind":"class","public":false,"members":{"Tag":"field","ControlType":"field","New":"sub","Name":"property"}},
{"name":"BaseControlActiveXExtender","kind":"class","public":false,"inherits":["VB.BaseControlRectDockable"]},
{"name":"BaseControlFocusable","kind":"class","public":false,"inherits":["VB.BaseControlRectDockable","VB.BaseFont"],"members":{"Appearance":"field","New":"sub","Enabled":"property","Visible":"property","SetFocus":"sub","Refresh":"sub","ToolTipText":"property","VisualStyles":"property","Drag":"sub","ZOrder":"sub","MouseIcon":"property","hWnd":"property","MousePointer":"property","DragMode":"property","CausesValidation":"property","TabStop":"property","TabIndex":"property","DragIcon":"property"}},
{"name":"BaseControlFocusableNoFont","kind":"class","public":false,"inherits":["VB.BaseControlRectDockable"],"members":{"New":"sub","Enabled":"property","Visible":"property","SetFocus":"sub","Drag":"sub","ZOrder":"sub","MouseIcon":"property","hWnd":"property","MousePointer":"property","DragMode":"property","CausesValidation":"property","TabStop":"property","TabIndex":"property","DragIcon":"property"}},
{"name":"BaseControlNotFocusable","kind":"class","public":false,"inherits":["VB.BaseControlRect"],"members":{"Index":"property","New":"sub","Container":"property"}},
{"name":"BaseControlNotFocusable2","kind":"class","public":false,"inherits":["VB.BaseControlRectDockable","VB.BaseFont"],"members":{"Appearance":"field","New":"sub","Enabled":"property","Visible":"property","SetFocus":"sub","Refresh":"sub","ToolTipText":"property","VisualStyles":"property","Move":"sub","Left":"property","Top":"property","Width":"property","Height":"property","Drag":"sub","ZOrder":"sub","MouseIcon":"property","hWnd":"property","MousePointer":"property","DragMode":"property","TabIndex":"property","DragIcon":"property"}},
{"name":"BaseControlPoints","kind":"class","public":false,"inherits":["VB.BaseControl"],"members":{"New":"sub"}},
{"name":"BaseControlRect","kind":"class","public":false,"inherits":["VB.BaseControl"],"members":{"New":"sub","Class_Terminate":"sub","Left":"property","Top":"property","Width":"property","Height":"property"}},
{"name":"BaseControlRectDockable","kind":"class","public":false,"inherits":["VB.BaseControlRect"],"members":{"Index":"property","New":"sub","Anchors":"property","Container":"property","Move":"sub","Dock":"property"}},
{"name":"BaseControlWindowless","kind":"class","public":false,"inherits":["VB.BaseControlRectDockable"]},
{"name":"BaseControlWindowlessNoDrag","kind":"class","public":false,"inherits":["VB.BaseControlRectDockable"],"members":{"New":"sub","Refresh":"sub","ZOrder":"sub","Visible":"property","TabStop":"property","TabIndex":"property"}},
{"name":"BaseControlWindowlessNoFocus","kind":"class","public":false,"inherits":["VB.BaseControlRectDockable"],"members":{"New":"sub","Drag":"sub","Refresh":"sub","ZOrder":"sub","Visible":"property","DragMode":"property","DragIcon":"property"}},
{"name":"BaseControlWindowlessPoints","kind":"class","public":false,"inherits":["VB.BaseControlPoints"],"members":{"Index":"property","New":"sub","Container":"property","X1":"property","Y1":"property","X2":"property","Y2":"property","ZOrder":"sub","Visible":"property"}},
{"name":"BaseFont","kind":"class","public":false,"members":{"Font":"field","FontBold":"property","FontItalic":"property","FontName":"property","FontSize":"property","FontStrikethru":"property","FontUnderline":"property","Class_Terminate":"sub"}},
{"name":"BaseForm","kind":"class","public":false,"inherits":["VB.BaseControlRect"],"members":{"FormDesignerId":"field","Moveable":"field","Appearance":"field","MDIChild":"field","New":"sub","WindowState":"property","Caption":"property","ControlBox":"property","Enabled":"property","Visible":"property","Show":"sub","Hide":"sub","Refresh":"sub","StartupShow":"sub","Close":"sub","StartUpPosition":"property","MaxButton":"property","MinButton":"property","ShowInTaskbar":"property","ZOrder":"sub","MouseIcon":"property","hWnd":"property","BorderStyle":"property","MousePointer":"property","KeyPreview":"property","Controls":"property"}},
{"name":"BaseMDIForm","kind":"class","public":false,"inherits":["VB.BaseControlRect"],"members":{"FormDesignerId":"field","Moveable":"field","Appearance":"field","New":"sub","WindowState":"property","Caption":"property","Enabled":"property","Visible":"property","Hide":"sub","Refresh":"sub","Show":"sub","StartupShow":"sub","Close":"sub","ZOrder":"sub","MouseIcon":"property","hWnd":"property","SyncMoveable":"sub","StartUpPosition":"property","MousePointer":"property","Controls":"property"}},
{"name":"BasePropertyPage","kind":"class","public":false,"inherits":["VB.BaseControlRect"],"members":{"FormDesignerId":"field","HasDC":"field","Appearance":"field","Caption":"field","New":"sub","Refresh":"sub","MouseIcon":"property","hWnd":"property","MousePointer":"property","KeyPreview":"property","Controls":"property"}},
{"name":"BaseUserControl","kind":"class","public":false,"inherits":["VB.BaseControlRect"],"members":{"Index":"property","FormDesignerId":"field","Appearance":"field","New":"sub","Enabled":"property","Refresh":"sub","MouseIcon":"property","hWnd":"property","MousePointer":"property","KeyPreview":"property","Controls":"property"}},
{"name":"HDCModule","kind":"module","public":false},
{"name":"HDC","kind":"type","in":"HDCModule","public":false},
{"name":"HHCTRLModule","kind":"module","public":false},
{"name":"HHCTRL","kind":"type","in":"HHCTRLModule","public":false},
{"name":"HMENUModule","kind":"module","public":false},
{"name":"HMENU","kind":"type","in":"HMENUModule","public":false},
{"name":"HWNDModule","kind":"module","public":false},
{"name":"HWND","kind":"type","in":"HWNDModule","public":false},
{"name":"AnchorsConsts","kind":"module","public":false},
{"name":"AnchorsData","kind":"type","in":"AnchorsConsts","public":false},
{"name":"Anchors","kind":"class","members":{"New":"sub","Left":"property","Top":"property","Right":"property","Bottom":"property"}},
{"name":"DataObjectReadOnly","kind":"class","public":false},
{"name":"GUID2","kind":"type","in":"DataObjectReadOnly","public":false},
{"name":"DROPFILES","kind":"type","in":"DataObjectReadOnly","public":false},
{"name":"METAFILEPICT","kind":"type","in":"DataObjectReadOnly","public":false},
{"name":"BMP_HEADER","kind":"type","in":"DataObjectReadOnly","public":false},
{"name":"tbPICTDESC","kind":"type","in":"DataObjectReadOnly","public":false},
{"name":"PICTDESC_BITMAP","kind":"type","in":"DataObjectReadOnly","public":false},
{"name":"PICTDESC_ICON","kind":"type","in":"DataObjectReadOnly","public":false},
{"name":"PICTDESC_METAFILE","kind":"type","in":"DataObjectReadOnly","public":false},
{"name":"PICTDESC_ENHMETAFILE","kind":"type","in":"DataObjectReadOnly","public":false},
{"name":"SimpleArrayEnumerator","kind":"class","public":false},
{"name":"DataObjectFilesReadOnly","kind":"class","public":false},
{"name":"DataObjectFormatReadOnly","kind":"class","public":false},
{"name":"DataObjectFormatsReadOnly","kind":"class","public":false},
{"name":"IgnoreMe","kind":"class","public":false},
{"name":"DataObjectWriteOnlyEnumerator","kind":"class","public":false},
{"name":"DataObjectFilesWrite","kind":"class","public":false},
{"name":"DataObjectSource","kind":"class","public":false},
{"name":"DataObjectData","kind":"type","in":"DataObjectSource","public":false},
{"name":"OLEDropSource","kind":"class","public":false},
{"name":"GeneralConsts","kind":"module","public":false},
{"name":"COMBOBOXINFO","kind":"type","in":"GeneralConsts","public":false},
{"name":"LOGFONT","kind":"type","in":"GeneralConsts","public":false},
{"name":"TEXTMETRIC","kind":"type","in":"GeneralConsts","public":false},
{"name":"MEASUREITEMSTRUCT","kind":"type","in":"GeneralConsts","public":false},
{"name":"DRAWITEMSTRUCT","kind":"type","in":"GeneralConsts","public":false},
{"name":"WINDOWPLACEMENT","kind":"type","in":"GeneralConsts","public":false},
{"name":"UxThemeButtonParts","kind":"enum","in":"GeneralConsts","values":["BP_PUSHBUTTON","BP_RADIOBUTTON","BP_CHECKBOX","BP_GROUPBOX","BP_USERBUTTON"]},
{"name":"UxThemeCheckBoxStates","kind":"enum","in":"GeneralConsts","values":["CBS_UNCHECKEDNORMAL","CBS_UNCHECKEDHOT","CBS_UNCHECKEDPRESSED","CBS_UNCHECKEDDISABLED","CBS_CHECKEDNORMAL","CBS_CHECKEDHOT","CBS_CHECKEDPRESSED","CBS_CHECKEDDISABLED","CBS_MIXEDNORMAL","CBS_MIXEDHOT","CBS_MIXEDPRESSED","CBS_MIXEDDISABLED"]},
{"name":"UxThemeRadioButtonStates","kind":"enum","in":"GeneralConsts","values":["RBS_UNCHECKEDNORMAL","RBS_UNCHECKEDHOT","RBS_UNCHECKEDPRESSED","RBS_UNCHECKEDDISABLED","RBS_CHECKEDNORMAL","RBS_CHECKEDHOT","RBS_CHECKEDPRESSED","RBS_CHECKEDDISABLED"]},
{"name":"DrawFrameTypes","kind":"enum","in":"GeneralConsts","values":["DFC_CAPTION","DFC_MENU","DFC_SCROLL","DFC_BUTTON","DFC_POPUPMENU","DFCS_CAPTIONCLOSE","DFCS_CAPTIONMIN","DFCS_CAPTIONMAX","DFCS_CAPTIONRESTORE","DFCS_CAPTIONHELP","DFCS_MENUARROW","DFCS_MENUCHECK","DFCS_MENUBULLET","DFCS_MENUARROWRIGHT","DFCS_SCROLLUP","DFCS_SCROLLDOWN","DFCS_SCROLLLEFT","DFCS_SCROLLRIGHT","DFCS_SCROLLCOMBOBOX","DFCS_SCROLLSIZEGRIP","DFCS_SCROLLSIZEGRIPRIGHT","DFCS_BUTTONCHECK","DFCS_BUTTONRADIOIMAGE","DFCS_BUTTONRADIOMASK","DFCS_BUTTONRADIO","DFCS_BUTTON3STATE","DFCS_BUTTONPUSH","DFCS_INACTIVE","DFCS_PUSHED","DFCS_CHECKED","DFCS_TRANSPARENT","DFCS_HOT","DFCS_ADJUSTRECT","DFCS_FLAT","DFCS_MONO"]},
{"name":"OwnerDrawTypes","kind":"enum","in":"GeneralConsts","values":["ODT_MENU","ODT_LISTBOX","ODT_COMBOBOX","ODT_BUTTON","ODT_STATIC"]},
{"name":"OwnerDrawActions","kind":"enum","in":"GeneralConsts","values":["ODA_DRAWENTIRE","ODA_SELECT","ODA_FOCUS"]},
{"name":"BackgroundModes","kind":"enum","in":"GeneralConsts","values":["TRANSPARENT","OPAQUE"]},
{"name":"WindowMessages","kind":"enum","in":"GeneralConsts","values":["WM_NULL","WM_CREATE","WM_DESTROY","WM_MOVE","WM_SIZE","WM_ACTIVATE","WM_SETFOCUS","WM_KILLFOCUS","WM_ENABLE","WM_SETREDRAW","WM_SETTEXT","WM_GETTEXT","WM_GETTEXTLENGTH","WM_PAINT","WM_CLOSE","WM_QUERYENDSESSION","WM_QUERYOPEN","WM_ENDSESSION","WM_QUIT","WM_ERASEBKGND","WM_SYSCOLORCHANGE","WM_SHOWWINDOW","WM_WININICHANGE","WM_SETTINGCHANGE","WM_DEVMODECHANGE","WM_ACTIVATEAPP","WM_FONTCHANGE","WM_TIMECHANGE","WM_CANCELMODE","WM_SETCURSOR","WM_MOUSEACTIVATE","WM_CHILDACTIVATE","WM_QUEUESYNC","WM_GETMINMAXINFO","WM_PAINTICON","WM_ICONERASEBKGND","WM_NEXTDLGCTL","WM_SPOOLERSTATUS","WM_DRAWITEM","WM_MEASUREITEM","WM_DELETEITEM","WM_VKEYTOITEM","WM_CHARTOITEM","WM_SETFONT","WM_GETFONT","WM_SETHOTKEY","WM_GETHOTKEY","WM_QUERYDRAGICON","WM_COMPAREITEM","WM_GETOBJECT","WM_COMPACTING","WM_COMMNOTIFY","WM_WINDOWPOSCHANGING","WM_WINDOWPOSCHANGED","WM_POWER","WM_COPYDATA","WM_CANCELJOURNAL","WM_NOTIFY","WM_INPUTLANGCHANGEREQUEST","WM_INPUTLANGCHANGE","WM_TCARD","WM_HELP","WM_USERCHANGED","WM_NOTIFYFORMAT","WM_CONTEXTMENU","WM_STYLECHANGING","WM_STYLECHANGED","WM_DISPLAYCHANGE","WM_GETICON","WM_SETICON","WM_NCCREATE","WM_NCDESTROY","WM_NCCALCSIZE","WM_NCHITTEST","WM_NCPAINT","WM_NCACTIVATE","WM_GETDLGCODE","WM_NCMOUSEMOVE","WM_NCLBUTTONDOWN","WM_NCLBUTTONUP","WM_NCLBUTTONDBLCLK","WM_NCRBUTTONDOWN","WM_NCRBUTTONUP","WM_NCRBUTTONDBLCLK","WM_NCMBUTTONDOWN","WM_NCMBUTTONUP","WM_NCMBUTTONDBLCLK","WM_NCXBUTTONDOWN","WM_NCXBUTTONUP","WM_NCXBUTTONDBLCLK","WM_INPUT_DEVICE_CHANGE","WM_INPUT","WM_KEYFIRST","WM_KEYDOWN","WM_KEYUP","WM_CHAR","WM_DEADCHAR","WM_SYSKEYDOWN","WM_SYSKEYUP","WM_SYSCHAR","WM_SYSDEADCHAR","WM_UNICHAR","UNICODE_NOCHAR","WM_IME_STARTCOMPOSITION","WM_IME_ENDCOMPOSITION","WM_IME_COMPOSITION","WM_IME_KEYLAST","WM_INITDIALOG","WM_COMMAND","WM_SYSCOMMAND","WM_TIMER","WM_HSCROLL","WM_VSCROLL","WM_INITMENU","WM_INITMENUPOPUP","WM_GESTURE","WM_GESTURENOTIFY","WM_MENUSELECT","WM_MENUCHAR","WM_ENTERIDLE","WM_MENURBUTTONUP","WM_MENUDRAG","WM_MENUGETOBJECT","WM_UNINITMENUPOPUP","WM_MENUCOMMAND","WM_CHANGEUISTATE","WM_UPDATEUISTATE","WM_QUERYUISTATE","WM_CTLCOLORMSGBOX","WM_CTLCOLOREDIT","WM_CTLCOLORLISTBOX","WM_CTLCOLORBTN","WM_CTLCOLORDLG","WM_CTLCOLORSCROLLBAR","WM_CTLCOLORSTATIC","WM_MOUSEFIRST","WM_MOUSEMOVE","WM_LBUTTONDOWN","WM_LBUTTONUP","WM_LBUTTONDBLCLK","WM_RBUTTONDOWN","WM_RBUTTONUP","WM_RBUTTONDBLCLK","WM_MBUTTONDOWN","WM_MBUTTONUP","WM_MBUTTONDBLCLK","WM_MOUSEWHEEL","WM_XBUTTONDOWN","WM_XBUTTONUP","WM_XBUTTONDBLCLK","WM_MOUSEHWHEEL","WM_PARENTNOTIFY","WM_ENTERMENULOOP","WM_EXITMENULOOP","WM_NEXTMENU","WM_SIZING","WM_CAPTURECHANGED","WM_MOVING","WM_POWERBROADCAST","WM_DEVICECHANGE","WM_MDICREATE","WM_MDIDESTROY","WM_MDIACTIVATE","WM_MDIRESTORE","WM_MDINEXT","WM_MDIMAXIMIZE","WM_MDITILE","WM_MDICASCADE","WM_MDIICONARRANGE","WM_MDIGETACTIVE","WM_MDISETMENU","WM_ENTERSIZEMOVE","WM_EXITSIZEMOVE","WM_DROPFILES","WM_MDIREFRESHMENU","WM_POINTERDEVICECHANGE","WM_POINTERDEVICEINRANGE","WM_POINTERDEVICEOUTOFRANGE","WM_TOUCH","WM_NCPOINTERUPDATE","WM_NCPOINTERDOWN","WM_NCPOINTERUP","WM_POINTERUPDATE","WM_POINTERDOWN","WM_POINTERUP","WM_POINTERENTER","WM_POINTERLEAVE","WM_POINTERACTIVATE","WM_POINTERCAPTURECHANGED","WM_TOUCHHITTESTING","WM_POINTERWHEEL","WM_POINTERHWHEEL","DM_POINTERHITTEST","WM_POINTERROUTEDTO","WM_POINTERROUTEDAWAY","WM_POINTERROUTEDRELEASED","WM_IME_SETCONTEXT","WM_IME_NOTIFY","WM_IME_CONTROL","WM_IME_COMPOSITIONFULL","WM_IME_SELECT","WM_IME_CHAR","WM_IME_REQUEST","WM_IME_KEYDOWN","WM_IME_KEYUP","WM_MOUSEHOVER","WM_MOUSELEAVE","WM_NCMOUSEHOVER","WM_NCMOUSELEAVE","WM_WTSSESSION_CHANGE","WM_TABLET_FIRST","WM_TABLET_LAST","WM_DPICHANGED","WM_DPICHANGED_BEFOREPARENT","WM_DPICHANGED_AFTERPARENT","WM_GETDPISCALEDSIZE","WM_CUT","WM_COPY","WM_PASTE","WM_CLEAR","WM_UNDO","WM_RENDERFORMAT","WM_RENDERALLFORMATS","WM_DESTROYCLIPBOARD","WM_DRAWCLIPBOARD","WM_PAINTCLIPBOARD","WM_VSCROLLCLIPBOARD","WM_SIZECLIPBOARD","WM_ASKCBFORMATNAME","WM_CHANGECBCHAIN","WM_HSCROLLCLIPBOARD","WM_QUERYNEWPALETTE","WM_PALETTEISCHANGING","WM_PALETTECHANGED","WM_HOTKEY","WM_PRINT","WM_PRINTCLIENT","WM_APPCOMMAND","WM_THEMECHANGED","WM_CLIPBOARDUPDATE","WM_DWMCOMPOSITIONCHANGED","WM_DWMNCRENDERINGCHANGED","WM_DWMCOLORIZATIONCOLORCHANGED","WM_DWMWINDOWMAXIMIZEDCHANGE","WM_DWMSENDICONICTHUMBNAIL","WM_DWMSENDICONICLIVEPREVIEWBITMAP","WM_GETTITLEBARINFOEX","WM_HANDHELDFIRST","WM_HANDHELDLAST","WM_AFXFIRST","WM_AFXLAST","WM_PENWINFIRST","WM_PENWINLAST","WM_APP","WM_USER"]},
{"name":"WindowEnumerationMode","kind":"enum","in":"GeneralConsts","values":["GW_HWNDFIRST","GW_HWNDLAST","GW_HWNDNEXT","GW_HWNDPREV","GW_OWNER","GW_CHILD"]},
{"name":"FontQuality","kind":"enum","in":"GeneralConsts","values":["DEFAULT_QUALITY","DRAFT_QUALITY","PROOF_QUALITY","NONANTIALIASED_QUALITY","ANTIALIASED_QUALITY","CLEARTYPE_QUALITY","CLEARTYPE_NATURAL_QUALITY"]},
{"name":"RedrawFlags","kind":"enum","in":"GeneralConsts","values":["RDW_INVALIDATE","RDW_INTERNALPAINT","RDW_ERASE","RDW_VALIDATE","RDW_NOINTERNALPAINT","RDW_NOERASE","RDW_NOCHILDREN","RDW_ALLCHILDREN","RDW_UPDATENOW","RDW_ERASENOW","RDW_FRAME","RDW_NOFRAME"]},
{"name":"WindowGDIObjectTypes","kind":"enum","in":"GeneralConsts","values":["OBJ_PEN","OBJ_BRUSH","OBJ_DC","OBJ_METADC","OBJ_PAL","OBJ_FONT","OBJ_BITMAP","OBJ_REGION","OBJ_METAFILE","OBJ_MEMDC","OBJ_EXTPEN","OBJ_ENHMETADC","OBJ_ENHMETAFILE","OBJ_COLORSPACE"]},
{"name":"SCROLLINFO","kind":"type","in":"GeneralConsts","public":false},
{"name":"SCROLLTYPE","kind":"enum","in":"GeneralConsts","values":["SB_HORZ","SB_VERT","SB_CTL","SB_BOTH"]},
{"name":"SCROLLINFOMASK","kind":"enum","in":"GeneralConsts","values":["SIF_RANGE","SIF_PAGE","SIF_POS","SIF_DISABLENOSCROLL","SIF_TRACKPOS","SIF_ALL"]},
{"name":"DriveType","kind":"enum","in":"GeneralConsts","values":["DRIVE_UNKNOWN","DRIVE_NO_ROOT_DIR","DRIVE_REMOVABLE","DRIVE_FIXED","DRIVE_REMOTE","DRIVE_CDROM","DRIVE_RAMDISK"]},
{"name":"ISequentialStream","kind":"interface","public":false},
{"name":"IStream","kind":"interface","public":false,"extends":"VB.ISequentialStream"},
{"name":"STATSTG","kind":"type","in":"IStream","public":false},
{"name":"IEnumSTATSTG","kind":"interface","public":false},
{"name":"IStorage","kind":"interface","public":false},
{"name":"IScheduledCallback","kind":"interface","public":false},
{"name":"IDropTarget","kind":"interface","public":false},
{"name":"DROPEFFECT","kind":"enum","in":"IDropTarget","values":["DROPEFFECT_NONE","DROPEFFECT_COPY","DROPEFFECT_MOVE","DROPEFFECT_LINK","DROPEFFECT_SCROLL"]},
{"name":"IDropSource","kind":"interface","public":false},
{"name":"Misc","kind":"module","public":false},
{"name":"EnumWindowAtoms","kind":"enum","in":"Misc","values":["AtomIdx_ThunderMain","AtomIdx_ThunderFormDC","AtomIdx_ThunderForm","AtomIdx_ThunderPropertyPageDC","AtomIdx_ThunderPropertyPage","AtomIdx_ThunderMDIForm","AtomIdx_ThunderUserControlDC","AtomIdx_ThunderUserControl","AtomIdx_ThunderPictureBox","AtomIdx_ThunderPictureBoxDC","AtomIdx_ThunderFrame","AtomIdx_ThunderCommandButton","AtomIdx_ThunderCheckBox","AtomIdx_ThunderOptionButton","AtomIdx_ThunderHSrollBar","AtomIdx_ThunderVSrollBar","AtomIdx_ThunderListBox","AtomIdx_ThunderDirListBox","AtomIdx_ThunderFileListBox","AtomIdx_ThunderDriveListBox","AtomIdx_ThunderComboBox","AtomIdx_ThunderTextBox","AtomIdx_ThunderData","AtomIdx_ThunderGenericControl","AtomIdx_ThunderWebViewControl","AtomIdx_ThunderTreeView","AtomIdx_ThunderListView","AtomIdx_ThunderProgressBar","AtomIdx_ThunderDTPicker","AtomIdx_ThunderMonthView","AtomIdx_ThunderSlider","AtomIdx_ThunderUpDown","AtomIdx_VBBubbleRT6","AtomIdx_ThunderFusion","AtomIdx_ThunderCefBrowser"]},
{"name":"WindowCreationData","kind":"type","in":"Misc","public":false},
{"name":"BaseControlInfo","kind":"type","in":"Misc","public":false},
{"name":"ObjectUDT","kind":"type","in":"Misc","public":false},
{"name":"OLEDragDrop","kind":"module","public":false},
{"name":"OLEDragDropHandler","kind":"class","public":false},
{"name":"ScrollBarConsts","kind":"module","public":false},
{"name":"ScrollBarStyles","kind":"enum","in":"ScrollBarConsts","values":["SBS_HORZ","SBS_VERT","SBS_TOPALIGN","SBS_LEFTALIGN","SBS_BOTTOMALIGN","SBS_RIGHTALIGN","SBS_SIZEBOXTOPLEFTALIGN","SBS_SIZEBOXBOTTOMRIGHTALIGN","SBS_SIZEBOX","SBS_SIZEGRIP"]},
{"name":"ScrollBarMessages","kind":"enum","in":"ScrollBarConsts","values":["SBM_SETPOS","SBM_GETPOS","SBM_SETRANGE","SBM_SETRANGEREDRAW","SBM_GETRANGE","SBM_ENABLE_ARROWS","SBM_SETSCROLLINFO","SBM_GETSCROLLINFO","SBM_GETSCROLLBARINFO"]},
{"name":"WindowsAPIPublic","kind":"module","public":false},
{"name":"ShowWindowCommands","kind":"enum","in":"WindowsAPIPublic","values":["SW_HIDE","SW_SHOWNORMAL","SW_NORMAL","SW_SHOWMINIMIZED","SW_SHOWMAXIMIZED","SW_MAXIMIZE","SW_SHOWNOACTIVATE","SW_SHOW","SW_MINIMIZE","SW_SHOWMINNOACTIVE","SW_SHOWNA","SW_RESTORE","SW_SHOWDEFAULT","SW_FORCEMINIMIZE","SW_MAX"]},
{"name":"SCROLLNOTIFY","kind":"enum","in":"WindowsAPIPublic","values":["SB_LINEUP","SB_LINELEFT","SB_LINEDOWN","SB_LINERIGHT","SB_PAGEUP","SB_PAGELEFT","SB_PAGEDOWN","SB_PAGERIGHT","SB_THUMBPOSITION","SB_THUMBTRACK","SB_TOP","SB_LEFT","SB_BOTTOM","SB_RIGHT","SB_ENDSCROLL"]},
{"name":"WindowProperties","kind":"enum","in":"WindowsAPIPublic","values":["GWL_WNDPROC","GWL_HINSTANCE","GWL_HWNDPARENT","GWL_STYLE","GWL_EXSTYLE","GWL_USERDATA","GWL_ID"]},
{"name":"SetWindowPosFlags","kind":"enum","in":"WindowsAPIPublic","values":["SWP_NOSIZE","SWP_NOMOVE","SWP_NOZORDER","SWP_NOREDRAW","SWP_NOACTIVATE","SWP_FRAMECHANGED","SWP_SHOWWINDOW","SWP_HIDEWINDOW","SWP_NOCOPYBITS","SWP_NOOWNERZORDER","SWP_NOSENDCHANGING"]},
{"name":"WindowStyles","kind":"enum","in":"WindowsAPIPublic","values":["WS_OVERLAPPED","WS_POPUP","WS_CHILD","WS_MINIMIZE","WS_VISIBLE","WS_DISABLED","WS_CLIPSIBLINGS","WS_CLIPCHILDREN","WS_MAXIMIZE","WS_CAPTION","WS_BORDER","WS_DLGFRAME","WS_VSCROLL","WS_HSCROLL","WS_SYSMENU","WS_THICKFRAME","WS_GROUP","WS_TABSTOP","WS_MINIMIZEBOX","WS_MAXIMIZEBOX"]},
{"name":"WindowExtendedStyles","kind":"enum","in":"WindowsAPIPublic","values":["WS_EX_RIGHT","WS_EX_LEFT","WS_EX_RTLREADING","WS_EX_LTRREADING","WS_EX_LEFTSCROLLBAR","WS_EX_RIGHTSCROLLBAR","WS_EX_DLGMODALFRAME","WS_EX_NOPARENTNOTIFY","WS_EX_TOPMOST","WS_EX_ACCEPTFILES","WS_EX_TRANSPARENT","WS_EX_MDICHILD","WS_EX_TOOLWINDOW","WS_EX_WINDOWEDGE","WS_EX_CLIENTEDGE","WS_EX_CONTEXTHELP","WS_EX_CONTROLPARENT","WS_EX_STATICEDGE","WS_EX_APPWINDOW","WS_EX_OVERLAPPEDWINDOW","WS_EX_PALETTEWINDOW","WS_EX_LAYERED","WS_EX_NOINHERITLAYOUT","WS_EX_NOREDIRECTIONBITMAP","WS_EX_LAYOUTRTL","WS_EX_COMPOSITED","WS_EX_NOACTIVATE"]},
{"name":"WindowsAPI","kind":"module","public":false},
{"name":"_WindowsControlsCollection","kind":"interface","public":false},
{"name":"WindowsControlsCollection","kind":"coclass","public":false,"default":"_WindowsControlsCollection"},
{"name":"IWindowsControl","kind":"interface","public":false},
{"name":"WindowElementFlags","kind":"module","public":false},
{"name":"EnumWindowElementFlags","kind":"enum","in":"WindowElementFlags","values":["ForwardGotFocus","ForwardLostFocus","ForwardButtonClick","ForwardKeyDown","ForwardKeyUp","ForwardKeyPress","ForwardMouseMove","ForwardMouseDown","ForwardMouseUp","ForwardDragOver","ForwardValidate","ForwardDoubleClick","ForwardEnsureEnabled","HasExclusiveValueWithinContainer","RequiresWindowlessPaintingWithoutEvents","RequiresWindowlessPaintingWithEvents","NeedsPrePostMessages","NotRectangular","EnforceTabStopAfterCreation","IsUserControl","IsContainer","ManualMouseCapture","ScaleAdjustMouseEvents","PreventActivation","MuteSpecialKeyBeeps","IsMDIForm","IsMDIChild","HasExclusiveCancelProp","HasExclusiveDefaultProp","IsReportMode","IsAngledControl","IgnoreWmCommandButtonClicks"]},
{"name":"EnumWindowElementFlags2","kind":"enum","in":"WindowElementFlags","values":["IsActiveXWrapper","NeedsContainerMessages","AlwaysPaintInSnapshots","IsPropertyPage"]},
{"name":"RuntimeUI","kind":"module","public":false},
{"name":"WindowElement","kind":"type","in":"RuntimeUI","public":false},
{"name":"ControlContext","kind":"type","in":"RuntimeUI","public":false},
{"name":"SerializeInfo","kind":"type","in":"RuntimeUI","public":false},
{"name":"AxInternalStateMod","kind":"module","public":false},
{"name":"AxInternalState","kind":"type","in":"AxInternalStateMod","public":false},
{"name":"IActiveXControlExtender","kind":"interface","public":false},
{"name":"EmptyContainer","kind":"class","public":false},
{"name":"ActiveXControlExtenderX","kind":"class","public":false,"inherits":["VB.BaseControlActiveXExtender"]},
{"name":"ActiveXControlExtender","kind":"class","public":false,"control":true},
{"name":"ActiveXControlExtenderBase","kind":"interface","public":false},
{"name":"FusionBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlRectDockable"]},
{"name":"Fusion","kind":"class","control":true,"members":{"__TempIgnoreMe":"event","New":"sub","Init1":"sub","_openAboutBox":"sub"},"hiddenMembers":["__TempIgnoreMe"]},
{"name":"SharedFusionPortal","kind":"module","members":{"PortalHost":"field","CLngTrunc":"function"}},
{"name":"FusionController","kind":"class","members":{"CreateInstance":"function","SetParent":"sub","GetObject":"function","Resize":"sub","OpenAboutBox":"sub","GetSnapshot":"function","Test":"function"}},
{"name":"tbIConnectionPointContainer","kind":"interface","members":{"EnumConnectionPoints":"function","FindConnectionPoint":"function"}},
{"name":"tbIConnectionPoint","kind":"interface","members":{"GetConnectionInterface":"sub","GetConnectionPointContainer":"function","Advise":"function","Unadvise":"sub","EnumConnections":"function"}},
{"name":"tbIEnumConnections","kind":"interface","members":{"Next":"function","Skip":"sub","Reset":"sub","Clone":"function"}},
{"name":"IEnumConnectionPoints","kind":"interface","members":{"Next":"function","Skip":"sub","Reset":"sub","Clone":"function"}},
{"name":"InternalWinAPIDefs","kind":"module","public":false},
{"name":"tbUUID","kind":"type","in":"InternalWinAPIDefs","public":false},
{"name":"tbCONNECTDATA","kind":"type","in":"InternalWinAPIDefs","public":false},
{"name":"HwndBaseCtl","kind":"class","inherits":["VB.BaseControlRectDockable"],"members":{"New":"sub","Parent":"property","hWnd":"property","PreProcessMessage":"sub","OnInitialize":"sub","OnResize":"sub","OnPaint":"sub","OnMessageBefore":"function","OnMessageAfter":"sub"}},
{"name":"CheckBoxBaseCtl","kind":"class","public":false,"inherits":["VB.ButtonBase","VB.DataFieldBinderBase"],"members":{"OLEDropMode":"field","RightToLeft":"field","OLEDrag":"sub","HelpContextID":"field","WhatsThisHelpID":"field","ShowWhatsThis":"sub","Click":"event","GotFocus":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","LostFocus":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Initialize":"event","DragDrop":"event","DragOver":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","Validate":"event","New":"sub","Caption":"property","Value":"property","_Default":"property","Alignment":"property","Parent":"property"}},
{"name":"CheckBox","kind":"class","control":true,"inherits":["VB.CheckBoxBaseCtl"]},
{"name":"CheckMarkBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlWindowlessNoFocus","VB.DataFieldBinderBase","VB.OLEDragDropHelper"],"members":{"BackColor":"field","TabIndex":"field","Appearance":"field","BackStyle":"field","VisualStyles":"field","Value":"field","OLEDrag":"sub","WhatsThisHelpID":"field","ShowWhatsThis":"sub","Click":"event","DblClick":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Initialize":"event","DragDrop":"event","DragOver":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","New":"sub","_Default":"property","Parent":"property","ToolTipText":"property","MouseIcon":"property","MousePointer":"property","Enabled":"property"}},
{"name":"CheckMark","kind":"class","control":true,"inherits":["VB.CheckMarkBaseCtl"]},
{"name":"ComboBoxEDITSubclasser","kind":"class","public":false},
{"name":"ComboBoxLISTSubclasser","kind":"class","public":false},
{"name":"ShortPOINTS","kind":"type","in":"ComboBoxLISTSubclasser","public":false},
{"name":"ComboBoxBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlFocusable","VB.DataFieldBinderBase"],"members":{"BackColor":"field","ForeColor":"field","Style":"field","BorderStyle":"field","Sorted":"field","IntegralHeight":"field","NewIndex":"field","WheelScrollEvent":"field","OLEDragMode":"field","OLEDropMode":"field","RightToLeft":"field","Opacity":"field","TransparencyKey":"field","MaxDropDownItems":"field","OLEDrag":"sub","HelpContextID":"field","WhatsThisHelpID":"field","ShowWhatsThis":"sub","Change":"event","Click":"event","DblClick":"event","DropDown":"event","GotFocus":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","LostFocus":"event","Scroll":"event","Initialize":"event","CloseUp":"event","DragDrop":"event","DragOver":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","Validate":"event","New":"sub","AddItem":"sub","RemoveItem":"sub","Clear":"sub","ItemData":"property","List":"property","ListCount":"property","TopIndex":"property","ListIndex":"property","Text":"property","_Default":"property","Locked":"property","Parent":"property","SelStart":"property","SelLength":"property","SelText":"property"}},
{"name":"ComboBox","kind":"class","control":true,"inherits":["VB.ComboBoxBaseCtl"]},
{"name":"CommandButtonBaseCtl","kind":"class","public":false,"inherits":["VB.ButtonBase"],"members":{"OLEDropMode":"field","Cancel":"field","Default":"field","RightToLeft":"field","Value":"field","OLEDrag":"sub","HelpContextID":"field","WhatsThisHelpID":"field","ShowWhatsThis":"sub","Click":"event","GotFocus":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","LostFocus":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Initialize":"event","DragDrop":"event","DragOver":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","New":"sub","SyncRecreate":"sub","Caption":"property","Parent":"property","_Default":"property"}},
{"name":"CommandButton","kind":"class","control":true,"inherits":["VB.CommandButtonBaseCtl"]},
{"name":"TbDataControlPrivate","kind":"interface","public":false},
{"name":"DataBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlFocusable","VB.OLEDragDropHelper"],"members":{"BackColor":"field","ForeColor":"field","BOFAction":"field","EOFAction":"field","Connect":"field","DatabaseName":"field","DefaultCursorType":"field","DefaultType":"field","Exclusive":"field","Negotiate":"field","Options":"field","ReadOnly":"field","RecordsetType":"field","RecordSource":"field","ShowWhatsThis":"sub","WhatsThisHelpID":"field","OLEDropMode":"field","RightToLeft":"field","_Default":"field","Database":"property","Recordset":"property","OLEDrag":"sub","UpdateRecord":"sub","MouseDown":"event","MouseMove":"event","MouseUp":"event","MouseWheel":"event","Initialize":"event","DragDrop":"event","DragOver":"event","Error":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","Reposition":"event","Resize":"event","Validate":"event","New":"sub","Caption":"property","hWnd":"property","Parent":"property","Refresh":"sub","UpdateControls":"sub","Align":"property"},"hiddenMembers":["Align"]},
{"name":"CursorDriverEnum","kind":"enum","in":"DataBaseCtl","values":["dbUseDefaultCursor","dbUseODBCCursor","dbUseServerCursor","dbUseClientBatchCursor","dbUseNoCursor"]},
{"name":"Data","kind":"class","control":true,"inherits":["VB.DataBaseCtl"]},
{"name":"Data","kind":"class"},
{"name":"DirListBoxGlobals","kind":"module","public":false},
{"name":"DirListBoxBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlFocusable"],"members":{"BorderStyle":"field","BackColor":"field","ForeColor":"field","NewIndex":"field","OLEDragMode":"field","OLEDropMode":"field","IntegralHeight":"field","WheelScrollEvent":"field","Opacity":"field","TransparencyKey":"field","OLEDrag":"sub","HelpContextID":"field","WhatsThisHelpID":"field","ShowWhatsThis":"sub","Click":"event","Change":"event","GotFocus":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","LostFocus":"event","Initialize":"event","DragDrop":"event","DragOver":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","Validate":"event","Scroll":"event","New":"sub","SyncDirs":"sub","AddItem":"sub","RemoveItem":"sub","Clear":"sub","List":"property","ListCount":"property","TopIndex":"property","ListIndex":"property","_Default":"property","Path":"property","PathSelected":"property","Refresh":"sub","Parent":"property"},"hiddenMembers":["AddItem","RemoveItem","Clear"]},
{"name":"DirListBox","kind":"class","control":true,"inherits":["VB.DirListBoxBaseCtl"]},
{"name":"DriveListBoxGlobals","kind":"module","public":false},
{"name":"DriveListBoxLISTSubclasser","kind":"class","public":false},
{"name":"DriveListBoxBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlFocusable"],"members":{"BackColor":"field","ForeColor":"field","WheelScrollEvent":"field","NewIndex":"field","OLEDropMode":"field","Opacity":"field","TransparencyKey":"field","OLEDrag":"sub","HelpContextID":"field","WhatsThisHelpID":"field","ShowWhatsThis":"sub","Change":"event","DropDown":"event","GotFocus":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","LostFocus":"event","Scroll":"event","Initialize":"event","CloseUp":"event","DragDrop":"event","DragOver":"event","Validate":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","New":"sub","AddItem":"sub","RemoveItem":"sub","Clear":"sub","List":"property","ListCount":"property","TopIndex":"property","ListIndex":"property","_Default":"property","Drive":"property","Refresh":"sub","Parent":"property"},"hiddenMembers":["AddItem","RemoveItem","Clear"]},
{"name":"DriveListBox","kind":"class","control":true,"inherits":["VB.DriveListBoxBaseCtl"]},
{"name":"FileListBoxBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlFocusable"],"members":{"BorderStyle":"field","BackColor":"field","ForeColor":"field","Archive":"field","Hidden":"field","Normal":"field","ReadOnly":"field","System":"field","MultiSelect":"field","Pattern":"field","WheelScrollEvent":"field","IntegralHeight":"field","Path":"field","Opacity":"field","TransparencyKey":"field","OLEDragMode":"field","OLEDropMode":"field","OLEDrag":"sub","HelpContextID":"field","WhatsThisHelpID":"field","ShowWhatsThis":"sub","Click":"event","DblClick":"event","PathChange":"event","PatternChange":"event","GotFocus":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","LostFocus":"event","Initialize":"event","DragDrop":"event","DragOver":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","Validate":"event","Scroll":"event","New":"sub","SyncFiles":"sub","SelCount":"property","AddItem":"sub","RemoveItem":"sub","Clear":"sub","List":"property","ListCount":"property","TopIndex":"property","ListIndex":"property","FileName":"property","_Default":"property","PathWithBackslash":"property","Refresh":"sub","Selected":"property","Parent":"property","SelectedIndices":"function"},"hiddenMembers":["AddItem","RemoveItem","Clear"]},
{"name":"FileListBox","kind":"class","control":true,"inherits":["VB.FileListBoxBaseCtl"]},
{"name":"ITbCommonContainerPrivate","kind":"interface","public":false},
{"name":"FormBaseCtl","kind":"class","public":false,"inherits":["VB.BaseForm","VB.GraphicsBase","VB.OLEDragDropHelper"],"members":{"Opacity":"field","TransparencyKey":"field","Palette":"field","LinkMode":"field","LinkTopic":"field","PaletteMode":"field","RightToLeft":"field","NegotiateMenus":"field","OLEDrag":"sub","PrintForm":"sub","Point":"function","ValidateControls":"sub","Activate":"event","Deactivate":"event","Initialize":"event","Load":"event","Click":"event","DblClick":"event","GotFocus":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","LostFocus":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Paint":"event","Resize":"event","Terminate":"event","Unload":"event","DragDrop":"event","DragOver":"event","LinkClose":"event","LinkError":"event","LinkExecute":"event","LinkOpen":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","QueryUnload":"event","MouseWheel":"event","DPIChange":"event","PopUpMenu":"sub","DpiScaleFactorX":"property","DpiScaleFactorY":"property","ActiveControl":"property","HelpContextID":"field","WhatsThisHelp":"field","WhatsThisButton":"property","WhatsThisMode":"sub","_Default":"property","Count":"property","Icon":"property","Move":"sub","SetFocus":"sub","InternalEnumerator":"function","hDC":"property","TabFocusAutoSelect":"property","AlwaysShowKeyboardCues":"property","MinWidth":"property","MinHeight":"property","MaxWidth":"property","MaxHeight":"property","TopMost":"property","Width":"property","Height":"property"}},
{"name":"Form","kind":"class","control":true,"inherits":["VB.FormBaseCtl"]},
{"name":"FrameBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlNotFocusable2","VB.OLEDragDropHelper"],"members":{"BackColor":"field","ForeColor":"field","ClipControls":"field","BorderStyle":"field","RightToLeft":"field","Opacity":"field","MultiFramePosition":"field","MultiFrameSize":"field","OriginalMultiFramePosition":"field","TransparencyKey":"field","OLEDrag":"sub","HelpContextID":"field","WhatsThisHelpID":"field","ShowWhatsThis":"sub","Click":"event","DblClick":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Initialize":"event","DragDrop":"event","DragOver":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","MouseWheel":"event","New":"sub","Caption":"property","Parent":"property","_Default":"property"}},
{"name":"Frame","kind":"class","control":true,"inherits":["VB.FrameBaseCtl"]},
{"name":"HScrollBarBaseCtl","kind":"class","public":false,"inherits":["VB.ScrollBarBase"],"members":{"New":"sub"}},
{"name":"HScrollBar","kind":"class","control":true,"inherits":["VB.HScrollBarBaseCtl"]},
{"name":"ImageBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlWindowlessNoFocus","VB.DataFieldBinderBase","VB.OLEDragDropHelper"],"members":{"BorderStyle":"field","Stretch":"field","Appearance":"field","Angle":"field","StretchMode":"field","PictureDpiScaling":"field","OLEDragMode":"field","OLEDrag":"sub","WhatsThisHelpID":"field","ShowWhatsThis":"sub","Click":"event","DblClick":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Initialize":"event","DragDrop":"event","DragOver":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","New":"sub","Refresh":"sub","Parent":"property","Picture":"property","_Default":"property","ToolTipText":"property","MouseIcon":"property","MousePointer":"property","Enabled":"property"}},
{"name":"StretchModeConstants","kind":"enum","in":"ImageBaseCtl","values":["vbStretchHalftone","vbStretchColorOnColor","vbStretchLanczos8","vbStretchLanczos3","vbStretchBicubic","vbStretchBilinear"]},
{"name":"Image","kind":"class","control":true,"inherits":["VB.ImageBaseCtl"]},
{"name":"LabelBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlWindowlessNoFocus","VB.DataFieldBinderBase","VB.OLEDragDropHelper"],"members":{"BorderStyle":"field","BorderCustomOptions":"property","BackColor":"field","ForeColor":"field","UseMnemonic":"field","Alignment":"field","VerticalAlignment":"field","Angle":"field","Font":"field","DataFieldAggregate":"field","DataFieldAggregateValue":"field","FontBold":"property","FontItalic":"property","FontName":"property","FontSize":"property","FontStrikethru":"property","FontUnderline":"property","TabIndex":"field","Appearance":"field","AutoSize":"field","BackStyle":"field","LinkItem":"field","LinkMode":"field","LinkTopic":"field","LinkTimeout":"field","RightToLeft":"field","WordWrap":"field","LineSpacing":"field","LinkExecute":"sub","LinkPoke":"sub","LinkRequest":"sub","LinkSend":"sub","OLEDrag":"sub","WhatsThisHelpID":"field","ShowWhatsThis":"sub","Change":"event","Click":"event","DblClick":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Initialize":"event","DragDrop":"event","DragOver":"event","LinkClose":"event","LinkError":"event","LinkNotify":"event","LinkOpen":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","New":"sub","_Default":"property","Caption":"property","Parent":"property","ToolTipText":"property","MouseIcon":"property","MousePointer":"property","Enabled":"property"}},
{"name":"AggregateConstants","kind":"enum","in":"LabelBaseCtl","values":["vbAggregateNone","vbAggregateSum"]},
{"name":"Label","kind":"class","control":true,"inherits":["VB.LabelBaseCtl"]},
{"name":"LineBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlWindowlessPoints"],"members":{"BorderColor":"field","BorderStyle":"field","BorderWidth":"field","DrawMode":"field","Initialize":"event","New":"sub","Parent":"property","_Default":"property"}},
{"name":"Line","kind":"class","control":true,"inherits":["VB.LineBaseCtl"]},
{"name":"ListBoxBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlFocusable","VB.DataFieldBinderBase"],"members":{"BorderStyle":"field","Sorted":"field","MultiSelect":"field","Style":"field","BackColor":"field","ForeColor":"field","IntegralHeight":"field","Columns":"field","NewIndex":"field","WheelScrollEvent":"field","MaxCheckboxSize":"field","UseTabStops":"field","RightToLeft":"field","Opacity":"field","TransparencyKey":"field","OLEDragMode":"field","OLEDropMode":"field","OLEDrag":"sub","HelpContextID":"field","WhatsThisHelpID":"field","ShowWhatsThis":"sub","Click":"event","DblClick":"event","GotFocus":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","LostFocus":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","ItemCheck":"event","Scroll":"event","Initialize":"event","DragDrop":"event","DragOver":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","Validate":"event","New":"sub","TopIndex":"property","ListIndex":"property","Text":"property","_Default":"property","SelCount":"property","AddItem":"sub","RemoveItem":"sub","Clear":"sub","List":"property","Selected":"property","ItemData":"property","ListCount":"property","Parent":"property","SelectedIndices":"function"}},
{"name":"ListBox","kind":"class","control":true,"inherits":["VB.ListBoxBaseCtl"]},
{"name":"MDIFormBaseCtl","kind":"class","public":false,"inherits":["VB.BaseMDIForm","VB.OLEDragDropHelper"],"members":{"TopMost":"field","Opacity":"field","TransparencyKey":"field","LinkMode":"field","LinkTopic":"field","RightToLeft":"field","NegotiateToolbars":"field","BackColor":"field","Picture":"field","PictureDpiScaling":"field","OLEDrag":"sub","PrintForm":"sub","Point":"function","ValidateControls":"sub","Activate":"event","Deactivate":"event","Initialize":"event","Load":"event","Click":"event","DblClick":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Resize":"event","Terminate":"event","Unload":"event","DragDrop":"event","DragOver":"event","LinkClose":"event","LinkError":"event","LinkExecute":"event","LinkOpen":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","QueryUnload":"event","MouseWheel":"event","DPIChange":"event","New":"sub","PopUpMenu":"sub","DpiScaleFactorX":"property","DpiScaleFactorY":"property","ActiveControl":"property","ActiveForm":"property","Arrange":"sub","HelpContextID":"field","WhatsThisHelp":"field","WhatsThisMode":"sub","_Default":"property","Count":"property","Icon":"property","Move":"sub","SetFocus":"sub","InternalEnumerator":"function","ScaleWidth":"property","ScaleHeight":"property","FormPaintPicture":"sub","FormStartupShow":"sub","TabFocusAutoSelect":"property","AlwaysShowKeyboardCues":"property","MinWidth":"property","MinHeight":"property","MaxWidth":"property","MaxHeight":"property","AutoShowChildren":"property","Width":"property","Height":"property"}},
{"name":"MDIForm","kind":"class","control":true,"inherits":["VB.MDIFormBaseCtl"]},
{"name":"TbMenuPrivate","kind":"interface","public":false},
{"name":"IVB6CompatMenu","kind":"interface","public":false},
{"name":"MenuBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControl"],"members":{"Caption":"field","Checked":"field","Visible":"field","HelpContextID":"field","WindowList":"field","NegotiatePosition":"field","Shortcut":"field","ShortcutId":"field","IconSizeX":"field","IconSizeY":"field","Click":"event","New":"sub","Index":"property","Container":"function","Parent":"property","Picture":"property","_Default":"property","Enabled":"property"},"hiddenMembers":["Shortcut"]},
{"name":"MenuInternalData","kind":"type","in":"MenuBaseCtl","public":false},
{"name":"Menu","kind":"class","control":true,"inherits":["VB.MenuBaseCtl"]},
{"name":"Menu","kind":"class","control":true},
{"name":"MultiFrameBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlWindowlessNoDrag"],"members":{"BackColor":"field","Direction":"field","FramesCount":"field","Initialize":"event","New":"sub","Parent":"property","InternalChangedSizeOfFrame":"sub","hWnd":"property","Container":"property","OnFramesCountChanged":"sub"}},
{"name":"MultiFrameDirectionConstants","kind":"enum","in":"MultiFrameBaseCtl","values":["vbDirectionHorizontal","vbDirectionVertical"]},
{"name":"MultiFrame","kind":"class","control":true,"inherits":["VB.MultiFrameBaseCtl"]},
{"name":"OLEBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlFocusableNoFont"],"members":{"Appearance":"field","BackColor":"field","BorderStyle":"field","BackStyle":"field","AutoActivate":"field","AutoVerbMenu":"field","Class":"field","DisplayType":"field","HostName":"field","MiscFlags":"field","OLEDropAllowed":"field","OLETypeAllowed":"field","SizeMode":"field","SourceDoc":"field","SourceItem":"field","UpdateOptions":"field","Verb":"field","DataField":"field","ShowWhatsThis":"sub","HelpContextID":"field","WhatsThisHelpID":"field","DataChanged":"field","DataSource":"field","_Default":"field","Action":"field","AppIsRunning":"field","Data":"field","DataText":"field","FileNumber":"field","Format":"field","LpOleObject":"field","object":"field","ObjectAcceptFormats":"field","ObjectAcceptFormatsCount":"field","ObjectGetFormats":"field","ObjectGetFormatsCount":"field","ObjectVerbFlags":"field","ObjectVerbs":"field","ObjectVerbsCount":"field","OLEType":"field","PasteOK":"field","Picture":"field","Close":"sub","Copy":"sub","CreateEmbed":"sub","CreateLink":"sub","Delete":"sub","DoVerb":"sub","FetchVerbs":"sub","InsertObjDlg":"sub","Paste":"sub","PasteSpecialDlg":"sub","ReadFromFile":"sub","SaveToFile":"sub","SaveToOle1File":"sub","Update":"sub","Click":"event","DblClick":"event","GotFocus":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","LostFocus":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Initialize":"event","DragDrop":"event","DragOver":"event","ObjectMove":"event","Resize":"event","Updated":"event","Validate":"event","New":"sub","Parent":"property"}},
{"name":"OLE","kind":"class","control":true,"inherits":["VB.OLEBaseCtl"]},
{"name":"OptionButtonBaseCtl","kind":"class","public":false,"inherits":["VB.ButtonBase"],"members":{"RightToLeft":"field","OLEDropMode":"field","OLEDrag":"sub","HelpContextID":"field","WhatsThisHelpID":"field","ShowWhatsThis":"sub","DragDrop":"event","DragOver":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","Validate":"event","Click":"event","DblClick":"event","GotFocus":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","LostFocus":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Initialize":"event","New":"sub","SyncRecreate":"sub","Caption":"property","Value":"property","_Default":"property","Alignment":"property","Parent":"property"}},
{"name":"OptionButton","kind":"class","control":true,"inherits":["VB.OptionButtonBaseCtl"]},
{"name":"PictureBoxBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlFocusableNoFont","VB.GraphicsBase","VB.DataFieldBinderBase","VB.OLEDragDropHelper"],"members":{"BorderStyle":"field","Appearance":"field","AutoSize":"field","LinkItem":"field","LinkMode":"field","LinkTopic":"field","LinkTimeout":"field","RightToLeft":"field","Negotiate":"field","Opacity":"field","TransparencyKey":"field","LinkExecute":"sub","LinkPoke":"sub","LinkRequest":"sub","LinkSend":"sub","OLEDragMode":"field","OLEDrag":"sub","Point":"function","HelpContextID":"field","WhatsThisHelpID":"field","ShowWhatsThis":"sub","Click":"event","DblClick":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Initialize":"event","Paint":"event","Resize":"event","Change":"event","DragDrop":"event","DragOver":"event","GotFocus":"event","LostFocus":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","LinkClose":"event","LinkError":"event","LinkNotify":"event","LinkOpen":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","Validate":"event","MouseWheel":"event","New":"sub","AutoSizeNow":"sub","Refresh":"sub","Parent":"property","_Default":"property","ToolTipText":"property","Align":"property"},"hiddenMembers":["Align"]},
{"name":"PictureBox","kind":"class","control":true,"inherits":["VB.PictureBoxBaseCtl"]},
{"name":"PropertyPage","kind":"class","control":true,"inherits":["VB.BasePropertyPage","VB.GraphicsBase","VB.OLEDragDropHelper"],"members":{"Palette":"field","HelpContextID":"field","StandardSize":"property","PaletteMode":"field","RightToLeft":"field","OLEDrag":"sub","Point":"function","ValidateControls":"sub","ApplyChanges":"event","Click":"event","DblClick":"event","DragDrop":"event","DragOver":"event","EditProperty":"event","GotFocus":"event","Initialize":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","LostFocus":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","Paint":"event","SelectionChanged":"event","Terminate":"event","DPIChange":"event","DpiScaleFactorX":"property","DpiScaleFactorY":"property","ActiveControl":"property","_Default":"property","Count":"property","SetFocus":"sub","InternalEnumerator":"function","Width":"property","Height":"property","Changed":"property","SelectedControls":"property"}},
{"name":"SelectedControls","kind":"class","public":false},
{"name":"QRCodeBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlWindowlessNoFocus","VB.DataFieldBinderBase","VB.OLEDragDropHelper"],"members":{"BorderStyle":"field","Appearance":"field","OLEDragMode":"field","OLEDrag":"sub","WhatsThisHelpID":"field","ShowWhatsThis":"sub","Click":"event","DblClick":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Initialize":"event","DragDrop":"event","DragOver":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","Square":"field","Payload":"field","ForeColor":"field","ModuleSize":"field","SquareModules":"field","EccMode":"field","EccBoost":"field","MinVersion":"field","MaxVersion":"field","MaskType":"field","New":"sub","Refresh":"sub","Parent":"property","Picture":"property","_Default":"property","ToolTipText":"property","MouseIcon":"property","MousePointer":"property","Enabled":"property"}},
{"name":"QRCode","kind":"class","control":true,"inherits":["VB.QRCodeBaseCtl"]},
{"name":"ITbRecordset","kind":"interface","members":{"EOF":"property","MoveNext":"sub","GetFieldBinder":"function"}},
{"name":"ObjectFieldBinderByName","kind":"class","public":false},
{"name":"ExpressionGenericFieldBinder","kind":"class","public":false},
{"name":"ExpressionGenericRecordsetWrapper","kind":"class","public":false},
{"name":"ReportPage","kind":"class","public":false},
{"name":"ReportScrollElement","kind":"class","public":false},
{"name":"ReportBaseCtl","kind":"class","public":false,"inherits":["VB.BaseForm","VB.GraphicsBase"],"members":{"PaperColor":"field","InternalControlSections":"field","TopMost":"field","Opacity":"field","TransparencyKey":"field","HelpContextID":"field","RightToLeft":"field","Activate":"event","Deactivate":"event","Initialize":"event","Load":"event","Click":"event","DblClick":"event","GotFocus":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","LostFocus":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","BeforePaintSection":"event","Resize":"event","Terminate":"event","Unload":"event","QueryUnload":"event","DPIChange":"event","Recordset":"property","ZoomStep":"field","Page":"field","Pages":"field","RecordNum":"field","ZoomPercent":"field","ZoomAutoFit":"field","PixelsReportWidth":"field","PixelsReportHeight":"field","PixelsLeftMargin":"field","PixelsRightMargin":"field","PixelsTopMargin":"field","PixelsBottomMargin":"field","DpiScaleFactorX":"property","DpiScaleFactorY":"property","Count":"property","Icon":"property","Move":"sub","SetFocus":"sub","InternalEnumerator":"function","hDC":"property","ChangePageSize":"property","PrintReport":"sub","MinWidth":"property","MinHeight":"property","MaxWidth":"property","MaxHeight":"property","Width":"property","Height":"property"}},
{"name":"ZoomAutoFitConstants","kind":"enum","in":"ReportBaseCtl","values":["vbZoomAutoFit","vbZoomAutoFitOnce","vbZoomAutoFitNever"]},
{"name":"Expression","kind":"type","in":"ReportBaseCtl","public":false},
{"name":"ReportSizeConstants","kind":"enum","in":"ReportBaseCtl","values":[]},
{"name":"PageRangeConstants","kind":"enum","in":"ReportBaseCtl","values":["rptRangeAllPages","rptRangeFromTo"]},
{"name":"Report","kind":"class","control":true,"inherits":["VB.ReportBaseCtl"]},
{"name":"ShapeBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlWindowlessNoDrag"],"members":{"BackColor":"field","BackStyle":"field","BorderColor":"field","BorderStyle":"field","BorderWidth":"field","DrawMode":"field","FillColor":"field","FillColorAlt":"field","FillStyle":"field","Shape":"field","RoundedCornerSize":"field","VariationA":"field","VariationB":"field","VariationC":"field","Angle":"field","Initialize":"event","New":"sub","Parent":"property","_Default":"property"}},
{"name":"contigiousPoints30","kind":"type","in":"ShapeBaseCtl","public":false},
{"name":"Shape","kind":"class","control":true,"inherits":["VB.ShapeBaseCtl"]},
{"name":"TextBoxBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlFocusable","VB.DataFieldBinderBase"],"members":{"BackColor":"field","ForeColor":"field","MultiLine":"field","HideSelection":"field","ScrollBars":"field","MaxLength":"field","PasswordChar":"field","NumbersOnly":"field","WheelScrollEvent":"field","TextHint":"field","TextHintAlways":"field","BorderStyle":"field","OLEDragMode":"field","OLEDropMode":"field","Opacity":"field","TransparencyKey":"field","LinkItem":"field","LinkMode":"field","LinkTopic":"field","LinkTimeout":"field","RightToLeft":"field","LinkExecute":"sub","LinkPoke":"sub","LinkRequest":"sub","LinkSend":"sub","OLEDrag":"sub","HelpContextID":"field","WhatsThisHelpID":"field","ShowWhatsThis":"sub","Change":"event","Click":"event","DblClick":"event","GotFocus":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","LostFocus":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Initialize":"event","DragDrop":"event","DragOver":"event","LinkClose":"event","LinkError":"event","LinkNotify":"event","LinkOpen":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","Validate":"event","Scroll":"event","MouseWheel":"event","New":"sub","SelStart":"property","SelLength":"property","SelText":"property","Text":"property","_Default":"property","Locked":"property","Alignment":"property","Parent":"property","TabFocusAutoSelect":"property"}},
{"name":"TextBox","kind":"class","control":true,"inherits":["VB.TextBoxBaseCtl"]},
{"name":"TimerBaseCtl","kind":"class","public":false,"inherits":["VB.BaseControlNotFocusable"],"members":{"Timer":"event","New":"sub","_Default":"property","Interval":"property","Parent":"property","Enabled":"property","OnTimer":"sub"}},
{"name":"Timer","kind":"class","control":true,"inherits":["VB.TimerBaseCtl"]},
{"name":"UcInternalStateMod","kind":"module","public":false},
{"name":"UcInternalState","kind":"type","in":"UcInternalStateMod","public":false},
{"name":"TbUserControlPrivate","kind":"interface","public":false},
{"name":"UCRawControls2Enum","kind":"class","public":false},
{"name":"UCParentControls2","kind":"class","public":false},
{"name":"UCContainedControls","kind":"class","public":false},
{"name":"AmbientPropertiesPassThru","kind":"class","public":false},
{"name":"UcVerbEnumerator","kind":"class","public":false},
{"name":"UserControlBaseCtl","kind":"class","public":false,"inherits":["VB.BaseUserControl","VB.GraphicsBase","VB.OLEDragDropHelper"],"members":{"ForceResizeToContainer":"field","ControlContainer":"field","AccessKeys":"field","Alignable":"field","BorderStyle":"field","BackStyle":"field","ClipBehavior":"field","DataBindingBehavior":"field","DataSourceBehavior":"field","DefaultCancel":"field","PreKeyEvents":"field","EditAtDesignTime":"field","ForwardFocus":"field","HitBehavior":"field","InvisibleAtRuntime":"field","PaletteMode":"field","Public":"field","RightToLeft":"field","Windowless":"field","MaskColor":"field","MaskPicture":"field","Palette":"field","Ambient":"property","AsyncRead":"sub","CancelAsyncRead":"sub","CanPropertyChange":"function","ContainedControls":"property","ContainerHwnd":"property","DataMemberChanged":"sub","DataMembers":"property","EventsFrozen":"property","Hyperlink":"property","ParentControls":"property","PopUpMenu":"sub","Size":"sub","ValidateControls":"sub","OLEDrag":"sub","Initialize":"event","Click":"event","DblClick":"event","GotFocus":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","LostFocus":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","PreKeyDown":"event","PreKeyUp":"event","Paint":"event","Resize":"event","Terminate":"event","DragDrop":"event","DragOver":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","InitProperties":"event","ReadProperties":"event","WriteProperties":"event","EnterFocus":"event","ExitFocus":"event","Show":"event","Hide":"event","AccessKeyPress":"event","AmbientChanged":"event","AsyncReadComplete":"event","AsyncReadProgress":"event","HitTest":"event","GetDataMember":"event","MouseWheel":"event","DPIChange":"event","VerbInvoked":"event","ExperimentalLog":"event","PropertyPages":"field","Verbs":"field","Width":"property","Height":"property","PreKeyWParam":"field","PreKeyLParam":"field","PreKeyTargetHwnd":"field","hWnd":"property","DpiScale":"property","PropertyChanged":"sub","Refresh":"sub","Extender":"property","SetFocus":"sub","Parent":"property","ActiveControl":"property","Count":"property","Point":"function","InternalEnumerator":"function","CanGetFocus":"property","OnGetBorderSize":"function"}},
{"name":"VbClipBehavior","kind":"enum","in":"UserControlBaseCtl","values":["vbClipNone","vbClipUseRegion"]},
{"name":"VbDataBindingBehavior","kind":"enum","in":"UserControlBaseCtl","values":["vbDataBindingNone","vbDataBindingSimple","vbDataBindingComplex"]},
{"name":"VbDataSourceBehavior","kind":"enum","in":"UserControlBaseCtl","values":["vbDataSourceNone","vbDataSource"]},
{"name":"VbHitTestBehavior","kind":"enum","in":"UserControlBaseCtl","values":["vbHitTestNone","vbHitTestUseRegion","vbHitTestPaint"]},
{"name":"VerbInfo","kind":"type","in":"UserControlBaseCtl","public":false},
{"name":"UserControl","kind":"class","control":true,"inherits":["VB.UserControlBaseCtl"]},
{"name":"VScrollBarBaseCtl","kind":"class","public":false,"inherits":["VB.ScrollBarBase"],"members":{"New":"sub"}},
{"name":"VScrollBar","kind":"class","control":true,"inherits":["VB.VScrollBarBaseCtl"]},
{"name":"tbObjectDesigner_FORM","kind":"class","public":false},
{"name":"tbObjectDesigner_MDIFORM","kind":"class","public":false},
{"name":"tbObjectDesigner_PROPERTYPAGE","kind":"class","public":false},
{"name":"tbObjectDesigner_USERCONTROL","kind":"class","public":false,"control":true},
{"name":"StandardColor","kind":"class","public":false},
{"name":"StandardDataFormat","kind":"class","public":false},
{"name":"StandardFont","kind":"class","public":false},
{"name":"StandardPicture","kind":"class","public":false},
{"name":"AdodbFieldBinder","kind":"class","public":false},
{"name":"BorderOptionsConstants","kind":"module","public":false},
{"name":"BorderOption","kind":"type","in":"BorderOptionsConstants","public":false},
{"name":"BorderOptions","kind":"type","in":"BorderOptionsConstants","public":false},
{"name":"BorderOptionClass","kind":"class","public":false},
{"name":"BorderOptionsClass","kind":"class","public":false},
{"name":"ButtonBase","kind":"class","public":false,"inherits":["VB.BaseControlFocusable"],"members":{"BackColor":"field","ForeColor":"field","PictureDpiScaling":"field","PictureAlignment":"field","Padding":"field","Opacity":"field","TransparencyKey":"field","New":"sub","DisabledPicture":"property","DownPicture":"property","Picture":"property","MaskColor":"field","UseMaskColor":"field","Style":"field"}},
{"name":"ButtonConsts","kind":"module","public":false},
{"name":"ButtonStyles","kind":"enum","in":"ButtonConsts","values":["BS_PUSHBUTTON","BS_DEFPUSHBUTTON","BS_CHECKBOX","BS_AUTOCHECKBOX","BS_RADIOBUTTON","BS_3STATE","BS_AUTO3STATE","BS_GROUPBOX","BS_USERBUTTON","BS_AUTORADIOBUTTON","BS_PUSHBOX","BS_OWNERDRAW","BS_TYPEMASK","BS_LEFTTEXT","BS_TEXT","BS_ICON","BS_BITMAP","BS_LEFT","BS_RIGHT","BS_CENTER","BS_TOP","BS_BOTTOM","BS_VCENTER","BS_PUSHLIKE","BS_MULTILINE","BS_NOTIFY","BS_FLAT","BS_RIGHTBUTTON"]},
{"name":"ButtonMessages","kind":"enum","in":"ButtonConsts","values":["BM_GETCHECK","BM_SETCHECK","BM_GETSTATE","BM_SETSTATE","BM_SETSTYLE","BM_CLICK","BM_GETIMAGE","BM_SETIMAGE","BM_SETDONTCLICK"]},
{"name":"ButtonStateFlags","kind":"enum","in":"ButtonConsts","values":["BST_UNCHECKED","BST_CHECKED","BST_INDETERMINATE","BST_PUSHED","BST_FOCUS"]},
{"name":"ButtonNotifications","kind":"enum","in":"ButtonConsts","values":["BN_CLICKED","BN_PAINT","BN_HILITE","BN_UNHILITE","BN_DISABLE","BN_DOUBLECLICKED","BN_PUSHED","BN_UNPUSHED","BN_DBLCLK","BN_SETFOCUS","BN_KILLFOCUS"]},
{"name":"OwnerDrawState","kind":"enum","in":"ButtonConsts","values":["ODS_SELECTED","ODS_GRAYED","ODS_DISABLED","ODS_CHECKED","ODS_FOCUS","ODS_DEFAULT","ODS_HOTLIGHT","ODS_INACTIVE","ODS_NOACCEL","ODS_NOFOCUSRECT"]},
{"name":"ComboBoxConsts","kind":"module","public":false},
{"name":"ComboBoxStyles","kind":"enum","in":"ComboBoxConsts","values":["CBS_SIMPLE","CBS_DROPDOWN","CBS_DROPDOWNLIST","CBS_OWNERDRAWFIXED","CBS_OWNERDRAWVARIABLE","CBS_AUTOHSCROLL","CBS_OEMCONVERT","CBS_SORT","CBS_HASSTRINGS","CBS_NOINTEGRALHEIGHT","CBS_DISABLENOSCROLL","CBS_UPPERCASE","CBS_LOWERCASE"]},
{"name":"ComboBoxMessages","kind":"enum","in":"ComboBoxConsts","values":["CB_GETEDITSEL","CB_LIMITTEXT","CB_SETEDITSEL","CB_ADDSTRING","CB_DELETESTRING","CB_DIR","CB_GETCOUNT","CB_GETCURSEL","CB_GETLBTEXT","CB_GETLBTEXTLEN","CB_INSERTSTRING","CB_RESETCONTENT","CB_FINDSTRING","CB_SELECTSTRING","CB_SETCURSEL","CB_SHOWDROPDOWN","CB_GETITEMDATA","CB_SETITEMDATA","CB_GETDROPPEDCONTROLRECT","CB_SETITEMHEIGHT","CB_GETITEMHEIGHT","CB_SETEXTENDEDUI","CB_GETEXTENDEDUI","CB_GETDROPPEDSTATE","CB_FINDSTRINGEXACT","CB_SETLOCALE","CB_GETLOCALE","CB_GETTOPINDEX","CB_SETTOPINDEX","CB_GETHORIZONTALEXTENT","CB_SETHORIZONTALEXTENT","CB_GETDROPPEDWIDTH","CB_SETDROPPEDWIDTH","CB_INITSTORAGE","CB_MULTIPLEADDSTRING","CB_GETCOMBOBOXINFO","CB_SETMINVISIBLE","CB_GETMINVISIBLE"]},
{"name":"ComboBoxNotifications","kind":"enum","in":"ComboBoxConsts","values":["CBN_ERRSPACE","CBN_SELCHANGE","CBN_DBLCLK","CBN_SETFOCUS","CBN_KILLFOCUS","CBN_EDITCHANGE","CBN_EDITUPDATE","CBN_DROPDOWN","CBN_CLOSEUP","CBN_SELENDOK","CBN_SELENDCANCEL"]},
{"name":"DriveInfo","kind":"enum","in":"ComboBoxConsts","values":["DDL_READWRITE","DDL_READONLY","DDL_HIDDEN","DDL_SYSTEM","DDL_DIRECTORY","DDL_ARCHIVE","DDL_POSTMSGSng","DDL_DRIVES","DDL_EXCLUSIVE"]},
{"name":"ListBoxConsts","kind":"module","public":false},
{"name":"StatusCodes","kind":"enum","in":"ListBoxConsts","values":["LB_ERR"]},
{"name":"ListBoxStyles","kind":"enum","in":"ListBoxConsts","values":["LBS_NOTIFY","LBS_SORT","LBS_NOREDRAW","LBS_MULTIPLESEL","LBS_OWNERDRAWFIXED","LBS_OWNERDRAWVARIABLE","LBS_HASSTRINGS","LBS_USETABSTOPS","LBS_NOINTEGRALHEIGHT","LBS_MULTICOLUMN","LBS_WANTKEYBOARDINPUT","LBS_EXTENDEDSEL","LBS_DISABLENOSCROLL","LBS_NODATA","LBS_NOSEL","LBS_COMBOBOX"]},
{"name":"ListBoxMessages","kind":"enum","in":"ListBoxConsts","values":["LB_ADDSTRING","LB_INSERTSTRING","LB_DELETESTRING","LB_SELITEMRANGEEX","LB_RESETCONTENT","LB_SETSEL","LB_SETCURSEL","LB_GETSEL","LB_GETCURSEL","LB_GETTEXT","LB_GETTEXTLEN","LB_GETCOUNT","LB_SELECTSTRING","LB_DIR","LB_GETTOPINDEX","LB_FINDSTRING","LB_GETSELCOUNT","LB_GETSELITEMS","LB_SETTABSTOPS","LB_GETHORIZONTALEXTENT","LB_SETHORIZONTALEXTENT","LB_SETCOLUMNWIDTH","LB_ADDFILE","LB_SETTOPINDEX","LB_GETITEMRECT","LB_GETITEMDATA","LB_SETITEMDATA","LB_SELITEMRANGE","LB_SETANCHORINDEX","LB_GETANCHORINDEX","LB_SETCARETINDEX","LB_GETCARETINDEX","LB_SETITEMHEIGHT","LB_GETITEMHEIGHT","LB_FINDSTRINGEXACT","LB_SETLOCALE","LB_GETLOCALE","LB_SETCOUNT","LB_INITSTORAGE","LB_ITEMFROMPOINT","LB_MULTIPLEADDSTRING"]},
{"name":"ListBoxNotifications","kind":"enum","in":"ListBoxConsts","values":["LBN_ERRSPACE","LBN_SELCHANGE","LBN_DBLCLK","LBN_SELCANCEL","LBN_SETFOCUS","LBN_KILLFOCUS"]},
{"name":"MenuConsts","kind":"module","public":false},
{"name":"MENUBARINFO","kind":"type","in":"MenuConsts","public":false},
{"name":"MENUITEMINFO","kind":"type","in":"MenuConsts","public":false},
{"name":"StaticControlConsts","kind":"module","public":false},
{"name":"StaticStyles","kind":"enum","in":"StaticControlConsts","values":["SS_LEFT","SS_CENTER","SS_RIGHT","SS_ICON","SS_BLACKRECT","SS_GRAYRECT","SS_WHITERECT","SS_BLACKFRAME","SS_GRAYFRAME","SS_WHITEFRAME","SS_USERITEM","SS_SIMPLE","SS_LEFTNOWORDWRAP","SS_OWNERDRAW","SS_BITMAP","SS_ENHMETAFILE","SS_ETCHEDHORZ","SS_ETCHEDVERT","SS_ETCHEDFRAME","SS_TYPEMASK","SS_REALSIZECONTROL","SS_NOPREFIX","SS_NOTIFY","SS_CENTERIMAGE","SS_RIGHTJUST","SS_REALSIZEIMAGE","SS_SUNKEN","SS_EDITCONTROL","SS_ENDELLIPSIS","SS_PATHELLIPSIS","SS_WORDELLIPSIS","SS_ELLIPSISMASK"]},
{"name":"StaticMessages","kind":"enum","in":"StaticControlConsts","values":["STM_SETICON","STM_GETICON","STM_SETIMAGE","STM_GETIMAGE","STM_MSGMAX"]},
{"name":"StaticNotifications","kind":"enum","in":"StaticControlConsts","values":["STN_CLICKED","STN_DBLCLK","STN_ENABLE","STN_DISABLE"]},
{"name":"TextBoxConsts","kind":"module","public":false},
{"name":"EditStyles","kind":"enum","in":"TextBoxConsts","values":["ES_LEFT","ES_CENTER","ES_RIGHT","ES_MULTILINE","ES_UPPERCASE","ES_LOWERCASE","ES_PASSWORD","ES_AUTOVSCROLL","ES_AUTOHSCROLL","ES_NOHIDESEL","ES_OEMCONVERT","ES_READONLY","ES_WANTRETURN","ES_NUMBER"]},
{"name":"EditMessages","kind":"enum","in":"TextBoxConsts","values":["EM_GETSEL","EM_SETSEL","EM_GETRECT","EM_SETRECT","EM_SETRECTNP","EM_SCROLL","EM_LINESCROLL","EM_SCROLLCARET","EM_GETMODIFY","EM_SETMODIFY","EM_GETLINECOUNT","EM_LINEINDEX","EM_SETHANDLE","EM_GETHANDLE","EM_GETTHUMB","EM_LINELENGTH","EM_REPLACESEL","EM_GETLINE","EM_LIMITTEXT","EM_CANUNDO","EM_UNDO","EM_FMTLINES","EM_LINEFROMCHAR","EM_SETTABSTOPS","EM_SETPASSWORDCHAR","EM_EMPTYUNDOBUFFER","EM_GETFIRSTVISIBLELINE","EM_SETREADONLY","EM_SETWORDBREAKPROC","EM_GETWORDBREAKPROC","EM_GETPASSWORDCHAR","EM_SETMARGINS","EM_GETMARGINS","EM_SETLIMITTEXT","EM_GETLIMITTEXT","EM_POSFROMCHAR","EM_CHARFROMPOS","EM_SETIMESTATUS","EM_GETIMESTATUS","EM_ENABLEFEATURE","ECM_FIRST","EM_SETCUEBANNER","EM_GETCUEBANNER","EM_SHOWBALLOONTIP","EM_HIDEBALLOONTIP"]},
{"name":"EditNotifications","kind":"enum","in":"TextBoxConsts","values":["EN_SETFOCUS","EN_KILLFOCUS","EN_CHANGE","EN_UPDATE","EN_ERRSPACE","EN_MAXTEXT","EN_HSCROLL","EN_VSCROLL","EN_ALIGN_LTR_EC","EN_ALIGN_RTL_EC","EN_BEFORE_PASTE","EN_AFTER_PASTE"]},
{"name":"ColorPicker","kind":"module","public":false},
{"name":"CHOOSECOLOR","kind":"type","in":"ColorPicker","public":false},
{"name":"ControlsSection","kind":"class","public":false},
{"name":"ControlsSectionType","kind":"enum","in":"ControlsSection","values":["Detail","ReportHeader","ReportFooter","PageHeader","PageFooter"]},
{"name":"PageBreakConstants","kind":"enum","in":"ControlsSection","values":["rptPageBreakNone","rptPageBreakBefore","rptPageBreakAfter","rptPageBreakBeforeAndAfter"]},
{"name":"SectionRenderState","kind":"type","in":"ControlsSection","public":false},
{"name":"IDSCConnectionPoint","kind":"interface","public":false},
{"name":"IDAOBaseInterface","kind":"interface","public":false},
{"name":"IDAORecordset","kind":"interface","public":false,"extends":"VB.IDAOBaseInterface"},
{"name":"DAORecordset","kind":"coclass","public":false,"default":"IDAORecordset","source":["IDSCConnectionPoint"]},
{"name":"DAOPrivDBEngine","kind":"coclass","public":false,"hidden":true,"default":"IDAODBEngine"},
{"name":"DAODBEngine","kind":"coclass","public":false,"hidden":true,"default":"IDAODBEngine"},
{"name":"DAODBEngineACE","kind":"coclass","public":false,"hidden":true,"default":"IDAODBEngine"},
{"name":"IDAODBEngine","kind":"interface","public":false},
{"name":"DAODatabase","kind":"interface","public":false},
{"name":"DAOField","kind":"coclass","public":false,"default":"IDAOField"},
{"name":"IDAOField","kind":"interface","public":false},
{"name":"DAOWorkspace","kind":"interface","public":false},
{"name":"DataFieldBinderBase","kind":"class","public":false,"members":{"DataFormat":"field","DataMember":"field","DataChanged":"field","GetParent":"sub","SetLiveValue":"sub","GetLiveValue":"sub","DataField":"property","DataSource":"property"}},
{"name":"FilePicker","kind":"module","public":false},
{"name":"OPENFILENAMEW","kind":"type","in":"FilePicker","public":false},
{"name":"_App","kind":"interface","public":false,"members":{"Path":"property","EXEName":"property","Title":"property","PrevInstance":"property","StartMode":"property","TaskVisible":"property","OleServerBusyTimeout":"property","OleServerBusyMsgTitle":"property","OleServerBusyMsgText":"property","OleServerBusyRaiseError":"property","OleRequestPendingTimeout":"property","OleRequestPendingMsgTitle":"property","OleRequestPendingMsgText":"property","Major":"property","Minor":"property","Revision":"property","Comments":"property","CompanyName":"property","FileDescription":"property","LegalCopyright":"property","LegalTrademarks":"property","ProductName":"property","hInstance":"property","NonModalAllowed":"property","LogPath":"property","LogMode":"property","UnattendedApp":"property","ThreadID":"property","HelpFile":"property","RetainedProject":"property","StartLogging":"sub","LogEvent":"sub","IsInIDE":"property","Build":"property","ModulePath":"property","LastBuildPath":"property","IsElevated":"property","FusionHostEXEPath":"property"}},
{"name":"_Clipboard","kind":"interface","public":false,"members":{"Clear":"sub","GetData":"function","SetData":"sub","GetText":"function","SetText":"sub","GetFormat":"function"}},
{"name":"_Screen","kind":"interface","public":false,"members":{"Height":"property","FontCount":"property","Fonts":"property","ActiveForm":"property","ActiveControl":"property","MousePointer":"property","TwipsPerPixelX":"function","TwipsPerPixelY":"function","MouseIcon":"property","Width":"property"}},
{"name":"_Forms","kind":"interface","public":false},
{"name":"VBGlobal","kind":"interface","public":false,"members":{"App":"property","Clipboard":"property","Screen":"property","Forms":"property","LoadResPicture":"function","LoadResData":"function","LoadResString":"function","LoadResIdList":"function","LoadPicture":"function","Load":"sub","Unload":"sub","Printer":"property","Printers":"property"}},
{"name":"App","kind":"coclass","default":"_App"},
{"name":"Clipboard","kind":"coclass","default":"_Clipboard"},
{"name":"Screen","kind":"coclass","default":"_Screen"},
{"name":"Global","kind":"coclass","default":"VBGlobal"},
{"name":"IVBPrint","kind":"interface","public":false},
{"name":"GraphicsGlobals","kind":"module","public":false},
{"name":"PICTDESC_BITMAP","kind":"type","in":"GraphicsGlobals","public":false},
{"name":"ICONINFO","kind":"type","in":"GraphicsGlobals","public":false},
{"name":"contigiousPointsTriangle","kind":"type","in":"GraphicsGlobals","public":false},
{"name":"TRIVERTEX","kind":"type","in":"GraphicsGlobals","public":false},
{"name":"GRADIENT_RECT","kind":"type","in":"GraphicsGlobals","public":false},
{"name":"GRADIENT_TRIANGLE","kind":"type","in":"GraphicsGlobals","public":false},
{"name":"WorldTransformAngleData","kind":"type","in":"GraphicsGlobals","public":false},
{"name":"XFORM","kind":"type","in":"GraphicsGlobals","public":false},
{"name":"SafeLongLong","kind":"type","in":"GraphicsGlobals","public":false},
{"name":"BITMAPINFOHEADER","kind":"type","in":"GraphicsGlobals","public":false},
{"name":"BITMAPINFO_RGBA","kind":"type","in":"GraphicsGlobals","public":false},
{"name":"BITMAPINFO_RGBA_LARGE","kind":"type","in":"GraphicsGlobals","public":false},
{"name":"CIEXYZ","kind":"type","in":"GraphicsGlobals","public":false},
{"name":"CIEXYZTRIPLE","kind":"type","in":"GraphicsGlobals","public":false},
{"name":"BITMAPV5HEADER","kind":"type","in":"GraphicsGlobals","public":false},
{"name":"V5BMPINFO","kind":"type","in":"GraphicsGlobals","public":false},
{"name":"TextRenderPath","kind":"class","public":false},
{"name":"TextRenderElement","kind":"type","in":"TextRenderPath","public":false},
{"name":"GraphicsBase","kind":"class","public":false,"members":{"FontTransparent":"field","PictureDpiScaling":"field","hDC":"property","HasDC":"field","ClipControls":"field","BackColor":"field","ForeColor":"field","FillColor":"field","FillStyle":"field","DrawWidth":"field","DrawMode":"field","DrawStyle":"field","AutoRedraw":"field","ScaleMode":"field","New":"sub","Picture":"property","Cls":"sub","Circle":"sub","Line":"sub","PSet":"sub","Scale":"sub","Font":"field","FontBold":"property","FontItalic":"property","FontName":"property","FontSize":"property","FontStrikethru":"property","FontUnderline":"property","CurrentX":"property","CurrentY":"property","TextWidth":"function","TextHeight":"function","ScaleTop":"property","ScaleLeft":"property","ScaleWidth":"property","ScaleHeight":"property","ScaleX":"function","ScaleY":"function","PaintPicture":"sub","Image":"property"}},
{"name":"BaseGraphicsInfo","kind":"type","in":"GraphicsBase","public":false},
{"name":"VBPaintFlags","kind":"enum","in":"GraphicsBase","public":false},
{"name":"tagLOGPEN","kind":"type","in":"GraphicsBase","public":false},
{"name":"vbStretchQuality","kind":"enum","in":"GraphicsBase","values":["vbQualityNormal","vbQualityHalftone"]},
{"name":"HelpSystem","kind":"module","public":false},
{"name":"HH_POPUP","kind":"type","in":"HelpSystem","public":false},
{"name":"HiddenModule2","kind":"module","members":{"CreateGlobalObject":"function","GetApphInstance":"function","GetAppThreadID":"function","GetAppPath":"function","GetAppEXEName":"function","GetAppIsInIDE":"function","GetAppMajor":"function","GetAppMinor":"function","GetAppRevision":"function","GetAppBuild":"function","GetAppModulePath":"function","GetAppComments":"function","GetAppCompanyName":"function","GetAppFileDescription":"function","GetAppLegalCopyright":"function","GetAppLegalTrademarks":"function","GetAppProductName":"function","GetAppLastBuildPath":"function","GetAppIsElevated":"function","GetAppPrevInstance":"function","GetAppTitle":"function","LetAppTitle":"sub","GetAppHelpFile":"function","LetAppHelpFile":"sub","GetAppLogMode":"function","ClipboardClear":"sub","ClipboardGetData":"function","ClipboardSetData":"sub","ClipboardGetText":"function","ClipboardSetText":"sub","ClipboardGetFormat":"function","ScreenGetHeight":"property","ScreenGetFontCount":"property","ScreenGetFonts":"property","ScreenGetActiveForm":"property","ScreenGetActiveControl":"property","ScreenGetMousePointer":"property","ScreenLetMousePointer":"sub","ScreenGetTwipsPerPixelX":"function","ScreenGetTwipsPerPixelY":"function","ScreenLetMouseIcon":"sub","ScreenGetMouseIcon":"property","ScreenSetMouseIcon":"sub","ScreenGetWidth":"property","FormsGetCount":"property","FormsGetItem":"property","FormsAdd":"property","GlobalLoadResPicture":"function","GlobalLoadResData":"function","GlobalLoadResString":"function","GlobalLoadResIdList":"function","GlobalLoadPicture":"function","GlobalLoad":"sub","GlobalUnload":"sub","FormsNewEnum":"function","IsFileFormatHLP":"function","GetFusionHostEXEPath":"function","LetFusionHostEXEPath":"sub"},"hiddenMembers":["CreateGlobalObject","GetApphInstance","GetAppThreadID","GetAppPath","GetAppEXEName","GetAppIsInIDE","GetAppMajor","GetAppMinor","GetAppRevision","GetAppBuild","GetAppModulePath","GetAppComments","GetAppCompanyName","GetAppFileDescription","GetAppLegalCopyright","GetAppLegalTrademarks","GetAppProductName","GetAppLastBuildPath","GetAppIsElevated","GetAppPrevInstance","GetAppTitle","LetAppTitle","GetAppHelpFile","LetAppHelpFile","GetAppLogMode","ClipboardClear","ClipboardGetData","ClipboardSetData","ClipboardGetText","ClipboardSetText","ClipboardGetFormat","ScreenGetHeight","ScreenGetFontCount","ScreenGetFonts","ScreenGetActiveForm","ScreenGetActiveControl","ScreenGetMousePointer","ScreenLetMousePointer","ScreenGetTwipsPerPixelX","ScreenGetTwipsPerPixelY","ScreenLetMouseIcon","ScreenGetMouseIcon","ScreenSetMouseIcon","ScreenGetWidth","FormsGetCount","FormsGetItem","FormsAdd","GlobalLoadResPicture","GlobalLoadResData","GlobalLoadResString","GlobalLoadResIdList","GlobalLoadPicture","GlobalLoad","GlobalUnload","FormsNewEnum","IsFileFormatHLP","GetFusionHostEXEPath","LetFusionHostEXEPath"]},
{"name":"IdleMessageLoopBreak","kind":"module","public":false},
{"name":"IPersist","kind":"interface","public":false},
{"name":"IPersistStreamInit","kind":"interface","public":false,"extends":"VB.IPersist"},
{"name":"IPersistStream","kind":"interface","public":false,"extends":"VB.IPersist"},
{"name":"IPersistStorage","kind":"interface","public":false,"extends":"VB.IPersist"},
{"name":"IPropertyBag","kind":"interface","public":false},
{"name":"IPersistPropertyBag","kind":"interface","public":false,"extends":"VB.IPersist"},
{"name":"IOleClientSite","kind":"interface","public":false},
{"name":"IEnumOLEVERB","kind":"interface","public":false},
{"name":"OLEVERB","kind":"type","in":"IEnumOLEVERB","public":false},
{"name":"IOleLink","kind":"interface","public":false},
{"name":"IOleObject","kind":"interface","public":false},
{"name":"SIZEL","kind":"type","in":"IOleObject","public":false},
{"name":"IOleControl","kind":"interface","public":false},
{"name":"CONTROLINFO","kind":"type","in":"IOleControl","public":false},
{"name":"MSG","kind":"type","in":"IOleControl","public":false},
{"name":"ITypeInfo","kind":"interface","public":false},
{"name":"IProvideClassInfo","kind":"interface","public":false},
{"name":"ITypeComp","kind":"interface","public":false},
{"name":"ITypeLib","kind":"interface","public":false},
{"name":"IViewObject","kind":"interface","public":false},
{"name":"IViewObject2","kind":"interface","public":false,"extends":"VB.IViewObject"},
{"name":"IViewObjectEx","kind":"interface","public":false,"extends":"VB.IViewObject2"},
{"name":"IUnsupportedInterface","kind":"interface","public":false},
{"name":"ITwinBasicInternalClassSupport","kind":"interface","public":false},
{"name":"IOleWindow","kind":"interface","public":false},
{"name":"IOleInPlaceUIWindow","kind":"interface","public":false,"extends":"VB.IOleWindow"},
{"name":"IOleInPlaceFrame","kind":"interface","public":false,"extends":"VB.IOleInPlaceUIWindow"},
{"name":"OLEMENUGROUPWIDTHS","kind":"type","in":"IOleInPlaceFrame","public":false},
{"name":"IOleInPlaceActiveObject","kind":"interface","public":false,"extends":"VB.IOleWindow"},
{"name":"IOleInPlaceSite","kind":"interface","public":false,"extends":"VB.IOleWindow"},
{"name":"OLEINPLACEFRAMEINFO","kind":"type","in":"IOleInPlaceSite","public":false},
{"name":"IOleInPlaceSiteEx","kind":"interface","public":false,"extends":"VB.IOleInPlaceSite"},
{"name":"IOleInPlaceSiteWindowless","kind":"interface","public":false,"extends":"VB.IOleInPlaceSiteEx"},
{"name":"IOleInPlaceObject","kind":"interface","public":false,"extends":"VB.IOleWindow"},
{"name":"IOleInPlaceObjectWindowless","kind":"interface","public":false,"extends":"VB.IOleInPlaceObject"},
{"name":"IOleControlSite","kind":"interface","public":false},
{"name":"POINTL","kind":"type","in":"IOleControlSite","public":false},
{"name":"POINTF","kind":"type","in":"IOleControlSite","public":false},
{"name":"ISpecifyPropertyPages","kind":"interface","public":false},
{"name":"CAUUID","kind":"type","in":"ISpecifyPropertyPages","public":false},
{"name":"IPerPropertyBrowsing","kind":"interface","public":false},
{"name":"CALPOLESTR","kind":"type","in":"IPerPropertyBrowsing","public":false},
{"name":"CADWORD","kind":"type","in":"IPerPropertyBrowsing","public":false},
{"name":"ICategorizeProperties","kind":"interface","public":false},
{"name":"IPropertyPage","kind":"interface","public":false},
{"name":"PROPPAGEINFO","kind":"type","in":"IPropertyPage","public":false},
{"name":"IPropertyPage2","kind":"interface","public":false,"extends":"VB.IPropertyPage"},
{"name":"IPropertyPageSite","kind":"interface","public":false},
{"name":"ITwinBasicDesignerExtensions","kind":"interface","public":false},
{"name":"ITwinBasicDesignerExtensions2","kind":"interface","public":false},
{"name":"ITwinBasicDesignerExtensions3","kind":"interface","public":false},
{"name":"ITwinBasicRuntimeControlExtensions","kind":"interface","public":false},
{"name":"IRunnableObject","kind":"interface","public":false},
{"name":"IEnumUnknown","kind":"interface","public":false},
{"name":"IParseDisplayName","kind":"interface","public":false},
{"name":"IOleContainer","kind":"interface","public":false,"extends":"VB.IParseDisplayName"},
{"name":"OLECONTF","kind":"enum","in":"IOleContainer","values":["OLECONTF_EMBEDDINGS","OLECONTF_LINKS","OLECONTF_OTHERS","OLECONTF_ONLYUSER","OLECONTF_ONLYIFRUNNING"]},
{"name":"IObjectWithSite","kind":"interface","public":false},
{"name":"ISimpleFrameSite","kind":"interface","public":false},
{"name":"IVBGetControl","kind":"interface","public":false},
{"name":"IPropertyNotifySink","kind":"interface","public":false},
{"name":"ISupportsNotifySink","kind":"interface","public":false},
{"name":"IDispatchInternal","kind":"interface","public":false},
{"name":"InternalIID","kind":"type","in":"IDispatchInternal","public":false},
{"name":"PropertyNotifySink","kind":"class","public":false},
{"name":"OlePicture","kind":"interface","public":false},
{"name":"IDataFormatDisp","kind":"interface","public":false},
{"name":"StdDataFormatConsts","kind":"module","public":false},
{"name":"FirstWeekOfYear","kind":"enum","in":"StdDataFormatConsts","values":["fmtWeekUseSystem","fmtFirstJan1","fmtFirstFourDays","fmtFirstFullWeek"]},
{"name":"FirstDayOfWeek","kind":"enum","in":"StdDataFormatConsts","values":["fmtDayUseSystem","fmtSunday","fmtMonday","fmtTuesday","fmtWednesday","fmtThursday","fmtFriday","fmtSaturday"]},
{"name":"FormatType","kind":"enum","in":"StdDataFormatConsts","values":["fmtGeneral","fmtCustom","fmtPicture","fmtObject","fmtCheckbox","fmtBoolean","fmtBytes"]},
{"name":"IStdDataFormatDisp","kind":"interface","public":false},
{"name":"StdDataFormat","kind":"class","public":false},
{"name":"DataSourceListener","kind":"interface","public":false},
{"name":"DataSource","kind":"interface","public":false},
{"name":"Control","kind":"interface"},
{"name":"IControlArrayCollection","kind":"interface","public":false},
{"name":"IQuickActivate","kind":"interface","public":false},
{"name":"QACONTAINER","kind":"type","in":"IQuickActivate","public":false},
{"name":"QACONTROL","kind":"type","in":"IQuickActivate","public":false},
{"name":"IPointerInactive","kind":"interface","public":false},
{"name":"IEnumVARIANT_TB","kind":"interface","public":false,"hidden":true},
{"name":"IAdodbRecordset15","kind":"interface","hidden":true,"members":{"Properties":"property","AbsolutePosition":"property","ActiveConnection":"property","BOF":"property","Bookmark":"property","CacheSize":"property","CursorType":"property","EOF":"property","Fields":"property","LockType":"property","MaxRecords":"property","RecordCount":"property","Source":"property","AddNew":"sub","CancelUpdate":"sub","Close":"sub","Delete":"sub","GetRows":"function","Move":"sub","MoveNext":"sub","MovePrevious":"sub","MoveFirst":"sub","MoveLast":"sub","Open":"sub","Requery":"sub","_xResync":"sub","Update":"sub","AbsolutePage":"property","EditMode":"property","Filter":"property","PageCount":"property","PageSize":"property","Sort":"property","Status":"property","State":"property","_xClone":"function","UpdateBatch":"sub","CancelBatch":"sub","CursorLocation":"property","NextRecordset":"function","Supports":"function","Collect":"property","MarshalOptions":"property","Find":"sub"},"hiddenMembers":["_xResync","_xClone","Collect"]},
{"name":"IAdodbRecordsetEvents","kind":"interface","members":{"WillChangeField":"sub","FieldChangeComplete":"sub","WillChangeRecord":"sub","RecordChangeComplete":"sub","WillChangeRecordset":"sub","RecordsetChangeComplete":"sub","WillMove":"sub","MoveComplete":"sub","EndOfRecordset":"sub","FetchProgress":"sub","FetchComplete":"sub"}},
{"name":"AdodbRecordset15","kind":"coclass","public":false,"default":"IAdodbRecordset15","source":["IAdodbRecordsetEvents"]},
{"name":"IWindowElementEventsBaseControl","kind":"interface","public":false},
{"name":"IWindowElementEventsBaseForm","kind":"interface","public":false},
{"name":"IWindowElementEventsCommon","kind":"interface","public":false},
{"name":"IWindowElementEventsCommonRoot","kind":"interface","public":false},
{"name":"IWindowElementEventsAX","kind":"interface","public":false},
{"name":"IWindowElementEventsUC","kind":"interface","public":false},
{"name":"IWindowElementEventsGraphics","kind":"interface","public":false},
{"name":"IWindowElementEventsCommonControls","kind":"interface","public":false},
{"name":"MenuHelpers","kind":"module","public":false},
{"name":"CommonInsertMenuControlARGS","kind":"type","in":"MenuHelpers","public":false},
{"name":"Miscellaneous2","kind":"module","public":false},
{"name":"POINT","kind":"type","in":"Miscellaneous2","public":false},
{"name":"SIZE","kind":"type","in":"Miscellaneous2","public":false},
{"name":"PropertyPageSharedState","kind":"type","in":"Miscellaneous2","public":false},
{"name":"EnumStandardSize","kind":"enum","in":"Miscellaneous2","values":["StandardSizeCustom","StandardSizeSmall","StandardSizeLarge"]},
{"name":"Miscellaneous","kind":"module","public":false},
{"name":"tbRECT","kind":"type","in":"Miscellaneous","public":false},
{"name":"PAINTSTRUCT","kind":"type","in":"Miscellaneous","public":false},
{"name":"ACCEL","kind":"type","in":"Miscellaneous","public":false},
{"name":"DISPID_AMBIENT","kind":"enum","in":"Miscellaneous","values":["DISPID_AUTOSIZE","DISPID_BACKCOLOR","DISPID_BACKSTYLE","DISPID_BORDERCOLOR","DISPID_BORDERSTYLE","DISPID_BORDERWIDTH","DISPID_DRAWMODE","DISPID_DRAWSTYLE","DISPID_DRAWWIDTH","DISPID_FILLCOLOR","DISPID_FILLSTYLE","DISPID_FONT","DISPID_FORECOLOR","DISPID_ENABLED","DISPID_HWND","DISPID_TABSTOP","DISPID_TEXT","DISPID_CAPTION","DISPID_BORDERVISIBLE","DISPID_APPEARANCE","DISPID_MOUSEPOINTER","DISPID_MOUSEICON","DISPID_PICTURE","DISPID_VALID","DISPID_READYSTATE","DISPID_LISTINDEX","DISPID_SELECTED","DISPID_LIST","DISPID_COLUMN","DISPID_LISTCOUNT","DISPID_MULTISELECT","DISPID_MAXLENGTH","DISPID_PASSWORDCHAR","DISPID_SCROLLBARS","DISPID_WORDWRAP","DISPID_MULTILINE","DISPID_NUMBEROFROWS","DISPID_NUMBEROFCOLUMNS","DISPID_DISPLAYSTYLE","DISPID_GROUPNAME","DISPID_IMEMODE","DISPID_ACCELERATOR","DISPID_ENTERKEYBEHAVIOR","DISPID_TABKEYBEHAVIOR","DISPID_SELTEXT","DISPID_SELSTART","DISPID_SELLENGTH","DISPID_REFRESH","DISPID_DOCLICK","DISPID_ABOUTBOX","DISPID_ADDITEM","DISPID_CLEAR","DISPID_REMOVEITEM","DISPID_CLICK","DISPID_DBLCLICK","DISPID_KEYDOWN","DISPID_KEYPRESS","DISPID_KEYUP","DISPID_MOUSEDOWN","DISPID_MOUSEMOVE","DISPID_MOUSEUP","DISPID_ERROREVENT","DISPID_READYSTATECHANGE","DISPID_CLICK_VALUE","DISPID_RIGHTTOLEFT","DISPID_TOPTOBOTTOM","DISPID_THIS","DISPID_AMBIENT_BACKCOLOR","DISPID_AMBIENT_DISPLAYNAME","DISPID_AMBIENT_FONT","DISPID_AMBIENT_FORECOLOR","DISPID_AMBIENT_LOCALEID","DISPID_AMBIENT_MESSAGEREFLECT","DISPID_AMBIENT_SCALEUNITS","DISPID_AMBIENT_TEXTALIGN","DISPID_AMBIENT_USERMODE","DISPID_AMBIENT_UIDEAD","DISPID_AMBIENT_SHOWGRABHANDLES","DISPID_AMBIENT_SHOWHATCHING","DISPID_AMBIENT_DISPLAYASDEFAULT","DISPID_AMBIENT_SUPPORTSMNEMONICS","DISPID_AMBIENT_AUTOCLIP","DISPID_AMBIENT_APPEARANCE","DISPID_AMBIENT_CODEPAGE","DISPID_AMBIENT_PALETTE","DISPID_AMBIENT_CHARSET","DISPID_AMBIENT_TRANSFERPRIORITY","DISPID_AMBIENT_RIGHTTOLEFT","DISPID_AMBIENT_TOPTOBOTTOM","DISPID_NAME","DISPID_DELETE","DISPID_OBJECT","DISPID_PARENT","DISPID_FONT_NAME","DISPID_FONT_SIZE","DISPID_FONT_BOLD","DISPID_FONT_ITALIC","DISPID_FONT_UNDER","DISPID_FONT_STRIKE","DISPID_FONT_WEIGHT","DISPID_FONT_CHARSET","DISPID_FONT_CHANGED","DISPID_PICT_HANDLE","DISPID_PICT_HPAL","DISPID_PICT_TYPE","DISPID_PICT_WIDTH","DISPID_PICT_HEIGHT","DISPID_PICT_RENDER"]},
{"name":"OLEMISC","kind":"enum","in":"Miscellaneous","values":["OLEMISC_RECOMPOSEONRESIZE","OLEMISC_ONLYICONIC","OLEMISC_INSERTNOTREPLACE","OLEMISC_STATIC","OLEMISC_CANTLINKINSIDE","OLEMISC_CANLINKBYOLE1","OLEMISC_ISLINKOBJECT","OLEMISC_INSIDEOUT","OLEMISC_ACTIVATEWHENVISIBLE","OLEMISC_RENDERINGISDEVICEINDEPENDENT","OLEMISC_INVISIBLEATRUNTIME","OLEMISC_ALWAYSRUN","OLEMISC_ACTSLIKEBUTTON","OLEMISC_ACTSLIKELABEL","OLEMISC_NOUIACTIVATE","OLEMISC_ALIGNABLE","OLEMISC_SIMPLEFRAME","OLEMISC_SETCLIENTSITEFIRST","OLEMISC_IMEMODE","OLEMISC_IGNOREACTIVATEWHENVISIBLE","OLEMISC_WANTSTOMENUMERGE","OLEMISC_SUPPORTSMULTILEVELUNDO"]},
{"name":"BorderStyles","kind":"enum","in":"Miscellaneous","values":["BDR_RAISEDOUTER","BDR_SUNKENOUTER","BDR_RAISEDINNER","BDR_SUNKENINNER","BDR_OUTER","BDR_INNER","BDR_RAISED","BDR_SUNKEN","EDGE_RAISED","EDGE_SUNKEN","EDGE_ETCHED","EDGE_BUMP"]},
{"name":"BorderFlags","kind":"enum","in":"Miscellaneous","values":["BF_LEFT","BF_TOP","BF_RIGHT","BF_BOTTOM","BF_DIAGONAL","BF_MIDDLE","BF_SOFT","BF_ADJUST","BF_FLAT","BF_MONO","BF_TOPLEFT","BF_TOPRIGHT","BF_BOTTOMLEFT","BF_BOTTOMRIGHT","BF_RECT","BF_DIAGONAL_ENDTOPRIGHT","BF_DIAGONAL_ENDTOPLEFT","BF_DIAGONAL_ENDBOTTOMLEFT","BF_DIAGONAL_ENDBOTTOMRIGHT"]},
{"name":"TEXTMETRICW","kind":"type","in":"Miscellaneous","public":false},
{"name":"ENHMETAHEADER","kind":"type","in":"Miscellaneous","public":false},
{"name":"DEVMODEW","kind":"type","in":"Miscellaneous","public":false},
{"name":"DOCINFOW","kind":"type","in":"Miscellaneous","public":false},
{"name":"VBControlExtender","kind":"class","members":{"GotFocus":"event"}},
{"name":"OLEDragDropHelper","kind":"class","public":false,"members":{"OLEDropMode":"field","Class_Terminate":"sub"}},
{"name":"PrintersHelper","kind":"module","public":false},
{"name":"ITwinBasicPrinter","kind":"interface","public":false},
{"name":"Printer","kind":"class","members":{"OutputFile":"field","New":"sub","hDC":"property","DeviceName":"property","DriverName":"property","Port":"property","ColorMode":"property","Duplex":"property","Copies":"property","PaperBin":"property","PrintQuality":"property","Orientation":"property","PaperSize":"property","Zoom":"property","Width":"property","Height":"property","EndDoc":"sub","KillDoc":"sub","NewPage":"sub","Page":"property","Circle":"sub","Line":"sub","PSet":"sub","CurrentX":"property","CurrentY":"property","DrawMode":"property","DrawStyle":"property","DrawWidth":"property","FillColor":"property","FillStyle":"property","Font":"property","FontBold":"property","FontItalic":"property","FontStrikethru":"property","FontTransparent":"property","FontUnderline":"property","FontName":"property","FontSize":"property","ForeColor":"property","PaintPicture":"sub","Scale":"sub","ScaleLeft":"property","ScaleTop":"property","ScaleWidth":"property","ScaleHeight":"property","ScaleMode":"property","ScaleX":"function","ScaleY":"function","TextWidth":"function","TextHeight":"function","FontCount":"property","Fonts":"property","RightToLeft":"field","TwipsPerPixelX":"property","TwipsPerPixelY":"property","TrackDefault":"property"}},
{"name":"Printers","kind":"class","members":{"Item":"property","Count":"property","_NewEnum":"function"}},
{"name":"PrintersGlobals","kind":"module","public":false,"hidden":true},
{"name":"QRCodeHelper","kind":"module","public":false},
{"name":"QRCodegenEccConstants","kind":"enum","in":"QRCodeHelper","values":["vbQRCodegenEccLow","vbQRCodegenEccMedium","vbQRCodegenEccQuartile","vbQRCodegenEccHigh"]},
{"name":"QRCodegenMaskConstants","kind":"enum","in":"QRCodeHelper","values":["vbQRCodegenMaskAuto","vbQRCodegenMask0","vbQRCodegenMask1","vbQRCodegenMask2","vbQRCodegenMask3","vbQRCodegenMask4","vbQRCodegenMask5","vbQRCodegenMask6","vbQRCodegenMask7"]},
{"name":"QRCodegenMode","kind":"enum","in":"QRCodeHelper","values":["vbQRCodegenModeNumeric","vbQRCodegenModeAlphanumeric","vbQRCodegenModeByte","vbQRCodegenModeKanji","vbQRCodegenModeEci"]},
{"name":"QRCodegenSegment","kind":"type","in":"QRCodeHelper","public":false},
{"name":"POINTAPI","kind":"type","in":"QRCodeHelper","public":false},
{"name":"tbRECT","kind":"type","in":"QRCodeHelper","public":false},
{"name":"tbPICTDESC","kind":"type","in":"QRCodeHelper","public":false},
{"name":"BITMAPINFOHEADER","kind":"type","in":"QRCodeHelper","public":false},
{"name":"Render","kind":"module","public":false},
{"name":"BITMAP","kind":"type","in":"Render","public":false},
{"name":"SAFEARRAYBOUND","kind":"type","in":"Render","public":false},
{"name":"SAFEARRAY1D","kind":"type","in":"Render","public":false},
{"name":"ScrollBarBase","kind":"class","public":false,"inherits":["VB.BaseControlFocusableNoFont"],"members":{"New":"sub","SmallChange":"field","RightToLeft":"field","Opacity":"field","TransparencyKey":"field","HelpContextID":"field","WhatsThisHelpID":"field","ShowWhatsThis":"sub","Change":"event","GotFocus":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","LostFocus":"event","Scroll":"event","Initialize":"event","DragDrop":"event","DragOver":"event","Validate":"event","OnDestroy":"sub","Min":"property","Max":"property","LargeChange":"property","Value":"property","SyncScrollBar":"sub","_Default":"property","Refresh":"sub","Parent":"property","VisualStyles":"property"}}
]
},
"VBA": {
"exports": ["VBA"],
"types": [
{"name":"_Collection","kind":"interface","members":{"Item":"function","Add":"sub","Count":"property","Remove":"sub","Clear":"sub","Exists":"function","KeyCountHint":"property","KeyCompareMode":"property","Items":"function","Keys":"function","_NewEnum":"function"},"hiddenMembers":["_NewEnum"]},
{"name":"Collection","kind":"coclass","default":"_Collection"},
{"name":"Compilation","kind":"module","members":{"CurrentProjectName":"function","CurrentComponentName":"function","CurrentComponentCLSID":"function","CurrentProcedureName":"function","CurrentSourceFile":"function","ProcessorArchitecture":"function","CompilerVersion":"function"}},
{"name":"Constants","kind":"module","members":{"vbNewLine":"const","vbCrLf":"const","vbCr":"const","vbLf":"const","vbBack":"const","vbFormFeed":"const","vbTab":"const","vbVerticalTab":"const","vbNullChar":"const","vbNullString":"const","vbObjectError":"const","vbNullPtr":"const"}},
{"name":"VbAppWinStyle","kind":"enum","in":"Constants","values":["vbHide","vbNormalFocus","vbMinimizedFocus","vbMaximizedFocus","vbNormalNoFocus","vbMinimizedNoFocus"]},
{"name":"VbCalendar","kind":"enum","in":"Constants","values":["vbCalGreg","vbCalHijri"]},
{"name":"VbCallType","kind":"enum","in":"Constants","values":["vbMethod","vbGet","vbLet","vbSet"]},
{"name":"VbCompareMethod","kind":"enum","in":"Constants","values":["vbBinaryCompare","vbTextCompare","vbDatabaseCompare"]},
{"name":"VbDateTimeFormat","kind":"enum","in":"Constants","values":["vbGeneralDate","vbLongDate","vbShortDate","vbLongTime","vbShortTime"]},
{"name":"VbDayOfWeek","kind":"enum","in":"Constants","values":["vbUseSystemDayOfWeek","vbSunday","vbMonday","vbTuesday","vbWednesday","vbThursday","vbFriday","vbSaturday"]},
{"name":"VbFileAttribute","kind":"enum","in":"Constants","values":["vbNormal","vbReadOnly","vbHidden","VbSystem","vbVolume","vbDirectory","vbArchive","vbAlias"]},
{"name":"VbFirstWeekOfYear","kind":"enum","in":"Constants","values":["vbUseSystem","vbFirstJan1","vbFirstFourDays","vbFirstFullWeek"]},
{"name":"VbIMEStatus","kind":"enum","in":"Constants","values":["vbIMENoOp","vbIMEModeNoControl","vbIMEOn","vbIMEModeOn","vbIMEOff","vbIMEModeOff","vbIMEDisable","vbIMEModeDisable","vbIMEHiragana","vbIMEModeHiragana","vbIMEKatakanaDbl","vbIMEModeKatakana","vbIMEKatakanaSng","vbIMEModeKatakanaHalf","vbIMEAlphaDbl","vbIMEModeAlphaFull","vbIMEAlphaSng","vbIMEModeAlpha","vbIMEModeHangulFull","vbIMEModeHangul"]},
{"name":"VbMsgBoxResult","kind":"enum","in":"Constants","values":["vbOK","vbCancel","vbAbort","vbRetry","vbIgnore","vbYes","vbNo","vbTryAgain","vbContinue"]},
{"name":"VbMsgBoxStyle","kind":"enum","in":"Constants","values":["vbApplicationModal","vbDefaultButton1","vbOKOnly","vbOKCancel","vbAbortRetryIgnore","vbYesNoCancel","vbYesNo","vbRetryCancel","vbCancelTryAgainContinue","vbCritical","vbQuestion","vbInformation","vbExclamation","vbDefaultButton2","vbDefaultButton3","vbDefaultButton4","vbSystemModal","vbMsgBoxHelpButton","vbMsgBoxSetForeground","vbMsgBoxRight","vbMsgBoxRtlReading"]},
{"name":"VbStrConv","kind":"enum","in":"Constants","values":["vbUpperCase","vbLowerCase","vbProperCase","vbWide","vbNarrow","vbKatakana","vbHiragana","vbUnicode","vbFromUnicode","vbUTF8","vbFromUTF8"]},
{"name":"VbTriState","kind":"enum","in":"Constants","values":["vbTrue","vbFalse","vbUseDefault"]},
{"name":"VbVarType","kind":"enum","in":"Constants","values":["vbEmpty","vbNull","vbInteger","vbLong","vbSingle","vbDouble","vbCurrency","vbDate","vbString","vbObject","vbError","vbBoolean","vbVariant","vbDataObject","vbDecimal","vbByte","vbLongLong","vbUserDefinedType","vbArray"]},
{"name":"VbArchitecture","kind":"enum","in":"Constants","values":["vbArchWin32","vbArchWin64"]},
{"name":"Conversion","kind":"module","members":{"Nz":"function","MacID":"function","Error$":"function","Error":"function","CVErr":"function","Fix":"function","Int":"function","Hex$":"function","Hex":"function","Oct$":"function","Oct":"function","Str$":"function","Str":"function","Val":"function","ValDec":"function","CVDate":"function","CBool":"function","CByte":"function","CCur":"function","CDate":"function","CDbl":"function","CDec":"function","CInt":"function","CLng":"function","CLngLng":"function","CLngPtr":"function","CSng":"function","CStr":"function","CVar":"function","CType":"function"}},
{"name":"DateTime","kind":"module","members":{"Calendar":"property","Date$":"property","Date":"property","Time$":"property","Time":"property","Timer":"property","Now":"property","DateDiff":"function","Hour":"function","Day":"function","Minute":"function","Month":"function","Second":"function","Weekday":"function","Year":"function","TimeValue":"function","DateValue":"function","TimeSerial":"function","DateSerial":"function","DateAdd":"function","DatePart":"function"}},
{"name":"_ErrObject","kind":"interface","members":{"Number":"property","Source":"property","Description":"property","HelpFile":"property","HelpContext":"property","Raise":"sub","Clear":"sub","LastDllError":"property","LastHresult":"property","ReturnHResult":"property"}},
{"name":"ErrObject","kind":"coclass","default":"_ErrObject"},
{"name":"ITbExpression","kind":"interface","members":{"Evaluate":"function"}},
{"name":"ITbCustomBinder","kind":"interface","members":{"Bind":"function"}},
{"name":"ITbExpressionService","kind":"interface","members":{"Compile":"function","AddStdLibraryBinder":"sub","AddCustomBinderObject":"sub","AddCustomBinder":"sub"}},
{"name":"ExpressionEngineBinderFlags","kind":"enum","in":"ITbExpressionService","values":["IsAppObject"]},
{"name":"TbExpressionService","kind":"coclass","default":"ITbExpressionService"},
{"name":"FileSystem","kind":"module","members":{"_FileRename":"sub","FileAttr":"function","EOF":"function","FreeFile":"function","LOF":"function","Reset":"sub","Loc":"function","Seek":"function","FileDateTime":"function","FileLen":"function","SetAttr":"function","GetAttr":"function","MkDir":"sub","RmDir":"sub","ChDir":"sub","ChDrive":"sub","CurDir$":"function","CurDir":"function","FileCopy":"sub","Kill":"sub","Dir":"function"},"hiddenMembers":["_FileRename"]},
{"name":"Financial","kind":"module","members":{"DDB":"function","FV":"function","Pmt":"function","IPmt":"function","PPmt":"function","SYD":"function","SLN":"function","PV":"function","IRR":"function","Rate":"function","NPV":"function","MIRR":"function","NPer":"function"}},
{"name":"Information","kind":"module","members":{"Erl":"function","IMEStatus":"function","IsMissing":"function","IsDate":"function","IsNumeric":"function","IsError":"function","IsArray":"function","IsArrayInitialized":"function","IsEmpty":"function","IsNull":"function","IsObject":"function","VarType":"function","TypeName":"function","TranslateColor":"function","RGB":"function","RGBA":"function","RGB_R":"function","RGB_G":"function","RGB_B":"function","RGBA_A":"function","QBColor":"function","LBound":"function","UBound":"function","Err":"property"}},
{"name":"Interaction","kind":"module","members":{"MsgBox":"function","InputBox":"function","IIf":"function","DoEvents":"function","Command$":"function","Command":"function","Choose":"function","GetObject":"function","CallByName":"function","CallByDispId":"function","RaiseEventByName":"function","RaiseEventByName2":"function","RaiseEventByNameAndIID":"function","RaiseEventByNameAndIID2":"function","GetSetting":"function","DeleteSetting":"sub","SaveSetting":"sub","GetAllSettings":"function","Beep":"sub","SendKeys":"sub","Environ$":"function","Environ":"function","Switch":"function","Partition":"function","MacScript":"function","Shell":"function","AppActivate":"sub","CreateObject":"function","If":"function"}},
{"name":"Math","kind":"module","members":{"Atn":"function","Cos":"function","Sin":"function","Sqr":"function","Tan":"function","Exp":"function","Log":"function","Sgn":"function","Abs":"function","Round":"function","Rnd":"function","Randomize":"sub"}},
{"name":"Strings","kind":"module","members":{"Asc":"function","AscW":"function","AscB":"function","Chr$":"function","Chr":"function","ChrW$":"function","ChrW":"function","ChrB$":"function","ChrB":"function","Mid$":"function","Mid":"function","MidB$":"function","MidB":"function","Left$":"function","Left":"function","LeftB$":"function","LeftB":"function","Right$":"function","Right":"function","RightB$":"function","RightB":"function","Space$":"function","Space":"function","String$":"function","String":"function","LTrim$":"function","LTrim":"function","RTrim$":"function","RTrim":"function","Trim$":"function","Trim":"function","MonthName":"function","WeekdayName":"function","StrReverse":"function","LCase$":"function","LCase":"function","UCase$":"function","UCase":"function","Format$":"function","Format":"function","FormatCurrency":"function","FormatNumber":"function","FormatPercent":"function","FormatDateTime":"function","StrComp":"function","StrConv":"function","Join":"function","Replace":"function","InStr$":"function","InStr":"function","InStrB":"function","InStrRev":"function","Filter":"function","Split":"function","Len$":"function","Len":"function","LenB$":"function","LenB":"function"}},
{"name":"TextEncodingConstants","kind":"module","members":{"default_system_ansi":"const","utf_7":"const","utf_7_bom":"const","utf_8":"const","utf_8_bom":"const","utf_16":"const","utf_16_bom":"const","us_ascii":"const","koi8_u":"const","koi8_r":"const","big5":"const","iso_8859_1_latin1":"const","iso_8859_2_latin2":"const","iso_8859_3_latin3":"const","iso_8859_4_latin4":"const","iso_8859_5_cyrillic":"const","iso_8859_6_arabic":"const","iso_8859_7_greek":"const","iso_8859_8_hebrew":"const","iso_8859_9_latin5_turkish":"const","iso_8859_10_latin6_nordic":"const","iso_8859_11_thai":"const","iso_8859_13_latin8_baltic":"const","iso_8859_14_latin8_celtic":"const","iso_8859_15_latin9_euro":"const","iso_8859_16_latin10_balkan":"const","windows_1250_central_europe":"const","windows_1251_cyrillic":"const","windows_1252_western":"const","windows_1253_greek":"const","windows_1254_turkish":"const","windows_1255_hebrew":"const","windows_1256_arabic":"const","windows_1257_baltic":"const","windows_1258_vietnamese":"const","ibm_850_western_europe":"const","ibm_852_central_and_eastern_europe":"const","ibm_855_cyrillic":"const","ibm_856_hebrew":"const","ibm_857_turkish":"const","ibm_858_western_europe":"const","ibm_860_portuguese":"const","ibm_861_icelandic":"const","ibm_862_hebrew":"const","ibm_863_canadian":"const","ibm_865_danish":"const","ibm_866_cyrillic":"const","ibm_869_greek":"const","ibm_932_japanese":"const","ibm_949_korean":"const"},"hiddenMembers":["default_system_ansi","utf_7","utf_7_bom","utf_8","utf_8_bom","utf_16","utf_16_bom","us_ascii","koi8_u","koi8_r","big5","iso_8859_1_latin1","iso_8859_2_latin2","iso_8859_3_latin3","iso_8859_4_latin4","iso_8859_5_cyrillic","iso_8859_6_arabic","iso_8859_7_greek","iso_8859_8_hebrew","iso_8859_9_latin5_turkish","iso_8859_10_latin6_nordic","iso_8859_11_thai","iso_8859_13_latin8_baltic","iso_8859_14_latin8_celtic","iso_8859_15_latin9_euro","iso_8859_16_latin10_balkan","windows_1250_central_europe","windows_1251_cyrillic","windows_1252_western","windows_1253_greek","windows_1254_turkish","windows_1255_hebrew","windows_1256_arabic","windows_1257_baltic","windows_1258_vietnamese","ibm_850_western_europe","ibm_852_central_and_eastern_europe","ibm_855_cyrillic","ibm_856_hebrew","ibm_857_turkish","ibm_858_western_europe","ibm_860_portuguese","ibm_861_icelandic","ibm_862_hebrew","ibm_863_canadian","ibm_865_danish","ibm_866_cyrillic","ibm_869_greek","ibm_932_japanese","ibm_949_korean"]},
{"name":"TestGeneric","kind":"class","members":{"Something":"sub"}},
{"name":"_HiddenModule","kind":"module","hidden":true,"members":{"PictureToByteArray":"function","CreateGUID":"function","GetMem1":"sub","GetMem2":"sub","GetMem4":"sub","GetMem8":"sub","GetMemPtr":"sub","PutMem1":"sub","PutMem2":"sub","PutMem4":"sub","PutMem8":"sub","PutMemPtr":"sub","vbaObjAddref":"sub","vbaObjRelease":"sub","vbaObjSetAddref":"function","vbaObjSet":"function","vbaRefVarAry":"function","vbaAryMove":"sub","CreateStdPictureFromHandle":"function","RuntimeGetBitmapBits":"sub","RuntimeSetBitmapBits":"sub","RuntimeConvertBitmapToIcon":"sub","RuntimeConvertBitmap32ToIcon":"sub","RuntimeCreateScaledPicture":"function","RuntimeCreatePremultipliedRGBABitmap32bpp":"function","RuntimePrinterGetFonts":"sub","RuntimePatchGetClipBoxForHdc":"sub","RuntimeCreateExpressionService":"function","RuntimeCreateResampledBitmap":"function","Eval":"function","vbaCopyBytes":"function","vbaCopyBytesZero":"function","AllocMem":"function","FreeMem":"sub","SetThreadGlobalErrorTrap":"sub","SuppressRaiseEvents":"sub","DontInitNextCreatedCOMInstance":"sub","ExclusivitySectionEnter":"sub","ExclusivitySectionLeave":"sub","ClipboardGetTextInternal":"function","ClipboardSetTextInternal":"sub","LoadPictureInternal":"function","LoadResDataInternal":"function","CreateClassPropertyBagUCRead2":"function","CreateClassPropertyBagUCWrite2":"function","CreateClassPropertyBagUCRead":"function","CreateClassPropertyBagUCWrite":"function","GetPropertyBagUCWriterContents":"function","HasExclusiveDefaultDispatchValue":"function","ShowPropertyPages":"sub","SynchronizeWindowSizeWithParent":"sub","CreateCoreWebView2Environment":"sub","BringWindowToFront":"sub","CrashDAP":"sub","CrashLSP":"sub","CrashFS":"sub","CrashRoot":"sub","ObjPtr":"function","StrPtr":"function","ConvertIconToBitmap":"function","Input$":"function","Input":"function","InputB$":"function","InputB":"function","Width":"sub","_FileWidth":"sub","_InStrBreak":"function","CreateCollectionObject":"function","Array":"function","Int3Breakpoint":"sub","Emit":"sub","EmitAny":"sub","GetDeclaredTypeProgId":"function","GetDeclaredTypeIid":"function","GetDeclaredTypeEventIid":"function","GetDeclaredTypeClsid":"function","GetDeclaredMinEnumValue":"function","GetDeclaredMaxEnumValue":"function","StackOffset":"function","StackArgsSize":"function","UnprotectedAccess":"function","CheckBadFPUInstruction":"sub","VarPtr":"function","InternalDebugHoverEval":"function","GetErrNumber":"function","LetErrNumber":"sub","GetErrSource":"function","LetErrSource":"sub","GetErrDescription":"function","LetErrDescription":"sub","GetErrHelpFile":"function","LetErrHelpFile":"sub","GetErrHelpContext":"function","LetErrHelpContext":"sub","ErrRaise":"sub","ErrClear":"sub","GetErrLastDllError":"function","LetErrLastDllError":"sub","GetErrLastHresult":"function","GetErrReturnHResult":"function","LetErrReturnHResult":"sub","EnsureContainerIsLoaded":"sub","ResetFirstMethodAccessFlag":"sub","MemZero":"sub","GetClasInstanceAxMiscFlags":"sub","GetClassInstanceSerializer":"function","GetClassInstanceRefCount":"function","RuntimeGetChildControlsList":"function","RuntimeCreateGetMessageHook":"function","vbaCastObj":"function","InterlockedExchangePointer":"function","InterlockedCompareExchangePointer":"function","InterlockedCompareExchange32":"function","InterlockedCompareExchange64":"function","InterlockedIncrement32":"function","InterlockedDecrement32":"function","GetShortcutTextByEnum":"function","RuntimeSetWithEvents":"function","RuntimeReadFileDataBase64":"function","RuntimeRaisePropertyNotifySinkChangedEvent":"sub","RuntimeGetPropertyPageClsidByName":"sub","RuntimeMapDispIdToPropertyPageClsid":"function","RuntimeGetTypeInfoPropertyList":"function","RuntimeCreateRecurseProtectedObjectWrapper":"function","GetInheritedOwner":"function","SetClassOverrideDispatch":"sub","RuntimeSharedMemCreateHost":"function","RuntimeSharedMemCreateClient":"function","RuntimeSharedMemSendMessage":"sub","RuntimeSharedMemReceiveMessage":"function","RuntimeFusionRegisterInterface":"sub","RuntimeFusionRegisterClass":"sub","RuntimeFusionCreateObject":"function","RuntimeFusionCreatePortalHost":"function","RuntimeFusionCreatePortalClient":"function","RuntimeFusionSetChannelNotificationCallback":"sub","RuntimeFusionCreateLinkedChannel":"sub","RuntimeFusionJoinLinkedChannel":"sub","RuntimeFusionProcessMessage":"sub","RuntimeFusionGetThreadID":"function","RuntimeSetActiveXInitializationOverride":"sub","RuntimeShellAutoExit":"function","RuntimeGetFusionActiveXOverrides":"sub","RuntimeShowAxAboutBox":"sub","RuntimeAxGetMiscStatus":"function","RuntimeAxGetSnapshotBits":"function","RuntimePaintBits":"sub","RuntimeFusionGetExePath":"function","RuntimeFusionStartProcess":"sub","InterlockedIncrement64":"function","InterlockedDecrement64":"function","RuntimeOverrideFusionIpcNoWait":"sub","RuntimeFusionCancelLinkedChannel":"sub","RuntimeBase64Encode":"function","RuntimeFusionCreateExplicitLinkedChannelCallback":"sub","RuntimeCreateSharedMemData":"function","RuntimeOpenSharedMemData":"function","RuntimeAccessSharedMemData":"function","RuntimeUnaccessSharedMemData":"sub","RuntimeCloseSharedMemData":"sub","RuntimeFusionInteruptPendingIPC_UIThread":"function","RuntimeFusionSetPortalTimeout":"sub","RuntimeFusionClosePortal":"sub","RuntimeBase64Decode":"function","RuntimeGetProjectConditionalCompilationArgValue":"function"},"hiddenMembers":["SuppressRaiseEvents","DontInitNextCreatedCOMInstance","ExclusivitySectionEnter","ExclusivitySectionLeave","ClipboardGetTextInternal","ClipboardSetTextInternal","LoadPictureInternal","LoadResDataInternal","CreateClassPropertyBagUCRead2","CreateClassPropertyBagUCWrite2","CreateClassPropertyBagUCRead","CreateClassPropertyBagUCWrite","GetPropertyBagUCWriterContents","HasExclusiveDefaultDispatchValue","ShowPropertyPages","SynchronizeWindowSizeWithParent","CreateCoreWebView2Environment","BringWindowToFront","CrashDAP","CrashLSP","CrashFS","CrashRoot","_FileWidth","_InStrBreak","CreateCollectionObject","Int3Breakpoint","CheckBadFPUInstruction","InternalDebugHoverEval","GetErrNumber","LetErrNumber","GetErrSource","LetErrSource","GetErrDescription","LetErrDescription","GetErrHelpFile","LetErrHelpFile","GetErrHelpContext","LetErrHelpContext","ErrRaise","ErrClear","GetErrLastDllError","LetErrLastDllError","GetErrLastHresult","GetErrReturnHResult","LetErrReturnHResult","EnsureContainerIsLoaded","ResetFirstMethodAccessFlag","MemZero","GetClasInstanceAxMiscFlags","GetClassInstanceSerializer","GetClassInstanceRefCount","SetClassOverrideDispatch","RuntimeSharedMemCreateHost","RuntimeSharedMemCreateClient","RuntimeSharedMemSendMessage","RuntimeSharedMemReceiveMessage","RuntimeFusionRegisterInterface","RuntimeFusionRegisterClass","RuntimeFusionCreateObject","RuntimeFusionCreatePortalHost","RuntimeFusionCreatePortalClient","RuntimeFusionSetChannelNotificationCallback","RuntimeFusionCreateLinkedChannel","RuntimeFusionJoinLinkedChannel","RuntimeFusionProcessMessage","RuntimeFusionGetThreadID","RuntimeShellAutoExit","RuntimeGetFusionActiveXOverrides","RuntimeShowAxAboutBox","RuntimeAxGetMiscStatus","RuntimeAxGetSnapshotBits","RuntimePaintBits","RuntimeFusionGetExePath","RuntimeFusionStartProcess"]},
{"name":"IGetMessageHook","kind":"interface","members":{"RegisterMessage":"sub","Start":"sub","Stop":"sub"}},
{"name":"EnumDescendantsModeFlags","kind":"enum","in":"IGetMessageHook","values":["ExactWindow","AllDescendants","DirectChildren"]},
{"name":"GetMessageHookHelper","kind":"module","members":{"GetMessageHandler":"delegate"}},
{"name":"HookPOINT","kind":"type","in":"GetMessageHookHelper","fields":["x","y"]},
{"name":"HookMSG","kind":"type","in":"GetMessageHookHelper","fields":["hwnd","message","wParam","lParam","time","pt"]}
]
},
"VBRUN": {
"exports": ["VBRUN"],
"types": [
{"name":"AmbientProperties","kind":"interface","members":{"BackColor":"property","DisplayName":"property","Font":"property","ForeColor":"property","LocaleID":"property","MessageReflect":"property","ScaleUnits":"property","TextAlign":"property","UserMode":"property","UIDead":"property","ShowGrabHandles":"property","ShowHatching":"property","DisplayAsDefault":"property","SupportsMnemonics":"property","Palette":"property","RightToLeft":"property"}},
{"name":"AsyncProperty","kind":"interface","members":{"Value":"property","AsyncType":"property","PropertyName":"property","Target":"property","BytesRead":"property","BytesMax":"property","Status":"property","StatusCode":"property"}},
{"name":"Constants","kind":"module","members":{"CreatePropertyBagObject":"function"},"hiddenMembers":["CreatePropertyBagObject"]},
{"name":"AspectTypeConstants","kind":"enum","in":"Constants","values":["vbContent","vbThumbnail","vbIcon","vbDocPrint"]},
{"name":"StorageTypeContants","kind":"enum","in":"Constants","values":["vbHGlobal","vbFile","vbIStream","vbIStorage","vbGDI","vbMetaFile","vbEnhancedMetaFile"]},
{"name":"KeyCodeConstants","kind":"enum","in":"Constants","values":["vbKeyLButton","vbKeyRButton","vbKeyCancel","vbKeyMButton","vbKeyBack","vbKeyTab","vbKeyClear","vbKeyReturn","vbKeyShift","vbKeyControl","vbKeyMenu","vbKeyPause","vbKeyCapital","vbKeyEscape","vbKeySpace","vbKeyPageUp","vbKeyPageDown","vbKeyEnd","vbKeyHome","vbKeyLeft","vbKeyUp","vbKeyRight","vbKeyDown","vbKeySelect","vbKeyPrint","vbKeyExecute","vbKeySnapshot","vbKeyInsert","vbKeyDelete","vbKeyHelp","vbKeyNumlock","vbKeyScrollLock","vbKeyA","vbKeyB","vbKeyC","vbKeyD","vbKeyE","vbKeyF","vbKeyG","vbKeyH","vbKeyI","vbKeyJ","vbKeyK","vbKeyL","vbKeyM","vbKeyN","vbKeyO","vbKeyP","vbKeyQ","vbKeyR","vbKeyS","vbKeyT","vbKeyU","vbKeyV","vbKeyW","vbKeyX","vbKeyY","vbKeyZ","vbKey0","vbKey1","vbKey2","vbKey3","vbKey4","vbKey5","vbKey6","vbKey7","vbKey8","vbKey9","vbKeyNumpad0","vbKeyNumpad1","vbKeyNumpad2","vbKeyNumpad3","vbKeyNumpad4","vbKeyNumpad5","vbKeyNumpad6","vbKeyNumpad7","vbKeyNumpad8","vbKeyNumpad9","vbKeyMultiply","vbKeyAdd","vbKeySeparator","vbKeySubtract","vbKeyDecimal","vbKeyDivide","vbKeyF1","vbKeyF2","vbKeyF3","vbKeyF4","vbKeyF5","vbKeyF6","vbKeyF7","vbKeyF8","vbKeyF9","vbKeyF10","vbKeyF11","vbKeyF12","vbKeyF13","vbKeyF14","vbKeyF15","vbKeyF16"]},
{"name":"ColorConstants","kind":"enum","in":"Constants","values":["vbBlack","vbBlue","vbCyan","vbGreen","vbMagenta","vbRed","vbWhite","vbYellow"]},
{"name":"SystemColorConstants","kind":"enum","in":"Constants","values":["vbScrollBars","vbDesktop","vbActiveTitleBar","vbInactiveTitleBar","vbMenuBar","vbWindowBackground","vbWindowFrame","vbMenuText","vbWindowText","vbTitleBarText","vbActiveTitleBarText","vbActiveBorder","vbInactiveBorder","vbApplicationWorkspace","vbHighlight","vbHighlightText","vbButtonFace","vbButtonShadow","vbGrayText","vbButtonText","vbInactiveCaptionText","vbInactiveTitleBarText","vb3DHighlight","vb3DDKShadow","vb3DLight","vb3DFace","vb3Dshadow","vbInfoText","vbInfoBackground","vbHotTrackText","vbActiveTitleBarGradient","vbInactiveTitleBarGradient","vbMenuHighlight","vbMenuBarFlat"]},
{"name":"FormShowConstants","kind":"enum","in":"Constants","values":["vbModeless","vbModal"]},
{"name":"LoadResConstants","kind":"enum","in":"Constants","values":["vbResBitmap","vbResIcon","vbResCursor","vbResBitmapFromIcon"]},
{"name":"MousePointerConstants","kind":"enum","in":"Constants","values":["vbDefault","vbArrow","vbCrosshair","vbIbeam","vbIconPointer","vbSizePointer","vbSizeNESW","vbSizeNS","vbSizeNWSE","vbSizeWE","vbUpArrow","vbHourglass","vbNoDrop","vbArrowHourglass","vbArrowQuestion","vbSizeAll","vbHand","vbPin","vbPerson","vbArrowCD","vbScrollN","vbScrollS","vbScrollE","vbScrollW","vbScrollNS","vbScrollWE","vbScrollNW","vbScrollNE","vbScrollSW","vbScrollSE","vbScrollAll","vbPen","vbCustom"]},
{"name":"MouseButtonConstants","kind":"enum","in":"Constants","values":["vbLeftButton","vbRightButton","vbMiddleButton"]},
{"name":"ClipboardConstants","kind":"enum","in":"Constants","values":["vbCFText","vbCFBitmap","vbCFMetafile","vbCFDIB","vbCFPalette","vbCFUnicodeText","vbCFEMetafile","vbCFFiles","vbCFLink","vbCFRTF"]},
{"name":"VerticalAlignmentConstants","kind":"enum","in":"Constants","values":["vbVerticalAlignTop","vbVerticalAlignMiddle","vbVerticalAlignBottom"]},
{"name":"AlignmentConstants","kind":"enum","in":"Constants","values":["vbLeftJustify","vbRightJustify","vbCenter"]},
{"name":"AlignmentConstantsNoCenter","kind":"enum","in":"Constants","values":["tbLeftJustify","tbRightJustify"]},
{"name":"CheckBoxConstants","kind":"enum","in":"Constants","values":["vbUnchecked","vbChecked","vbGrayed"]},
{"name":"ListBoxConstants","kind":"enum","in":"Constants","values":["vbListBoxStandard","vbListBoxCheckbox","vbListBoxColorSwatch"]},
{"name":"MultiSelectConstants","kind":"enum","in":"Constants","values":["vbMultiSelectNone","vbMultiSelectSimple","vbMultiSelectExtended"]},
{"name":"ComboBoxConstants","kind":"enum","in":"Constants","values":["vbComboDropdown","vbComboSimple","vbComboDropdownList"]},
{"name":"ControlBorderStyleConstants","kind":"enum","in":"Constants","values":["vbNoBorder","vbFixedSingleBorder"]},
{"name":"ControlBorderStyleConstantsCustom","kind":"enum","in":"Constants","values":["vbNoBorder","vbFixedSingleBorder","vbCustomBorder"]},
{"name":"FormBorderStyleConstants","kind":"enum","in":"Constants","values":["vbBSNone","vbFixedSingle","vbSizable","vbFixedDialog","vbFixedToolWindow","vbSizableToolWindow","vbSizableNoTitleBar","vbSizableToolWindowNoTitleBar"]},
{"name":"ScrollBarConstants","kind":"enum","in":"Constants","values":["vbSBNone","vbHorizontal","vbVertical","vbBoth"]},
{"name":"ShiftConstants","kind":"enum","in":"Constants","values":["vbShiftMask","vbCtrlMask","vbAltMask"]},
{"name":"StartUpPositionConstants","kind":"enum","in":"Constants","values":["vbStartUpManual","vbStartUpOwner","vbStartUpScreen","vbStartUpWindowsDefault"]},
{"name":"FormWindowStateConstants","kind":"enum","in":"Constants","values":["vbNormal","vbMinimized","vbMaximized"]},
{"name":"DockModeConstants","kind":"enum","in":"Constants","values":["vbDockNone","vbDockLeft","vbDockTop","vbDockRight","vbDockBottom","vbDockFill"]},
{"name":"ControlTypeConstants","kind":"enum","in":"Constants","values":["vbCommandButton","vbListBox","vbComboBox","vbOptionButton","vbCheckBox","vbFrame","vbLabel","vbPictureBox","vbTextBox","vbTimer","vbUserControl","vbHScrollBar","vbVScrollBar","vbImage","vbDirListBox","vbDriveListBox","vbFileListBox","vbForm","vbWebView2","vbActiveXExtender","vbShape","vbProgressBar","vbTreeView","vbOLEControl","vbDataControl","vbMenuControl","vbSlider","vbUpDown","vbDTPicker","vbMonthView","vbListView","vbImageList","vbPropertyPage","vbHwndControl","vbReport","vbCheckMark","vbFusion","vbCefBrowser"]},
{"name":"AppearanceConstants","kind":"enum","in":"Constants","values":["vbAppearFlat","vbAppear3d"]},
{"name":"RasterOpConstants","kind":"enum","in":"Constants","values":["vbDstInvert","vbMergeCopy","vbMergePaint","vbNotSrcCopy","vbNotSrcErase","vbPatCopy","vbPatInvert","vbPatPaint","vbSrcAnd","vbSrcCopy","vbSrcErase","vbSrcInvert","vbSrcPaint"]},
{"name":"ApplicationStartConstants","kind":"enum","in":"Constants","values":["vbSModeAutomation","vbSModeStandalone"]},
{"name":"AsyncReadConstants","kind":"enum","in":"Constants","values":["vbAsyncReadForceUpdate","vbAsyncReadGetFromCacheIfNetFail","vbAsyncReadOfflineOperation","vbAsyncReadResynchronize","vbAsyncReadSynchronousDownload"]},
{"name":"AsyncStatusCodeConstants","kind":"enum","in":"Constants","values":["vbAsyncStatusCodeBeginDownloadData","vbAsyncStatusCodeBeginSyncOperation","vbAsyncStatusCodeCacheFileNameAvailable","vbAsyncStatusCodeConnecting","vbAsyncStatusCodeDownloadingData","vbAsyncStatusCodeEndDownloadData","vbAsyncStatusCodeEndSyncOperation","vbAsyncStatusCodeError","vbAsyncStatusCodeFindingResource","vbAsyncStatusCodeMIMETypeAvailable","vbAsyncStatusCodeRedirecting","vbAsyncStatusCodeSendingRequest","vbAsyncStatusCodeUsingCachedCopy"]},
{"name":"AsyncTypeConstants","kind":"enum","in":"Constants","values":["vbAsyncTypeByteArray","vbAsyncTypeFile","vbAsyncTypePicture"]},
{"name":"BorderStyleConstants","kind":"enum","in":"Constants","values":["vbBSDash","vbBSDashDot","vbBSDashDotDot","vbBSDot","vbBSInsideSolid","vbBSSolid","vbTransparent"]},
{"name":"ButtonConstants","kind":"enum","in":"Constants","values":["vbButtonGraphical","vbButtonStandard"]},
{"name":"DataBOFconstants","kind":"enum","in":"Constants","values":["vbBOF","vbMoveFirst"]},
{"name":"DataEOFConstants","kind":"enum","in":"Constants","values":["vbAddNew","vbEOF","vbMoveLast"]},
{"name":"DataErrorConstants","kind":"enum","in":"Constants","values":["vbDataErrContinue","vbDataErrDisplay"]},
{"name":"DataValidateConstants","kind":"enum","in":"Constants","values":["vbDataActionAddNew","vbDataActionBookmark","vbDataActionCancel","vbDataActionClose","vbDataActionDelete","vbDataActionFind","vbDataActionMoveFirst","vbDataActionMoveLast","vbDataActionMoveNext","vbDataActionMovePrevious","vbDataActionUnload","vbDataActionUpdate"]},
{"name":"DefaultCursorTypeConstants","kind":"enum","in":"Constants","values":["vbUseDefaultCursor","vbUseODBCCursor","vbUseServersideCursor"]},
{"name":"DragConstants","kind":"enum","in":"Constants","values":["vbBeginDrag","vbCancel","vbEndDrag"]},
{"name":"DragModeConstants","kind":"enum","in":"Constants","values":["vbAutomatic","vbManual"]},
{"name":"DragOverConstants","kind":"enum","in":"Constants","values":["vbEnter","vbLeave","vbOver"]},
{"name":"DrawModeConstants","kind":"enum","in":"Constants","values":["vbBlackness","vbCopyPen","vbInvert","vbMaskNotPen","vbMaskPen","vbMaskPenNot","vbMergeNotPen","vbMergePen","vbMergePenNot","vbNop","vbNotCopyPen","vbNotMaskPen","vbNotMergePen","vbNotXorPen","vbWhiteness","vbXorPen"]},
{"name":"DrawStyleConstants","kind":"enum","in":"Constants","values":["vbDash","vbDashDot","vbDashDotDot","vbDot","vbInsideSolid","vbInvisible","vbSolid"]},
{"name":"FillStyleConstants","kind":"enum","in":"Constants","values":["vbCross","vbDiagonalCross","vbDownwardDiagonal","vbFSSolid","vbFSTransparent","vbHorizontalLine","vbUpwardDiagonal","vbVerticalLine"]},
{"name":"FillStyleConstantsEx","kind":"enum","in":"Constants","values":["vbCross","vbDiagonalCross","vbDownwardDiagonal","vbFSSolid","vbFSTransparent","vbHorizontalLine","vbUpwardDiagonal","vbVerticalLine","vbGradientNS","vbGradientWE"]},
{"name":"FormArrangeConstants","kind":"enum","in":"Constants","values":["vbArrangeIcons","vbCascade","vbTileHorizontal","vbTileVertical"]},
{"name":"HitResultConstants","kind":"enum","in":"Constants","values":["vbHitResultClose","vbHitResultHit","vbHitResultOutside","vbHitResultTransparent"]},
{"name":"MenuAccelConstants","kind":"enum","in":"Constants","values":["vbMenuAccelCtrlA","vbMenuAccelCtrlB","vbMenuAccelCtrlC","vbMenuAccelCtrlD","vbMenuAccelCtrlE","vbMenuAccelCtrlF","vbMenuAccelCtrlG","vbMenuAccelCtrlH","vbMenuAccelCtrlI","vbMenuAccelCtrlJ","vbMenuAccelCtrlK","vbMenuAccelCtrlL","vbMenuAccelCtrlM","vbMenuAccelCtrlN","vbMenuAccelCtrlO","vbMenuAccelCtrlP","vbMenuAccelCtrlQ","vbMenuAccelCtrlR","vbMenuAccelCtrlS","vbMenuAccelCtrlT","vbMenuAccelCtrlU","vbMenuAccelCtrlV","vbMenuAccelCtrlW","vbMenuAccelCtrlX","vbMenuAccelCtrlY","vbMenuAccelCtrlZ","vbMenuAccelF1","vbMenuAccelF2","vbMenuAccelF3","vbMenuAccelF4","vbMenuAccelF5","vbMenuAccelF6","vbMenuAccelF7","vbMenuAccelF8","vbMenuAccelF9","vbMenuAccelF11","vbMenuAccelF12","vbMenuAccelCtrlF1","vbMenuAccelCtrlF2","vbMenuAccelCtrlF3","vbMenuAccelCtrlF4","vbMenuAccelCtrlF5","vbMenuAccelCtrlF6","vbMenuAccelCtrlF7","vbMenuAccelCtrlF8","vbMenuAccelCtrlF9","vbMenuAccelCtrlF11","vbMenuAccelCtrlF12","vbMenuAccelShiftF1","vbMenuAccelShfitF2","vbMenuAccelShiftF3","vbMenuAccelShiftF4","vbMenuAccelShiftF5","vbMenuAccelShiftF6","vbMenuAccelShiftF7","vbMenuAccelShiftF8","vbMenuAccelShiftF9","vbMenuAccelShiftF11","vbMenuAccelShiftF12","vbMenuAccelShiftCtrlF1","vbMenuAccelShiftCtrlF2","vbMenuAccelShiftCtrlF3","vbMenuAccelShiftCtrlF4","vbMenuAccelShiftCtrlF5","vbMenuAccelShiftCtrlF6","vbMenuAccelShiftCtrlF7","vbMenuAccelShiftCtrlF8","vbMenuAccelShiftCtrlF9","vbMenuAccelShiftCtrlF11","vbMenuAccelShiftCtrlF12","vbMenuAccelCtrlIns","vbMenuAccelShiftIns","vbMenuAccelDel","vbMenuAccelShiftDel","vbMenuAccelAltBksp"]},
{"name":"MenuControlConstants","kind":"enum","in":"Constants","values":["vbPopupMenuLeftAlign","vbPopupMenuCenterAlign","vbPopupMenuRightAlign","vbPopupMenuLeftButton","vbPopupMenuRightButton"]},
{"name":"OldLinkModeConstants","kind":"enum","in":"Constants","values":["vbHot","vbServer","vbCold"]},
{"name":"OLEContainerActivateConstants","kind":"enum","in":"Constants","values":["vbOLE_ActivateManual","vbOLE_ActivateGetFocus","vbOLE_ActivateDoubleclick","vbOLE_ActivateAuto"]},
{"name":"OLEContainerDisplayTypeConstants","kind":"enum","in":"Constants","values":["vbOLE_DisplayContent","vbOLE_DisplayIcon"]},
{"name":"OLEContainerTypesAllowedConstants","kind":"enum","in":"Constants","values":["vbOLE_Linked","vbOLE_Embedded","vbOLE_Either"]},
{"name":"OLEContainerSizeModeConstants","kind":"enum","in":"Constants","values":["vbOLE_SizeClip","vbOLE_SizeStretch","vbOLE_SizeAutoSize","vbOLE_SizeZoom"]},
{"name":"OLEContainerUpdateOptionsConstants","kind":"enum","in":"Constants","values":["vbOLE_UpdateAutomatic","vbOLE_UpdateFrozen","vbOLE_UpdateManual"]},
{"name":"OLEContainerConstants","kind":"enum","in":"Constants","values":["vbOLELinked","vbOLEEmbedded","vbOLENone","vbOLEEither","vbOLEAutomatic","vbOLEFrozen","vbOLEManual","vbOLEActivateManual","vbOLEActivateGetFocus","vbOLEActivateDoubleclick","vbOLEActivateAuto","vbOLESizeClip","vbOLESizeStretch","vbOLESizeAutoSize","vbOLESizeZoom","vbOLEDisplayContent","vbOLEDisplayIcon","vbOLEChanged","vbOLESaved","vbOLEClosed","vbOLERenamed","vbOLEPrimary","vbOLEShow","vbOLEOpen","vbOLEHide","vbOLEUIActivate","vbOLEInPlaceActivate","vbOLEDiscardUndoState","vbOLEFlagGrayed","vbOLEFlagDisabled","vbOLEFlagChecked","vbOLEFlagSeparator","vbOLEMiscFlagMemStorage","vbOLEMiscFlagDisableInPlace"]},
{"name":"OLEDragConstants","kind":"enum","in":"Constants","values":["vbOLEDragManual","vbOLEDragAutomatic"]},
{"name":"OLEDropConstants","kind":"enum","in":"Constants","values":["vbOLEDropNone","vbOLEDropManual","vbOLEDropAutomatic"]},
{"name":"OLEDropEffectConstants","kind":"enum","in":"Constants","values":["vbDropEffectNone","vbDropEffectCopy","vbDropEffectMove","vbDropEffectLink","vbDropEffectScroll"]},
{"name":"DatabaseTypeConstants","kind":"enum","in":"Constants","values":["vbUseODBC","vbUseJet","vbUseACE"]},
{"name":"NegotiatePositionConstants","kind":"enum","in":"Constants","values":["vbNegotiatePositionNone","vbNegotiatePositionLeft","vbNegotiatePositionMiddle","vbNegotiatePositionRight"]},
{"name":"PaletteModeConstants","kind":"enum","in":"Constants","values":["vbPaletteModeHalftone","vbPaletteModeUseZOrder","vbPaletteModeCustom","vbPaletteModeContainer","vbPaletteModeNone","vbPaletteModeObject"]},
{"name":"ParentControlsType","kind":"enum","in":"Constants","values":["vbNoExtender","vbExtender"]},
{"name":"ShapeConstants","kind":"enum","in":"Constants","values":["vbShapeRectangle","vbShapeSquare","vbShapeOval","vbShapeCircle","vbShapeRoundedRectangle","vbShapeRoundedSquare","vbShapeStar","vbShapeArrowLeft","vbShapeArrowRight","vbShapeArrowUp","vbShapeArrowDown"]},
{"name":"PictureTypeConstants","kind":"enum","in":"Constants","values":["vbPicTypeNone","vbPicTypeBitmap","vbPicTypeMetafile","vbPicTypeIcon","vbPicTypeEMetafile"]},
{"name":"PrinterObjectConstants","kind":"enum","in":"Constants","values":["vbPRCMMonochrome","vbPRCMColor","vbPRDPSimplex","vbPRDPHorizontal","vbPRDPVertical","vbPRORPortrait","vbPRORLandscape","vbPRPQDraft","vbPRPQLow","vbPRPQMedium","vbPRPQHigh","vbPRBNUpper","vbPRBNLower","vbPRBNMiddle","vbPRBNManual","vbPRBNEnvelope","vbPRBNEnvManual","vbPRBNAuto","vbPRBNTractor","vbPRBNSmallFmt","vbPRBNLargeFmt","vbPRBNLargeCapacity","vbPRBNCassette","vbPRPSLetter","vbPRPSLetterSmall","vbPRPSTabloid","vbPRPSLedger","vbPRPSLegal","vbPRPSStatement","vbPRPSExecutive","vbPRPSA3","vbPRPSA4","vbPRPSA4Small","vbPRPSA5","vbPRPSB4","vbPRPSB5","vbPRPSFolio","vbPRPSQuarto","vbPRPS10x14","vbPRPS11x17","vbPRPSNote","vbPRPSEnv9","vbPRPSEnv10","vbPRPSEnv11","vbPRPSEnv12","vbPRPSEnv14","vbPRPSCSheet","vbPRPSDSheet","vbPRPSESheet","vbPRPSEnvDL","vbPRPSEnvC3","vbPRPSEnvC4","vbPRPSEnvC5","vbPRPSEnvC6","vbPRPSEnvC65","vbPRPSEnvB4","vbPRPSEnvB5","vbPRPSEnvB6","vbPRPSEnvItaly","vbPRPSEnvMonarch","vbPRPSEnvPersonal","vbPRPSFanfoldUS","vbPRPSFanfoldStdGerman","vbPRPSFanfoldLglGerman","vbPRPSUser"]},
{"name":"PrinterObjectConstants_ColorMode","kind":"enum","in":"Constants","values":["vbPRCMMonochrome","vbPRCMColor"]},
{"name":"PrinterObjectConstants_Duplex","kind":"enum","in":"Constants","values":["vbPRDPSimplex","vbPRDPHorizontal","vbPRDPVertical"]},
{"name":"PrinterObjectConstants_Orientation","kind":"enum","in":"Constants","values":["vbPRORPortrait","vbPRORLandscape"]},
{"name":"PrinterObjectConstants_PaperSize","kind":"enum","in":"Constants","values":["vbPRPSLetter","vbPRPSLetterSmall","vbPRPSTabloid","vbPRPSLedger","vbPRPSLegal","vbPRPSStatement","vbPRPSExecutive","vbPRPSA3","vbPRPSA4","vbPRPSA4Small","vbPRPSA5","vbPRPSB4","vbPRPSB5","vbPRPSFolio","vbPRPSQuarto","vbPRPS10x14","vbPRPS11x17","vbPRPSNote","vbPRPSEnv9","vbPRPSEnv10","vbPRPSEnv11","vbPRPSEnv12","vbPRPSEnv14","vbPRPSCSheet","vbPRPSDSheet","vbPRPSESheet","vbPRPSEnvDL","vbPRPSEnvC3","vbPRPSEnvC4","vbPRPSEnvC5","vbPRPSEnvC6","vbPRPSEnvC65","vbPRPSEnvB4","vbPRPSEnvB5","vbPRPSEnvB6","vbPRPSEnvItaly","vbPRPSEnvMonarch","vbPRPSEnvPersonal","vbPRPSFanfoldUS","vbPRPSFanfoldStdGerman","vbPRPSFanfoldLglGerman","vbPRPSUser"]},
{"name":"PrinterObjectConstants_PrintQuality","kind":"enum","in":"Constants","values":["vbPRPQDraft","vbPRPQLow","vbPRPQMedium","vbPRPQHigh"]},
{"name":"PrinterObjectConstants_PaperBin","kind":"enum","in":"Constants","values":["vbPRBNUpper","vbPRBNLower","vbPRBNMiddle","vbPRBNManual","vbPRBNEnvelope","vbPRBNEnvManual","vbPRBNAuto","vbPRBNTractor","vbPRBNSmallFmt","vbPRBNLargeFmt","vbPRBNLargeCapacity","vbPRBNCassette"]},
{"name":"QueryUnloadConstants","kind":"enum","in":"Constants","values":["vbFormControlMenu","vbFormCode","vbAppWindows","vbAppTaskManager","vbFormMDIForm","vbFormOwner"]},
{"name":"ZOrderConstants","kind":"enum","in":"Constants","values":["vbBringToFront","vbSendToBack"]},
{"name":"RecordsetTypeConstants","kind":"enum","in":"Constants","values":["vbRSTypeTable","vbRSTypeDynaset","vbRSTypeSnapShot"]},
{"name":"ScaleModeConstants","kind":"enum","in":"Constants","values":["vbScaledPixels","vbUser","vbTwips","vbPoints","vbPixels","vbCharacters","vbInches","vbMillimeters","vbCentimeters","vbHimetric","vbContainerPosition","vbContainerSize"]},
{"name":"VariantTypeConstants","kind":"enum","in":"Constants","values":["vbVEmpty","vbVNull","vbVInteger","vbVLong","vbVSingle","vbVDouble","vbVCurrency","vbVDate","vbVString"]},
{"name":"AlignConstants","kind":"enum","in":"Constants","values":["vbAlignNone","vbAlignTop","vbAlignBottom","vbAlignLeft","vbAlignRight"]},
{"name":"LoadPictureSizeConstants","kind":"enum","in":"Constants","values":["vbLPSmall","vbLPLarge","vbLPSmallShell","vbLPLargeShell","vbLPCustom"]},
{"name":"LoadPictureColorConstants","kind":"enum","in":"Constants","values":["vbLPDefault","vbLPMonochrome","vbLPVGAColor","vbLPColor"]},
{"name":"BackFillStyleConstants","kind":"enum","in":"Constants","values":["vbBFTransparent","vbBFOpaque"]},
{"name":"LinkModeConstants","kind":"enum","in":"Constants","values":["vbLinkNone","vbLinkAutomatic","vbLinkSource","vbLinkManual","vbLinkNotify"]},
{"name":"LogModeConstants","kind":"enum","in":"Constants","values":["vbLogAuto","vbLogOff","vbLogToFile","vbLogToNT","vbLogOverwrite","vbLogThreadID"]},
{"name":"LogEventTypeConstants","kind":"enum","in":"Constants","values":["vbLogEventTypeError","vbLogEventTypeWarning","vbLogEventTypeInformation"]},
{"name":"ShortcutConstants","kind":"enum","in":"Constants","values":["vbShortcutNone","vbShortcutCtrlA","vbShortcutCtrlB","vbShortcutCtrlC","vbShortcutCtrlD","vbShortcutCtrlE","vbShortcutCtrlF","vbShortcutCtrlG","vbShortcutCtrlH","vbShortcutCtrlI","vbShortcutCtrlJ","vbShortcutCtrlK","vbShortcutCtrlL","vbShortcutCtrlM","vbShortcutCtrlN","vbShortcutCtrlO","vbShortcutCtrlP","vbShortcutCtrlQ","vbShortcutCtrlR","vbShortcutCtrlS","vbShortcutCtrlT","vbShortcutCtrlU","vbShortcutCtrlV","vbShortcutCtrlW","vbShortcutCtrlX","vbShortcutCtrlY","vbShortcutCtrlZ","vbShortcutF1","vbShortcutF2","vbShortcutF3","vbShortcutF4","vbShortcutF5","vbShortcutF6","vbShortcutF7","vbShortcutF8","vbShortcutF9","vbShortcutF11","vbShortcutF12","vbShortcutShiftF1","vbShortcutShiftF2","vbShortcutShiftF3","vbShortcutShiftF4","vbShortcutShiftF5","vbShortcutShiftF6","vbShortcutShiftF7","vbShortcutShiftF8","vbShortcutShiftF9","vbShortcutShiftF11","vbShortcutShiftF12","vbShortcutCtrlF1","vbShortcutCtrlF2","vbShortcutCtrlF3","vbShortcutCtrlF4","vbShortcutCtrlF5","vbShortcutCtrlF6","vbShortcutCtrlF7","vbShortcutCtrlF8","vbShortcutCtrlF9","vbShortcutCtrlF11","vbShortcutCtrlF12","vbShortcutShiftCtrlF1","vbShortcutShiftCtrlF2","vbShortcutShiftCtrlF3","vbShortcutShiftCtrlF4","vbShortcutShiftCtrlF5","vbShortcutShiftCtrlF6","vbShortcutShiftCtrlF7","vbShortcutShiftCtrlF8","vbShortcutShiftCtrlF9","vbShortcutShiftCtrlF11","vbShortcutShiftCtrlF12","vbShortcutCtrlInsert","vbShortcutShiftInsert","vbShortcutDelete","vbShortcutShiftDelete","vbShortcutAltBackspace"]},
{"name":"ContainedControls","kind":"interface","members":{"Count":"property","Item":"property","_NewEnum":"function"}},
{"name":"DataMembers","kind":"interface","members":{"Item":"property","Count":"property","Add":"sub","Clear":"sub","Remove":"sub","_NewEnum":"function"}},
{"name":"tbInternal_IEnumFORMATETC","kind":"interface","members":{"Next":"sub","Skip":"sub","Reset":"sub","Clone":"sub"}},
{"name":"tbInternal_IAdviseSink","kind":"interface","members":{"OnDataChange":"sub","OnViewChange":"sub","OnRename":"sub","OnSave":"sub","OnClose":"sub"}},
{"name":"tbInternal_IMoniker","kind":"interface"},
{"name":"tbInternal_IEnumSTATDATA","kind":"interface"},
{"name":"tbInternal_IDataObject","kind":"interface","members":{"GetData":"sub","GetDataHere":"sub","QueryGetData":"sub","GetCanonicalFormatEtc":"sub","SetData":"sub","EnumFormatEtc":"sub","DAdvise":"sub","DUnadvise":"sub","EnumDAdvise":"sub"}},
{"name":"tbInternal_TYMED","kind":"enum","in":"tbInternal_IDataObject","values":["tbInternal_TYMED_HGLOBAL","tbInternal_TYMED_FILE","tbInternal_TYMED_ISTREAM","tbInternal_TYMED_ISTORAGE","tbInternal_TYMED_GDI","tbInternal_TYMED_MFPICT","tbInternal_TYMED_ENHMF","tbInternal_TYMED_NULL"]},
{"name":"tbInternal_FORMATETC","kind":"type","in":"tbInternal_IDataObject","fields":["cfFormat","ptd","dwAspect","lindex","tymed"]},
{"name":"tbInternal_STGMEDIUM","kind":"type","in":"tbInternal_IDataObject","fields":["tymed","unionData","pUnkForRelease"]},
{"name":"DataObject","kind":"interface","members":{"Clear":"sub","SetData":"sub","GetData":"function","GetFormat":"function","Files":"function","AvailableFormats":"function","GetFormatByName":"function","GetDataByName":"function","GetIDataObject":"function"}},
{"name":"DataObjectFiles","kind":"interface","members":{"Item":"property","Count":"property","Add":"sub","Clear":"sub","Remove":"sub","_NewEnum":"function"}},
{"name":"DataObjectFormats","kind":"interface","members":{"Item":"function","Count":"property","_NewEnum":"function"}},
{"name":"DataObjectFormat","kind":"interface","members":{"FormatType":"property","AspectType":"property","AspectIndex":"property","StorageType":"property","Name":"property"}},
{"name":"ErrorCallstack","kind":"interface","members":{"Count":"property","Items":"property"}},
{"name":"ErrorContext","kind":"interface","members":{"State":"property","Number":"property","Description":"property","Source":"property","HelpFile":"property","HelpContext":"property","LastDLLError":"property","Callstack":"property"}},
{"name":"OnErrorStatus","kind":"enum","in":"ErrorContext","values":["OnErrorGoto0","OnErrorResumeNext","OnErrorGotoLabel","OnErrorEnd","OnErrorDebug","CalledByLocalHandler","OnErrorRetry","OnErrorPropagate","OnErrorExitProcedure","OnErrorCatch","OnErrorCatchAll","OnErrorInsideCatch","OnErrorInsideCatchAll","OnErrorInsideFinally","OnErrorPropagateCatch","OnErrorPropagateCatchAll"]},
{"name":"ErrorStackFrame","kind":"interface","members":{"ProjectName":"property","ModuleName":"property","ProcedureName":"property"}},
{"name":"Hyperlink","kind":"interface","members":{"GoForward":"sub","GoBack":"sub","NavigateTo":"sub"}},
{"name":"ParentControls","kind":"interface","members":{"Count":"property","Item":"property","_NewEnum":"function","ParentControlsType":"property"}},
{"name":"PropertyBag_VB5","kind":"interface","members":{"ReadProperty":"function","WriteProperty":"sub"}},
{"name":"_PropertyBag","kind":"interface","extends":"VBRUN.PropertyBag_VB5","members":{"Contents":"property"}},
{"name":"PropertyBag","kind":"coclass","default":"_PropertyBag"}
]
},
"WebView2Package": {
"exports": ["WebView2Package"],
"types": [
{"name":"ICoreWebView2","kind":"interface","public":false},
{"name":"ICoreWebView2_2","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2"},
{"name":"ICoreWebView2_3","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2_2"},
{"name":"ICoreWebView2_4","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2_3"},
{"name":"ICoreWebView2_5","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2_4"},
{"name":"ICoreWebView2_6","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2_5"},
{"name":"ICoreWebView2_7","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2_6"},
{"name":"ICoreWebView2_8","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2_7"},
{"name":"ICoreWebView2_9","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2_8"},
{"name":"ICoreWebView2AcceleratorKeyPressedEventArgs","kind":"interface","public":false},
{"name":"ICoreWebView2AcceleratorKeyPressedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandler","kind":"interface","public":false},
{"name":"ICoreWebView2CallDevToolsProtocolMethodCompletedHandler","kind":"interface","public":false},
{"name":"ICoreWebView2Controller","kind":"interface","public":false},
{"name":"ICoreWebView2CreateCoreWebView2ControllerCompletedHandler","kind":"interface","public":false},
{"name":"ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandler","kind":"interface","public":false},
{"name":"ICoreWebView2DOMContentLoadedEventArgs","kind":"interface","public":false},
{"name":"ICoreWebView2DOMContentLoadedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2Deferral","kind":"interface","public":false},
{"name":"ICoreWebView2DocumentTitleChangedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2DownloadStartingEventArgs","kind":"interface","public":false},
{"name":"ICoreWebView2DownloadStartingEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2Environment","kind":"interface","public":false},
{"name":"ICoreWebView2Environment2","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2Environment"},
{"name":"ICoreWebView2Environment3","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2Environment2"},
{"name":"ICoreWebView2Environment4","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2Environment3"},
{"name":"ICoreWebView2Environment5","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2Environment4"},
{"name":"ICoreWebView2Environment6","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2Environment5"},
{"name":"ICoreWebView2Environment7","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2Environment6"},
{"name":"ICoreWebView2Environment8","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2Environment7"},
{"name":"ICoreWebView2EnvironmentOptions","kind":"interface","public":false},
{"name":"ICoreWebView2EnvironmentOptions2","kind":"interface","public":false},
{"name":"ICoreWebView2EnvironmentOptions5","kind":"interface","public":false},
{"name":"ICoreWebView2ExecuteScriptCompletedHandler","kind":"interface","public":false},
{"name":"ICoreWebView2HttpHeadersCollectionIterator","kind":"interface","public":false},
{"name":"ICoreWebView2HttpRequestHeaders","kind":"interface","public":false},
{"name":"ICoreWebView2HttpResponseHeaders","kind":"interface","public":false},
{"name":"ICoreWebView2NavigationCompletedEventArgs","kind":"interface","public":false},
{"name":"ICoreWebView2NavigationCompletedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2NavigationStartingEventArgs","kind":"interface","public":false},
{"name":"ICoreWebView2NavigationStartingEventArgs2","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2NavigationStartingEventArgs"},
{"name":"ICoreWebView2NavigationStartingEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2NewWindowRequestedEventArgs","kind":"interface","public":false},
{"name":"ICoreWebView2NewWindowRequestedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2PermissionRequestedEventArgs","kind":"interface","public":false},
{"name":"ICoreWebView2PermissionRequestedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2PrintSettings","kind":"interface","public":false},
{"name":"ICoreWebView2PrintToPdfCompletedHandler","kind":"interface","public":false},
{"name":"ICoreWebView2ProcessFailedEventArgs","kind":"interface","public":false},
{"name":"ICoreWebView2ProcessFailedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2ScriptDialogOpeningEventArgs","kind":"interface","public":false},
{"name":"ICoreWebView2ScriptDialogOpeningEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2Settings","kind":"interface","public":false},
{"name":"ICoreWebView2Settings2","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2Settings"},
{"name":"ICoreWebView2Settings3","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2Settings2"},
{"name":"ICoreWebView2Settings4","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2Settings3"},
{"name":"ICoreWebView2Settings5","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2Settings4"},
{"name":"ICoreWebView2Settings6","kind":"interface","public":false,"extends":"WebView2Package.ICoreWebView2Settings5"},
{"name":"ICoreWebView2SourceChangedEventArgs","kind":"interface","public":false},
{"name":"ICoreWebView2SourceChangedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2TrySuspendCompletedHandler","kind":"interface","public":false},
{"name":"ICoreWebView2WebMessageReceivedEventArgs","kind":"interface","public":false},
{"name":"ICoreWebView2WebMessageReceivedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2WebResourceRequest","kind":"interface","public":false},
{"name":"ICoreWebView2WebResourceRequestedEventArgs","kind":"interface","public":false},
{"name":"ICoreWebView2WebResourceRequestedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2WebResourceResponse","kind":"interface","public":false},
{"name":"ICoreWebView2WindowFeatures","kind":"interface","public":false},
{"name":"IEnumVARIANT","kind":"interface","public":false},
{"name":"ICoreWebView2ContentLoadingEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2HistoryChangedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2ContainsFullScreenElementChangedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2WindowCloseRequestedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2WebResourceResponseReceivedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2CookieManager","kind":"interface","public":false},
{"name":"ICoreWebView2FrameCreatedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2ClientCertificateRequestedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2IsMutedChangedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2IsDocumentPlayingAudioChangedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2ZoomFactorChangedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2MoveFocusRequestedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2FocusChangedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2NewBrowserVersionAvailableEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandler","kind":"interface","public":false},
{"name":"ICoreWebView2PointerInfo","kind":"interface","public":false},
{"name":"ICoreWebView2DownloadOperation","kind":"interface","public":false},
{"name":"ICoreWebView2BrowserProcessExitedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2ProcessInfosChangedEventHandler","kind":"interface","public":false},
{"name":"ICoreWebView2ProcessInfoCollection","kind":"interface","public":false},
{"name":"WebView2","kind":"class","control":true,"inherits":["VB.BaseControlFocusableNoFont"],"members":{"EnvironmentOptions":"field","UseDeferredEvents":"field","AdditionalAllowedFrameAncestors":"field","BackColor":"field","Create":"event","Ready":"event","Error":"event","NavigationStarting":"event","NavigationComplete":"event","SourceChanged":"event","DocumentTitleChanged":"event","PermissionRequested":"event","AcceleratorKeyPressed":"event","WebResourceRequested":"event","ProcessFailed":"event","ScriptDialogOpening":"event","UserContextMenu":"event","DOMContentLoaded":"event","SuspendCompleted":"event","SuspendFailed":"event","DownloadStarting":"event","PrintToPdfCompleted":"event","PrintToPdfFailed":"event","NewWindowRequested":"event","JsAsyncResult":"event","JsMessage":"event","DevToolsProtocolResponse":"event","New":"sub","hWnd":"property","MoveFocus":"sub","Navigate":"sub","SupportsNavigateCustomFeatures":"property","NavigateCustom":"sub","NavigateToString":"sub","DocumentURL":"property","DocumentTitle":"property","ZoomFactor":"property","BrowserProcessId":"property","CanGoBack":"property","GoBack":"sub","CanGoForward":"property","GoForward":"sub","AddObject":"sub","RemoveObject":"sub","AddScriptToExecuteOnDocumentCreated":"sub","AddWebResourceRequestedFilter":"sub","RemoveWebResourceRequestedFilter":"sub","OpenDevToolsWindow":"sub","CallDevToolsProtocolMethod":"sub","ExecuteScript":"sub","JsCallTimeOutSeconds":"field","JsRun":"function","JsRunAsync":"function","JsProp":"function","PostWebMessage":"sub","PostWebMessageJSON":"sub","Reload":"sub","SupportsSuspendResumeFeatures":"property","Suspend":"sub","Resume":"sub","IsSuspended":"property","SupportsAudioFeatures":"property","IsMuted":"property","IsDocumentPlayingAudio":"property","SupportsDownloadDialogFeatures":"property","IsDefaultDownloadDialogOpen":"property","OpenDefaultDownloadDialog":"sub","CloseDefaultDownloadDialog":"sub","SupportsTaskManagerFeatures":"property","OpenTaskManagerWindow":"sub","SupportsFolderMappingFeatures":"property","SetVirtualHostNameToFolderMapping":"sub","ClearVirtualHostNameToFolderMapping":"sub","SupportsPdfFeatures":"property","PrintToPdf":"sub","IsScriptEnabled":"property","IsWebMessageEnabled":"property","AreDefaultScriptDialogsEnabled":"property","IsStatusBarEnabled":"property","AreDevToolsEnabled":"property","AreDefaultContextMenusEnabled":"property","AreHostObjectsAllowed":"property","IsZoomControlEnabled":"property","IsBuiltInErrorPageEnabled":"property","SupportsUserAgentFeatures":"property","UserAgent":"property","SupportsAcceleratorKeysFeatures":"property","AreBrowserAcceleratorKeysEnabled":"property","SupportsAutoFillFeatures":"property","IsPasswordAutoSaveEnabled":"property","IsGeneralAutoFillEnabled":"property","SupportsPinchZoomFeatures":"property","IsPinchZoomEnabled":"property","SupportsSwipeNavigationFeatures":"property","IsSwipeNavigationEnabled":"property"}},
{"name":"WebView2DeferredCallback","kind":"class","public":false},
{"name":"IDeferredCallback","kind":"interface","members":{"NewWindowRequested":"sub","PermissionRequested":"sub","WebResourceRequested":"sub","ScriptDialogOpening":"sub","DownloadStarting":"sub"}},
{"name":"WebView2DeferredRaiseEvent","kind":"class","public":false},
{"name":"WebView2DevToolsProtocolCallback","kind":"class","public":false},
{"name":"WebView2EnvironmentOptions","kind":"class","public":false},
{"name":"IExecuteScriptCompleteCallback","kind":"interface","public":false},
{"name":"WebView2ExecuteScriptCompleteHandler","kind":"class","public":false},
{"name":"WebView2ExecuteScriptCompleteHandler2","kind":"class","public":false},
{"name":"WebView2Header","kind":"class","members":{"Name":"field","Value":"field","New":"sub"}},
{"name":"WebView2HeadersCollection","kind":"class","members":{"New":"sub"}},
{"name":"WebView2Request","kind":"class","members":{"New":"sub","Method":"property","Uri":"property","Headers":"property","ContentBytes":"property","ContentUTF8":"property"}},
{"name":"WebView2RequestHeaders","kind":"class","members":{"New":"sub","GetHeader":"function","Contains":"function","AppendHeader":"sub","RemoveHeader":"sub","GetHeaders":"function","_NewEnum":"function"}},
{"name":"WebView2Response","kind":"class","members":{"HasBeenSet":"field","New":"sub","ContentBytes":"property","ContentUTF8":"property","StatusCode":"property","ReasonPhrase":"property","Headers":"property"}},
{"name":"WebView2ResponseHeaders","kind":"class","members":{"New":"sub","AppendHeader":"sub","Contains":"function","GetHeader":"function","GetHeaders":"function","_NewEnum":"function"}},
{"name":"WebViewEnums","kind":"module"},
{"name":"wv2PermissionKind","kind":"enum","in":"WebViewEnums","values":["wv2UnknownPermission","wv2Microphone","wv2Camera","wv2Geolocation","wv2Notifications","wv2Sensors","wv2ClipboardRead"]},
{"name":"wv2PermissionState","kind":"enum","in":"WebViewEnums","values":["wv2StateDefault","wv2StateAllow","wv2StateDeny"]},
{"name":"wv2ErrorStatus","kind":"enum","in":"WebViewEnums","values":["wv2StateUnknown","wv2CertificateCommonNameIsIncorrect","wv2CertificateExpired","wv2ClientCertificateContainsErrors","wv2CertificateRevoked","wv2CertificateIsInvalid","wv2ServerUnreachable","wv2Timeout","wv2ErrorHttpInvalidServerResponse","wv2ConnectionAborted","wv2ConnectionReset","wv2Disconnected","wv2CannotConnect","wv2HostNameNotResolved","wv2OperationCanceled","wv2RedirectFailed","wv2UnexpectedError","wv2ValidAuthenticationCredentialsRequired","wv2ValidProxyAuthenticationRequired"]},
{"name":"wv2KeyEventKind","kind":"enum","in":"WebViewEnums","values":["wv2EventKeyDown","wv2EventKeyUp","wv2EventSystemKeyDown","wv2EventSystemKeyUp"]},
{"name":"wv2WebResourceContext","kind":"enum","in":"WebViewEnums","values":["wv2All","wv2Document","wv2Stylesheet","wv2Image","wv2Media","wv2Font","wv2Script","wv2XMLHttpRequest","wv2Fetch","wv2TextTrack","wv2EventSource","wv2WebSocket","wv2Manifest","wv2SignedExchange","wv2Ping","wv2CspViolationReport","wv2Other"]},
{"name":"wv2ProcessFailedKind","kind":"enum","in":"WebViewEnums","values":["wv2BrowserProcessExited","wv2RenderProcessExited","wv2RenderProcessUnresponsive","wv2FrameRenderProcessExited","wv2UtilityProcessExited","wv2SandboxHelperProcessExited","wv2GpuProcessExited","wv2PpapiPluginProcessExited","wv2PpapiBrokerProcessExited","wv2UnknownProcessExited"]},
{"name":"wv2ScriptDialogKind","kind":"enum","in":"WebViewEnums","values":["wv2DialogAlert","wv2DialogConfirm","wv2DialogPrompt","wv2DialogBeforeUnload"]},
{"name":"wv2HostResourceAccessKind","kind":"enum","in":"WebViewEnums","values":["wv2ResourceDeny","wv2ResourceAllow","wv2ResourceDenyCors"]},
{"name":"wv2PrintOrientation","kind":"enum","in":"WebViewEnums","values":["wv2PrintPortrait","wv2PrintLandscape"]},
{"name":"wv2DefaultDownloadCornerAlign","kind":"enum","in":"WebViewEnums","values":["wv2CornerTopLeft","wv2CornerTopRight","wv2CornerBottomLeft","wv2CornerBottomRight"]},
{"name":"WebViewTypes","kind":"module"},
{"name":"COREWEBVIEW2_PHYSICAL_KEY_STATUS","kind":"type","in":"WebViewTypes","fields":["RepeatCount","ScanCode","IsExtendedKey","IsMenuKeyDown","WasKeyDown","IsKeyReleased"]},
{"name":"WebView2Misc","kind":"module","public":false},
{"name":"ControlAlt","kind":"interface","public":false}
]
},
"WinEventLogLib": {
"exports": ["WinEventLogLib"],
"types": [
{"name":"EventLogAPIs","kind":"module","public":false},
{"name":"EventLogConstants","kind":"module","public":false},
{"name":"EventLogTypeConstants","kind":"enum","in":"EventLogConstants","values":["vbEventLogTypeSuccess","vbEventLogTypeAuditFailure","vbEventLogTypeAuditSuccess","vbEventLogTypeError","vbEventLogTypeWarning"]},
{"name":"EventLog","kind":"class","members":{"New":"sub","LogSuccess":"sub","LogFailure":"sub","Register":"sub"}},
{"name":"EventLogHelperPrivate","kind":"module","members":{"VariantArrayToStringArray":"function"}},
{"name":"EventLogHelperPublic","kind":"module","members":{"RegisterEventLogInternal":"sub"}}
]
},
"WinNamedPipesLib": {
"exports": ["WinNamedPipesLib"],
"types": [
{"name":"NamedPipesAPIs","kind":"module","public":false},
{"name":"POINT","kind":"type","in":"NamedPipesAPIs","public":false},
{"name":"MSG","kind":"type","in":"NamedPipesAPIs","public":false},
{"name":"SAFEARRAYBOUND","kind":"type","in":"NamedPipesAPIs","public":false},
{"name":"SAFEARRAY_1D","kind":"type","in":"NamedPipesAPIs","public":false},
{"name":"OVERLAPPED_CUSTOM","kind":"type","in":"NamedPipesAPIs","public":false},
{"name":"FILETIME","kind":"type","in":"NamedPipesAPIs","public":false},
{"name":"WIN32_FIND_DATAW","kind":"type","in":"NamedPipesAPIs","public":false},
{"name":"NamedPipesConstants","kind":"module","public":false},
{"name":"OverlappedTypeConstants","kind":"enum","in":"NamedPipesConstants","values":["tbOverlappedConnect","tbOverlappedRead","tbOverlappedWrite"]},
{"name":"NamedPipesHelper","kind":"module","public":false},
{"name":"INamedPipeClientConnectionInternal","kind":"interface","public":false},
{"name":"NamedPipeClientConnection","kind":"class","members":{"Connected":"event","Disconnected":"event","MessageReceived":"event","MessageSent":"event","PipeName":"field","Handle":"field","CustomData":"field","New":"sub","AsyncClose":"sub","AsyncWrite":"sub","AsyncRead":"sub"}},
{"name":"INamedPipeClientManagerInternal","kind":"interface","public":false},
{"name":"NamedPipeClientManager","kind":"class","members":{"NumThreadsIOCP":"field","MessageBufferSize":"field","FreeThreadingEvents":"field","ContinuouslyReadFromPipe":"field","New":"sub","Connect":"function","Stop":"sub","FindNamedPipes":"function"}},
{"name":"ConnectionListItemClient","kind":"type","in":"NamedPipeClientManager","public":false},
{"name":"INamedPipeServerInternal","kind":"interface","public":false},
{"name":"NamedPipeServer","kind":"class","members":{"ServerReady":"event","ClientConnected":"event","ClientDisconnected":"event","ClientMessageReceived":"event","ClientMessageSent":"event","PipeName":"field","NumThreadsIOCP":"field","FreeThreadingEvents":"field","ContinuouslyReadFromPipe":"field","MessageBufferSize":"field","New":"sub","Start":"sub","Stop":"sub","AsyncBroadcast":"sub","ManualMessageLoopLeave":"sub","ManualMessageLoopEnter":"sub"}},
{"name":"ConnectionListItemServer","kind":"type","in":"NamedPipeServer","public":false},
{"name":"INamedPipeServerConnectionInternal","kind":"interface","public":false},
{"name":"NamedPipeServerConnection","kind":"class","members":{"Handle":"field","IsOpening":"field","IsConnected":"field","CustomData":"field","New":"sub","AsyncClose":"sub","AsyncWrite":"sub","AsyncRead":"sub"}}
]
},
"WinNativeCommonCtls": {
"exports": ["WinNativeCommonCtls"],
"types": [
{"name":"DTPickerBaseCtl","kind":"class","inherits":["VB.BaseControlFocusable"],"members":{"OLEDropMode":"field","UpDown":"field","CheckBox":"field","CalendarShowToday":"field","CalendarShowTodayCircle":"field","CalendarShowWeekNumbers":"field","CalendarShowTrailingDates":"field","RightToLeft":"field","HelpContextID":"field","WhatsThisHelpID":"field","Format":"field","CustomFormat":"field","Opacity":"field","TransparencyKey":"field","StartOfWeek":"field","CallbackKeyDown":"event","Change":"event","Click":"event","CloseUp":"event","DblClick":"event","DropDown":"event","FormatSize":"event","GotFocus":"event","LostFocus":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Initialize":"event","DragDrop":"event","DragOver":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","Validate":"event","New":"sub","CalendarBackColor":"property","CalendarForeColor":"property","CalendarTitleBackColor":"property","CalendarTitleForeColor":"property","CalendarTrailingForeColor":"property","Parent":"property","Object":"property","OLEDrag":"sub","MinDate":"property","MaxDate":"property","Value":"property","Year":"property","Month":"property","Week":"property","hWndCalendar":"property","Day":"property","Hour":"property","Minute":"property","Second":"property","DayCount":"property","DayOfWeek":"property"}},
{"name":"DTPicker","kind":"class","control":true,"inherits":["WinNativeCommonCtls.DTPickerBaseCtl"]},
{"name":"TbImageListPrivate","kind":"interface","members":{"GetScaleX":"function","GetScaleY":"function","SetWidthHeight":"sub","SyncListProps":"sub","GetInitImageData":"sub","SetInitImageData":"sub","ImageWidth":"property","ImageHeight":"property","ColorDepth":"property","UseMaskColor":"property","MaskColor":"property","BoundCount":"property"}},
{"name":"ImageListBaseCtl","kind":"class","inherits":["VB.BaseControlNotFocusable"],"members":{"BackColor":"field","UseBackColor":"field","MaskColor":"field","UseMaskColor":"field","ColorDepth":"field","New":"sub","Parent":"property","Object":"property","hImageList":"property","Overlay":"function","ImageWidth":"property","ImageHeight":"property","ListImages":"property"}},
{"name":"ImageListColorDepth","kind":"enum","in":"ImageListBaseCtl","values":["ColorDepth4Bit","ColorDepth8Bit","ColorDepth16Bit","ColorDepth24Bit","ColorDepth32Bit"]},
{"name":"ImageList","kind":"class","control":true,"inherits":["WinNativeCommonCtls.ImageListBaseCtl"]},
{"name":"TbListViewPrivate","kind":"interface","members":{"GetScaleX":"function","GetScaleY":"function","UnitPixelScale":"function","GetInternalDataPtr":"function"}},
{"name":"ListViewHeaderSubclasser","kind":"class","public":false},
{"name":"ListViewBaseCtl","kind":"class","inherits":["VB.BaseControlFocusable"],"members":{"BorderStyle":"field","CheckBoxes":"field","GridLines":"field","HideColumnHeaders":"field","FullRowSelect":"field","HideSelection":"field","MultiSelect":"field","LabelWrap":"field","FlatScrollBar":"field","HotTracking":"field","LabelEdit":"field","View":"field","Arrange":"field","BackColor":"field","TextBackground":"field","Opacity":"field","TransparencyKey":"field","AllowColumnReorder":"field","OLEDropMode":"field","Initialize":"event","Click":"event","DblClick":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","BeforeLabelEdit":"event","AfterLabelEdit":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","DragDrop":"event","DragOver":"event","Validate":"event","ColumnClick":"event","ItemCheck":"event","ItemClick":"event","Scroll":"event","New":"sub","hWnd":"property","Parent":"property","Object":"property","ListItems":"property","ColumnHeaders":"property","GetFirstVisible":"function","SelectedItemIndex":"property","SelectedItem":"property","StartLabelEdit":"sub","OLEDrag":"sub","SmallIcons":"property","Icons":"property","ColumnHeaderIcons":"property","hWndHeader":"property"},"hiddenMembers":["hWndHeader"]},
{"name":"ListViewConstants","kind":"enum","in":"ListViewBaseCtl","values":["lvwIcon","lvwSmallIcon","lvwList","lvwReport"]},
{"name":"ListArrangeConstants","kind":"enum","in":"ListViewBaseCtl","values":["lvwNone","lvwAutoLeft","lvwAutoTop"]},
{"name":"ListTextBackgroundConstants","kind":"enum","in":"ListViewBaseCtl","values":["lvwTransparent","lvwOpaque"]},
{"name":"ListLabelEditConstants","kind":"enum","in":"ListViewBaseCtl","values":["lvwAutomatic","lvwManual","lvwDisabled"]},
{"name":"HDLAYOUT","kind":"type","in":"ListViewBaseCtl","fields":["prc","pwpos"]},
{"name":"WINDOWPOS","kind":"type","in":"ListViewBaseCtl","fields":["hwnd","hwndInsertAfter","x","y","cx","cy","flags"]},
{"name":"ListViewInternalData","kind":"type","in":"ListViewBaseCtl","fields":["InternalBuffer","InternalBufferLen","IsDestroying","IndentationScale","IsDesignMode","IsClicked","IsEdittingNodeText","MouseButtonDown","CachedTopHandle","BoldFontCached","BoldFontCachedId"]},
{"name":"ListView","kind":"class","control":true,"inherits":["WinNativeCommonCtls.ListViewBaseCtl"]},
{"name":"MonthViewBaseCtl","kind":"class","inherits":["VB.BaseControlFocusable"],"members":{"OLEDropMode":"field","ShowToday":"field","ShowTodayCircle":"field","ShowWeekNumbers":"field","ShowTrailingDates":"field","MonthColumns":"field","MonthRows":"field","ResizeToFit":"field","BorderStyle":"field","Appearance":"field","Opacity":"field","TransparencyKey":"field","MultiSelect":"field","MaxSelCount":"field","ScrollRate":"field","StartOfWeek":"field","RightToLeft":"field","HelpContextID":"field","WhatsThisHelpID":"field","Click":"event","DateClick":"event","DblClick":"event","DateDblClick":"event","GetDayBold":"event","SelChange":"event","GotFocus":"event","LostFocus":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Initialize":"event","DragDrop":"event","DragOver":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","Validate":"event","New":"sub","Parent":"property","Object":"property","OLEDrag":"sub","BackColor":"property","MonthBackColor":"property","TitleBackColor":"property","TitleForeColor":"property","TrailingForeColor":"property","ForeColor":"property","Value":"property","MinDate":"property","MaxDate":"property","GetMonthRange":"function","VisibleDays":"property","DayBold":"property","CalendarCount":"property","DayCount":"property","SelStart":"property","SelEnd":"property","Year":"property","Month":"property","Week":"property","Day":"property","DayOfWeek":"property"}},
{"name":"MonthViewInternalData","kind":"type","in":"MonthViewBaseCtl","fields":["IsInitialized","IsNewControl","LastSelectionStart","LastSelectionEnd","IsDesignMode","LastMouseUpX","LastMouseUpY","LastMouseUpTime","LastCachedDayStateStart","LastCachedDayStateEnd","LastCachedDayStateMonthCount","LastCachedDayStateNumDays","LastCachedDayStateDayStates","LastCachedDayStateBits"]},
{"name":"MonthView","kind":"class","control":true,"inherits":["WinNativeCommonCtls.MonthViewBaseCtl"]},
{"name":"ProgressBarBaseCtl","kind":"class","inherits":["VB.BaseControlNotFocusable2"],"members":{"BorderStyle":"field","BackColor":"field","ForeColor":"field","MarqueeAnimation":"field","MarqueeSpeed":"field","State":"field","SmoothReverse":"field","Orientation":"field","Scrolling":"field","Opacity":"field","TransparencyKey":"field","OLEDropMode":"field","Change":"event","Click":"event","DblClick":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Initialize":"event","DragDrop":"event","DragOver":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","New":"sub","Min":"property","Max":"property","Step":"property","StepIt":"sub","Value":"property","Parent":"property","Object":"property","BorderStyleChanged":"sub","OLEDrag":"sub"}},
{"name":"PrbOrientation","kind":"enum","in":"ProgressBarBaseCtl","values":["PrbOrientationHorizontal","PrbOrientationVertical"]},
{"name":"PrbScrolling","kind":"enum","in":"ProgressBarBaseCtl","values":["PrbScrollingStandard","PrbScrollingSmooth","PrbScrollingMarquee"]},
{"name":"PrbState","kind":"enum","in":"ProgressBarBaseCtl","values":["PrbStateNormal","PrbStateError","PrbStatePaused"]},
{"name":"ProgressBar","kind":"class","control":true,"inherits":["WinNativeCommonCtls.ProgressBarBaseCtl"]},
{"name":"SliderBaseCtl","kind":"class","inherits":["VB.BaseControlFocusableNoFont"],"members":{"BorderStyle":"field","BackColor":"field","OLEDropMode":"field","Opacity":"field","TransparencyKey":"field","HideThumb":"field","ShowTip":"field","SelectRange":"field","TickFrequency":"field","TextPosition":"field","TickStyle":"field","Orientation":"field","Change":"event","Click":"event","GotFocus":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","LostFocus":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Initialize":"event","DragDrop":"event","DragOver":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","Scroll":"event","Validate":"event","New":"sub","Min":"property","Max":"property","Value":"property","Parent":"property","Object":"property","SelStart":"property","SelLength":"property","SmallChange":"property","LargeChange":"property","OLEDrag":"sub","ToolTipText":"property","VisualStyles":"property"}},
{"name":"TickStyleConstants","kind":"enum","in":"SliderBaseCtl","values":["sldBottomRight","sldTopLeft","sldBoth","sldNoTicks"]},
{"name":"TextPositionConstants","kind":"enum","in":"SliderBaseCtl","values":["sldAboveLeft","sldBelowRight"]},
{"name":"Slider","kind":"class","control":true,"inherits":["WinNativeCommonCtls.SliderBaseCtl"]},
{"name":"TbTreeViewPrivate","kind":"interface","members":{"GetNodeFromHandle":"function","GetTreeViewInternalDataPtr":"function","SortNowInternal":"sub"}},
{"name":"TreeViewBaseCtl","kind":"class","inherits":["VB.BaseControlFocusable"],"members":{"BorderStyle":"field","CheckBoxes":"field","FullRowSelect":"field","HideSelection":"field","HotTracking":"field","LabelEdit":"field","LineStyle":"field","PathSeparator":"field","Scroll":"field","SingleSel":"field","Sorted":"field","SortOrder":"field","SortType":"field","Style":"field","WheelScrollEvent":"field","Opacity":"field","TransparencyKey":"field","OLEDropMode":"field","Initialize":"event","Click":"event","DblClick":"event","KeyDown":"event","KeyPress":"event","KeyUp":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","NodeClick":"event","NodeCheck":"event","NodeSelect":"event","Collapse":"event","Expand":"event","BeforeCollapse":"event","BeforeExpand":"event","BeforeLabelEdit":"event","AfterLabelEdit":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","DragDrop":"event","DragOver":"event","Validate":"event","New":"sub","Indentation":"property","hWnd":"property","GetVisibleCount":"function","SelectedItem":"property","DropHighlight":"property","StartLabelEdit":"sub","HitTest":"function","hWndLabelEdit":"property","Parent":"property","Object":"property","Nodes":"property","OLEDrag":"sub","ImageList":"property"}},
{"name":"TreeViewInternalData","kind":"type","in":"TreeViewBaseCtl","fields":["IsDestroying","InternalPendingDblClick","InternalNodes","IndentationScale","IsDesignMode","IsClicked","IsEdittingNodeText","MouseButtonDown","CachedTopHandle"]},
{"name":"TreeView","kind":"class","control":true,"inherits":["WinNativeCommonCtls.TreeViewBaseCtl"]},
{"name":"UpDownBaseCtl","kind":"class","inherits":["VB.BaseControlFocusableNoFont"],"members":{"OLEDropMode":"field","Orientation":"field","Opacity":"field","TransparencyKey":"field","Change":"event","UpClick":"event","DownClick":"event","GotFocus":"event","LostFocus":"event","MouseDown":"event","MouseMove":"event","MouseUp":"event","Initialize":"event","DragDrop":"event","DragOver":"event","OLECompleteDrag":"event","OLEDragDrop":"event","OLEDragOver":"event","OLEGiveFeedback":"event","OLESetData":"event","OLEStartDrag":"event","Validate":"event","New":"sub","Min":"property","Max":"property","Value":"property","Parent":"property","Object":"property","Increment":"property","OLEDrag":"sub","ToolTipText":"property","VisualStyles":"property"}},
{"name":"UDACCEL","kind":"type","in":"UpDownBaseCtl","public":false},
{"name":"NMUPDOWN","kind":"type","in":"UpDownBaseCtl","public":false},
{"name":"UpDown","kind":"class","control":true,"inherits":["WinNativeCommonCtls.UpDownBaseCtl"]},
{"name":"ColumnHeader","kind":"class","members":{"Tag":"field","InternalIcon":"field","New":"sub","Index":"property","Key":"property","Icon":"property","Text":"property","Left":"property","Width":"property","Alignment":"property","Position":"property","SubItemIndex":"property"}},
{"name":"ListColumnAlignmentConstants","kind":"enum","in":"ColumnHeader","values":["lvwColumnLeft","lvwColumnRight","lvwColumnCenter"]},
{"name":"ColumnHeaders","kind":"class","members":{"ContainerList":"field","New":"sub","_NewEnum":"function","Add":"function","Clear":"sub","Count":"property","Item":"property","Remove":"sub"}},
{"name":"DTPickerConsts","kind":"module","members":{"GDT_ERROR":"const","GDT_VALID":"const","GDT_NONE":"const"}},
{"name":"DTPickerStyles","kind":"enum","in":"DTPickerConsts","values":["DTS_UPDOWN","DTS_SHOWNONE","DTS_SHORTDATEFORMAT","DTS_LONGDATEFORMAT","DTS_SHORTDATECENTURYFORMAT","DTS_TIMEFORMAT","DTS_APPCANPARSE","DTS_RIGHTALIGN"]},
{"name":"DTPickerMessages","kind":"enum","in":"DTPickerConsts","values":["DTM_GETSYSTEMTIME","DTM_SETSYSTEMTIME","DTM_GETRANGE","DTM_SETRANGE","DTM_SETFORMATA","DTM_SETFORMATW","DTM_SETMCCOLOR","DTM_GETMCCOLOR","DTM_GETMONTHCAL","DTM_SETMCFONT","DTM_GETMCFONT","DTM_SETMCSTYLE","DTM_GETMCSTYLE","DTM_CLOSEMONTHCAL","DTM_GETDATETIMEPICKERINFO","DTM_GETIDEALSIZE"]},
{"name":"DTPickerNotifications","kind":"enum","in":"DTPickerConsts","values":["DTN_DATETIMECHANGE","DTN_USERSTRINGA","DTN_USERSTRINGW","DTN_WMKEYDOWNA","DTN_WMKEYDOWNW","DTN_FORMATA","DTN_FORMATW","DTN_FORMATQUERYA","DTN_FORMATQUERYW","DTN_DROPDOWN","DTN_CLOSEUP"]},
{"name":"DTPickerColorArea","kind":"enum","in":"DTPickerConsts","values":["MCSC_BACKGROUND","MCSC_TEXT","MCSC_TITLEBK","MCSC_TITLETEXT","MCSC_MONTHBK","MCSC_TRAILINGTEXT"]},
{"name":"NMDATETIMECHANGE","kind":"type","in":"DTPickerConsts","fields":["hdr","dwFlags","ST"]},
{"name":"NMDATETIMEWMKEYDOWN","kind":"type","in":"DTPickerConsts","fields":["hdr","nVirtKey","pszFormat","ST"]},
{"name":"NMDATETIMEFORMAT","kind":"type","in":"DTPickerConsts","fields":["hdr","pszFormat","ST","pszDisplay","szDisplay"]},
{"name":"NMDATETIMEFORMATQUERY","kind":"type","in":"DTPickerConsts","fields":["hdr","pszFormat","szMax"]},
{"name":"NMDATETIMESTRING","kind":"type","in":"DTPickerConsts","fields":["hdr","pszUserString","ST","dwFlags"]},
{"name":"DTPickerFormatConstants","kind":"enum","in":"DTPickerConsts","values":["dtpLongDate","dtpShortDate","dtpTime","dtpCustom"]},
{"name":"ImageListConsts","kind":"module","public":false},
{"name":"ImlDrawConstants","kind":"enum","in":"ImageListConsts","values":["ImlDrawNormal","ImlDrawTransparent","ImlDrawSelected","ImlDrawFocus","ImlDrawNoMask"]},
{"name":"ImageListPropertyPage","kind":"class","members":{"ChangesApplied":"field","New":"sub"}},
{"name":"ImageListEntry","kind":"type","in":"ImageListPropertyPage","fields":["ImageData","Key","Tag","CachedOrigWidth","CachedOrigHeight","CachedOrigInfo","CachedPicture"]},
{"name":"ModShowImageListPropertyPage","kind":"module","public":false},
{"name":"ModShowImageListPropertyPage","kind":"module","public":false},
{"name":"ImagesHelper","kind":"module","public":false},
{"name":"BITMAP","kind":"type","in":"ImagesHelper","public":false},
{"name":"Control","kind":"interface","public":false},
{"name":"IScheduledCallback","kind":"interface","public":false},
{"name":"ITwinBasicDesignerExtensions","kind":"interface","public":false},
{"name":"ListImage","kind":"class","members":{"Index":"field","Key":"field","Picture":"field","Tag":"field","New":"sub","Draw":"sub","ExtractIcon":"function"}},
{"name":"ListImages","kind":"class","members":{"Add":"function","Clear":"sub","ControlDefault":"property","Count":"property","Item":"property","Exists":"property","_NewEnum":"function","Remove":"sub"},"hiddenMembers":["ControlDefault"]},
{"name":"ListItem","kind":"class","members":{"Tag":"field","InternalIcon":"field","InternalSmallIcon":"field","SubItems":"property","ToolTipText":"field","Bold":"field","BackColor":"field","ForeColor":"field","New":"sub","Icon":"property","SmallIcon":"property","Index":"property","Key":"property","Text":"property","EnsureVisible":"sub","Checked":"property","Selected":"property","Ghosted":"property","CreateDragImage":"function","Left":"property","Top":"property","Width":"property","Height":"property"}},
{"name":"ListItems","kind":"class","members":{"ContainerList":"field","New":"sub","_NewEnum":"function","Add":"function","Clear":"sub","Count":"property","Item":"property","Remove":"sub"}},
{"name":"ListViewConsts","kind":"module","public":false},
{"name":"LVNotifications","kind":"enum","in":"ListViewConsts","values":["LVN_FIRST","LVN_ITEMCHANGING","LVN_ITEMCHANGED","LVN_INSERTITEM","LVN_DELETEITEM","LVN_DELETEALLITEMS","LVN_BEGINLABELEDITA","LVN_BEGINLABELEDITW","LVN_ENDLABELEDITA","LVN_ENDLABELEDITW","LVN_COLUMNCLICK","LVN_BEGINDRAG","LVN_BEGINRDRAG","LVN_ODCACHEHINT","LVN_ODFINDITEMA","LVN_ODFINDITEMW","LVN_ITEMACTIVATE","LVN_ODSTATECHANGED","LVN_HOTTRACK","LVN_GETDISPINFOA","LVN_GETDISPINFOW","LVN_SETDISPINFOA","LVN_SETDISPINFOW","LVN_GETINFOTIPA","LVN_GETINFOTIPW"]},
{"name":"LVMessages","kind":"enum","in":"ListViewConsts","values":["LVM_FIRST","LVM_GETBKCOLOR","LVM_SETBKCOLOR","LVM_GETIMAGELIST","LVM_SETIMAGELIST","LVM_GETITEMCOUNT","LVM_GETITEMA","LVM_GETITEMW","LVM_SETITEMA","LVM_SETITEMW","LVM_INSERTITEMA","LVM_INSERTITEMW","LVM_DELETEITEM","LVM_DELETEALLITEMS","LVM_GETCALLBACKMASK","LVM_SETCALLBACKMASK","LVM_GETNEXTITEM","LVM_FINDITEMA","LVM_FINDITEMW","LVM_GETITEMRECT","LVM_SETITEMPOSITION","LVM_GETITEMPOSITION","LVM_GETSTRINGWIDTHA","LVM_GETSTRINGWIDTHW","LVM_HITTEST","LVM_ENSUREVISIBLE","LVM_SCROLL","LVM_REDRAWITEMS","LVM_ARRANGE","LVM_EDITLABELA","LVM_EDITLABELW","LVM_GETCOLUMNA","LVM_GETCOLUMNW","LVM_SETCOLUMNA","LVM_SETCOLUMNW","LVM_INSERTCOLUMNA","LVM_INSERTCOLUMNW","LVM_DELETECOLUMN","LVM_GETCOLUMNWIDTH","LVM_SETCOLUMNWIDTH","LVM_GETHEADER","LVM_CREATEDRAGIMAGE","LVM_GETVIEWRECT","LVM_GETTEXTCOLOR","LVM_SETTEXTCOLOR","LVM_GETTEXTBKCOLOR","LVM_SETTEXTBKCOLOR","LVM_GETTOPINDEX","LVM_GETCOUNTPERPAGE","LVM_GETORIGIN","LVM_UPDATE","LVM_SETITEMSTATE","LVM_GETITEMSTATE","LVM_GETITEMTEXTA","LVM_GETITEMTEXTW","LVM_SETITEMTEXTA","LVM_SETITEMTEXTW","LVM_SETITEMCOUNT","LVM_SORTITEMS","LVM_SETITEMPOSITION32","LVM_GETSELECTEDCOUNT","LVM_GETITEMSPACING","LVM_GETISEARCHSTRINGA","LVM_GETISEARCHSTRINGW","LVM_SETICONSPACING","LVM_SETEXTENDEDLISTVIEWSTYLE","LVM_GETEXTENDEDLISTVIEWSTYLE","LVM_GETSUBITEMRECT","LVM_SUBITEMHITTEST","LVM_SETCOLUMNORDERARRAY","LVM_GETCOLUMNORDERARRAY","LVM_SETHOTITEM","LVM_GETHOTITEM","LVM_SETHOTCURSOR","LVM_GETHOTCURSOR","LVM_APPROXIMATEVIEWRECT","LV_MAX_WORKAREAS","LVM_SETWORKAREAS","LVM_GETWORKAREAS","LVM_GETNUMBEROFWORKAREAS","LVM_GETSELECTIONMARK","LVM_SETSELECTIONMARK","LVM_SETHOVERTIME","LVM_GETHOVERTIME","LVM_SETTOOLTIPS","LVM_GETTOOLTIPS","LVM_SORTITEMSEX","LVM_SETBKIMAGEA","LVM_SETBKIMAGEW","LVM_GETBKIMAGEA","LVM_GETBKIMAGEW","LVM_SETSELECTEDCOLUMN","LVM_SETVIEW","LVM_GETVIEW","LVM_INSERTGROUP","LVM_SETGROUPINFO","LVM_GETGROUPINFO","LVM_REMOVEGROUP","LVM_MOVEGROUP","LVM_GETGROUPCOUNT","LVM_GETGROUPINFOBYINDEX","LVM_MOVEITEMTOGROUP","LVM_GETGROUPRECT","LVM_SETGROUPMETRICS","LVM_GETGROUPMETRICS","LVM_ENABLEGROUPVIEW","LVM_SORTGROUPS","LVM_INSERTGROUPSORTED","LVM_REMOVEALLGROUPS","LVM_HASGROUP","LVM_GETGROUPSTATE","LVM_GETFOCUSEDGROUP","LVM_SETTILEVIEWINFO","LVM_GETTILEVIEWINFO","LVM_SETTILEINFO","LVM_GETTILEINFO","LVM_SETINSERTMARK","LVM_GETINSERTMARK","LVM_INSERTMARKHITTEST","LVM_GETINSERTMARKRECT","LVM_SETINSERTMARKCOLOR","LVM_GETINSERTMARKCOLOR","LVM_SETINFOTIP","LVM_GETSELECTEDCOLUMN","LVM_ISGROUPVIEWENABLED","LVM_GETOUTLINECOLOR","LVM_SETOUTLINECOLOR","LVM_CANCELEDITLABEL","LVM_MAPINDEXTOID","LVM_MAPIDTOINDEX","LVM_ISITEMVISIBLE","LVM_GETEMPTYTEXT","LVM_GETFOOTERRECT","LVM_GETFOOTERINFO","LVM_GETFOOTERITEMRECT","LVM_GETFOOTERITEM","LVM_GETITEMINDEXRECT","LVM_SETITEMINDEXSTATE","LVM_GETNEXTITEMINDEX"]},
{"name":"LVMisc","kind":"enum","in":"ListViewConsts","values":["LVSIL_NORMAL","LVSIL_SMALL","LVSIL_STATE","LVSIL_GROUPHEADER","LVNI_ALL","LVNI_FOCUSED","LVNI_SELECTED","LVNI_CUT","LVNI_DROPHILITED","LVNI_STATEMASK","LVNI_VISIBLEORDER","LVNI_PREVIOUS","LVNI_VISIBLEONLY","LVNI_SAMEGROUPONLY","LVNI_ABOVE","LVNI_BELOW","LVNI_TOLEFT","LVNI_TORIGHT","LVNI_DIRECTIONMASK","LVFI_PARAM","LVFI_STRING","LVFI_SUBSTRING","LVFI_PARTIAL","LVFI_WRAP","LVFI_NEARESTXY","LVIR_BOUNDS","LVIR_ICON","LVIR_LABEL","LVIR_SELECTBOUNDS","LVHT_NOWHERE","LVHT_ONITEMICON","LVHT_ONITEMLABEL","LVHT_ONITEMSTATEICON","LVHT_ONITEM","LVHT_ABOVE","LVHT_BELOW","LVHT_TORIGHT","LVHT_TOLEFT","LVHT_EX_GROUP_HEADER","LVHT_EX_GROUP_FOOTER","LVHT_EX_GROUP_COLLAPSE","LVHT_EX_GROUP_BACKGROUND","LVHT_EX_GROUP_STATEICON","LVHT_EX_GROUP_SUBSETLINK","LVHT_EX_GROUP","LVHT_EX_ONCONTENTS","LVHT_EX_FOOTER","LVA_DEFAULT","LVA_ALIGNLEFT","LVA_ALIGNTOP","LVA_SNAPTOGRID","LVCF_FMT","LVCF_WIDTH","LVCF_TEXT","LVCF_SUBITEM","LVCF_IMAGE","LVCF_ORDER","LVCF_MINWIDTH","LVCF_DEFAULTWIDTH","LVCF_IDEALWIDTH","LVCFMT_LEFT","LVCFMT_RIGHT","LVCFMT_CENTER","LVCFMT_JUSTIFYMASK","LVCFMT_IMAGE","LVCFMT_BITMAP_ON_RIGHT","LVCFMT_COL_HAS_IMAGES","LVCFMT_FIXED_WIDTH","LVCFMT_NO_DPI_SCALE","LVCFMT_FIXED_RATIO","LVCFMT_LINE_BREAK","LVCFMT_FILL","LVCFMT_WRAP","LVCFMT_NO_TITLE","LVCFMT_TILE_PLACEMENTMASK","LVCFMT_SPLITBUTTON","LVSCW_AUTOSIZE","LVSCW_AUTOSIZE_USEHEADER","LVSICF_NOINVALIDATEALL","LVSICF_NOSCROLL","LVBKIF_SOURCE_NONE","LVBKIF_SOURCE_HBITMAP","LVBKIF_SOURCE_URL","LVBKIF_SOURCE_MASK","LVBKIF_STYLE_NORMAL","LVBKIF_STYLE_TILE","LVBKIF_STYLE_MASK","LVBKIF_FLAG_TILEOFFSET","LVBKIF_TYPE_WATERMARK","LVBKIF_FLAG_ALPHABLEND","LV_VIEW_ICON","LV_VIEW_DETAILS","LV_VIEW_SMALLICON","LV_VIEW_LIST","LV_VIEW_TILE","LV_VIEW_MAX","LVGF_NONE","LVGF_HEADER","LVGF_FOOTER","LVGF_STATE","LVGF_ALIGN","LVGF_GROUPID","LVGF_SUBTITLE","LVGF_TASK","LVGF_DESCRIPTIONTOP","LVGF_DESCRIPTIONBOTTOM","LVGF_TITLEIMAGE","LVGF_EXTENDEDIMAGE","LVGF_ITEMS","LVGF_SUBSET","LVGF_SUBSETITEMS","LVGS_NORMAL","LVGS_COLLAPSED","LVGS_HIDDEN","LVGS_NOHEADER","LVGS_COLLAPSIBLE","LVGS_FOCUSED","LVGS_SELECTED","LVGS_SUBSETED","LVGS_SUBSETLINKFOCUSED","LVGA_HEADER_LEFT","LVGA_HEADER_CENTER","LVGA_HEADER_RIGHT","LVGA_FOOTER_LEFT","LVGA_FOOTER_CENTER","LVGA_FOOTER_RIGHT","LVGGR_GROUP","LVGGR_HEADER","LVGGR_LABEL","LVGGR_SUBSETLINK","LVGMF_NONE","LVGMF_BORDERSIZE","LVGMF_BORDERCOLOR","LVGMF_TEXTCOLOR","LVTVIF_AUTOSIZE","LVTVIF_FIXEDWIDTH","LVTVIF_FIXEDHEIGHT","LVTVIF_FIXEDSIZE","LVTVIF_EXTENDED","LVTVIM_TILESIZE","LVTVIM_COLUMNS","LVTVIM_LABELMARGIN","LVFIF_TEXT","LVFIF_STATE","LVFIS_FOCUSED","LVIS_FOCUSED","LVIS_SELECTED","LVIS_CUT","LVIS_DROPHILITED","LVIS_GLOW","LVIS_ACTIVATING","LVIS_OVERLAYMASK","LVIS_STATEIMAGEMASK","LVFF_ITEMCOUNT","LVIM_AFTER","LVIF_TEXT","LVIF_IMAGE","LVIF_PARAM","LVIF_STATE","LVIF_INDENT","LVIF_NORECOMPUTE","LVIF_GROUPID","LVIF_COLUMNS","LVIF_COLFMT"]},
{"name":"LVFINDINFOW","kind":"type","in":"ListViewConsts","public":false},
{"name":"LVCOLUMNW","kind":"type","in":"ListViewConsts","public":false},
{"name":"LVBKIMAGEW","kind":"type","in":"ListViewConsts","public":false},
{"name":"LVGROUP","kind":"type","in":"ListViewConsts","public":false},
{"name":"LVGROUPMETRICS","kind":"type","in":"ListViewConsts","public":false},
{"name":"LVINSERTGROUPSORTED","kind":"type","in":"ListViewConsts","public":false},
{"name":"NMLVDISPINFOW","kind":"type","in":"ListViewConsts","public":false},
{"name":"LVHITTESTINFO","kind":"type","in":"ListViewConsts","public":false},
{"name":"LVTILEVIEWINFO","kind":"type","in":"ListViewConsts","public":false},
{"name":"LVTILEINFO","kind":"type","in":"ListViewConsts","public":false},
{"name":"LVINSERTMARK","kind":"type","in":"ListViewConsts","public":false},
{"name":"LVSETINFOTIP","kind":"type","in":"ListViewConsts","public":false},