-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVestris.ResourceLib.xml
6603 lines (6439 loc) · 293 KB
/
Vestris.ResourceLib.xml
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>Vestris.ResourceLib</name>
</assembly>
<members>
<member name="T:Vestris.ResourceLib.Accelerator">
<summary>
Standard accelerator.
</summary>
</member>
<member name="M:Vestris.ResourceLib.Accelerator.Read(System.IntPtr)">
<summary>
Read the accelerator.
</summary>
<param name="lpRes">Address in memory.</param>
</member>
<member name="M:Vestris.ResourceLib.Accelerator.Write(System.IO.BinaryWriter)">
<summary>
Write accelerator to a binary stream.
</summary>
<param name="w">Binary stream.</param>
</member>
<member name="P:Vestris.ResourceLib.Accelerator.Key">
<summary>
String representation of the accelerator key.
</summary>
</member>
<member name="P:Vestris.ResourceLib.Accelerator.Command">
<summary>
An unsigned integer value that identifies the accelerator.
</summary>
</member>
<member name="M:Vestris.ResourceLib.Accelerator.ToString">
<summary>
String representation of the accelerator.
</summary>
<returns>String representation of the accelerator.</returns>
</member>
<member name="T:Vestris.ResourceLib.AcceleratorResource">
<summary>
An accelerator, RT_ACCELERATOR resource.
An accelerator provides the user with access to an application's command set.
</summary>
</member>
<member name="P:Vestris.ResourceLib.AcceleratorResource.Accelerators">
<summary>
Accelerator keys.
</summary>
</member>
<member name="M:Vestris.ResourceLib.AcceleratorResource.#ctor">
<summary>
A new accelerator resource.
</summary>
</member>
<member name="M:Vestris.ResourceLib.AcceleratorResource.#ctor(System.IntPtr,System.IntPtr,Vestris.ResourceLib.ResourceId,Vestris.ResourceLib.ResourceId,System.UInt16,System.Int32)">
<summary>
An existing accelerator resource.
</summary>
<param name="hModule">Module handle.</param>
<param name="hResource">Resource ID.</param>
<param name="type">Resource type.</param>
<param name="name">Resource name.</param>
<param name="language">Language ID.</param>
<param name="size">Resource size.</param>
</member>
<member name="M:Vestris.ResourceLib.AcceleratorResource.Read(System.IntPtr,System.IntPtr)">
<summary>
Read the accelerators table.
</summary>
<param name="hModule">Handle to a module.</param>
<param name="lpRes">Pointer to the beginning of the accelerator table.</param>
<returns>Address of the end of the accelerator table.</returns>
</member>
<member name="M:Vestris.ResourceLib.AcceleratorResource.ToString">
<summary>
String representation of the accelerators resource.
</summary>
<returns></returns>
</member>
<member name="T:Vestris.ResourceLib.Aligned">
<summary>
Creates an 8 bit aligned copy of the buffer if it is not already aligned
</summary>
</member>
<member name="T:Vestris.ResourceLib.BitmapFile">
<summary>
A bitmap file in a .bmp format.
</summary>
</member>
<member name="P:Vestris.ResourceLib.BitmapFile.Bitmap">
<summary>
Device independent bitmap.
</summary>
</member>
<member name="M:Vestris.ResourceLib.BitmapFile.#ctor(System.String)">
<summary>
An existing bitmap file.
</summary>
<param name="filename">A file in a .bmp format.</param>
</member>
<member name="T:Vestris.ResourceLib.BitmapResource">
<summary>
An embedded bitmap resource.
</summary>
</member>
<member name="M:Vestris.ResourceLib.BitmapResource.#ctor(System.IntPtr,System.IntPtr,Vestris.ResourceLib.ResourceId,Vestris.ResourceLib.ResourceId,System.UInt16,System.Int32)">
<summary>
An existing bitmap resource.
</summary>
<param name="hModule">Module handle.</param>
<param name="hResource">Resource ID.</param>
<param name="type">Resource type.</param>
<param name="name">Resource name.</param>
<param name="language">Language ID.</param>
<param name="size">Resource size.</param>
</member>
<member name="M:Vestris.ResourceLib.BitmapResource.#ctor">
<summary>
A new bitmap resource.
</summary>
</member>
<member name="M:Vestris.ResourceLib.BitmapResource.Read(System.IntPtr,System.IntPtr)">
<summary>
Read the resource.
</summary>
<param name="hModule">Module handle.</param>
<param name="lpRes">Pointer to the beginning of a resource.</param>
<returns>Pointer to the end of the resource.</returns>
</member>
<member name="M:Vestris.ResourceLib.BitmapResource.Write(System.IO.BinaryWriter)">
<summary>
Write the bitmap resource to a binary stream.
</summary>
<param name="w">Binary stream.</param>
</member>
<member name="P:Vestris.ResourceLib.BitmapResource.Bitmap">
<summary>
A device independent bitmap.
</summary>
</member>
<member name="T:Vestris.ResourceLib.CursorDirectoryResource">
<summary>
This structure depicts the organization of data in a hardware-independent cursor resource.
</summary>
</member>
<member name="M:Vestris.ResourceLib.CursorDirectoryResource.#ctor(System.IntPtr,System.IntPtr,Vestris.ResourceLib.ResourceId,Vestris.ResourceLib.ResourceId,System.UInt16,System.Int32)">
<summary>
A hardware-independent cursor resource.
</summary>
<param name="hModule">Module handle.</param>
<param name="hResource">Resource ID.</param>
<param name="type">Resource type.</param>
<param name="name">Resource name.</param>
<param name="language">Language ID.</param>
<param name="size">Resource size.</param>
</member>
<member name="M:Vestris.ResourceLib.CursorDirectoryResource.#ctor">
<summary>
A new hardware-independent cursor resource.
</summary>
</member>
<member name="M:Vestris.ResourceLib.CursorDirectoryResource.#ctor(Vestris.ResourceLib.IconFile)">
<summary>
A new collection of cursors that can be embedded into an executable file.
</summary>
</member>
<member name="T:Vestris.ResourceLib.CursorResource">
<summary>
This structure depicts the organization of data in a cursor resource.
</summary>
</member>
<member name="M:Vestris.ResourceLib.CursorResource.#ctor(System.IntPtr,System.IntPtr,Vestris.ResourceLib.ResourceId,Vestris.ResourceLib.ResourceId,System.UInt16,System.Int32)">
<summary>
An existing cursor resource.
</summary>
<param name="hModule">Module handle.</param>
<param name="hResource">Resource ID.</param>
<param name="type">Resource type.</param>
<param name="name">Resource name.</param>
<param name="language">Language ID.</param>
<param name="size">Resource size.</param>
</member>
<member name="M:Vestris.ResourceLib.CursorResource.#ctor">
<summary>
A new cursor resource.
</summary>
</member>
<member name="M:Vestris.ResourceLib.CursorResource.#ctor(Vestris.ResourceLib.IconFileIcon,Vestris.ResourceLib.ResourceId,System.UInt16)">
<summary>
Convert into an icon resource that can be written into an executable.
</summary>
<param name="icon">Icon image.</param>
<param name="id">Icon Id.</param>
<param name="language">Language.</param>
<returns>An icon resource.</returns>
</member>
<member name="P:Vestris.ResourceLib.CursorResource.HotspotX">
<summary>
Horizontal hotspot coordinate.
The hot spot of a cursor is the point to which Windows refers in tracking the cursor's position.
</summary>
</member>
<member name="P:Vestris.ResourceLib.CursorResource.HotspotY">
<summary>
Vertical hot spot coordinate.
The hot spot of a cursor is the point to which Windows refers in tracking the cursor's position.
</summary>
</member>
<member name="M:Vestris.ResourceLib.CursorResource.SaveIconTo(System.String)">
<summary>
Write the cursor data to a file.
</summary>
<param name="filename">Target executable file.</param>
</member>
<member name="M:Vestris.ResourceLib.CursorResource.ReadImage(System.IntPtr,System.UInt32)">
<summary>
Read DIB image.
</summary>
<param name="dibBits">DIB bits.</param>
<param name="size">DIB size.</param>
</member>
<member name="T:Vestris.ResourceLib.DeviceIndependentBitmap">
<summary>
A device-independent image consists of a BITMAPINFOHEADER where
bmWidth is the width of the image andbmHeight is double the height
of the image, followed by the bitmap color table, followed by the image
pixels, followed by the mask pixels.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DeviceIndependentBitmap.Data">
<summary>
Raw image data.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DeviceIndependentBitmap.Header">
<summary>
Bitmap info header.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DeviceIndependentBitmap.Size">
<summary>
Bitmap size in bytes.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DeviceIndependentBitmap.#ctor">
<summary>
A new icon image.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DeviceIndependentBitmap.#ctor(System.Byte[])">
<summary>
A device-independent bitmap.
</summary>
<param name="data">Bitmap data.</param>
</member>
<member name="M:Vestris.ResourceLib.DeviceIndependentBitmap.#ctor(Vestris.ResourceLib.DeviceIndependentBitmap)">
<summary>
Create a copy of an image.
</summary>
<param name="image">Source image.</param>
</member>
<member name="M:Vestris.ResourceLib.DeviceIndependentBitmap.Read(System.IntPtr,System.UInt32)">
<summary>
Read icon data.
</summary>
<param name="lpData">Pointer to the beginning of icon data.</param>
<param name="size">Icon data size.</param>
</member>
<member name="P:Vestris.ResourceLib.DeviceIndependentBitmap.MaskImageSize">
<summary>
Size of the image mask.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DeviceIndependentBitmap.XorImageIndex">
<summary>
Position of the DIB bitmap bits within a DIB bitmap array.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DeviceIndependentBitmap.ColorCount">
<summary>
Number of colors in the palette.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DeviceIndependentBitmap.GetDIBRowWidth(System.Int32)">
<summary>
Returns the width of a row in a DIB Bitmap given the number of bits. DIB Bitmap rows always align on a DWORD boundary.
</summary>
<param name="width">Number of bits.</param>
<returns>Width of a row in bytes.</returns>
</member>
<member name="P:Vestris.ResourceLib.DeviceIndependentBitmap.Mask">
<summary>
Bitmap monochrome mask.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DeviceIndependentBitmap.Color">
<summary>
Bitmap color (XOR) part of the image.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DeviceIndependentBitmap.Image">
<summary>
Complete image.
</summary>
</member>
<member name="T:Vestris.ResourceLib.DialogExTemplate">
<summary>
A container for the DIALOGTEMPLATEEX structure.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogExTemplate.CharacterSet">
<summary>
Indicates the character set to use.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogExTemplate.x">
<summary>
X-coordinate, in dialog box units, of the upper-left corner of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogExTemplate.y">
<summary>
Y-coordinate, in dialog box units, of the upper-left corner of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogExTemplate.cx">
<summary>
Width, in dialog box units, of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogExTemplate.cy">
<summary>
Height, in dialog box units, of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogExTemplate.Style">
<summary>
Dialog style.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogExTemplate.ExtendedStyle">
<summary>
Extended dialog style.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogExTemplate.Weight">
<summary>
Weight of the font.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogExTemplate.Italic">
<summary>
Indicates whether the font is italic.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogExTemplate.ControlCount">
<summary>
Number of dialog items.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DialogExTemplate.#ctor">
<summary>
An extended dialog structure.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DialogExTemplate.Read(System.IntPtr)">
<summary>
Read the dialog resource.
</summary>
<param name="lpRes">Pointer to the beginning of the dialog structure.</param>
</member>
<member name="M:Vestris.ResourceLib.DialogExTemplate.Write(System.IO.BinaryWriter)">
<summary>
Write dialog control to a binary stream.
</summary>
<param name="w">Binary stream.</param>
</member>
<member name="M:Vestris.ResourceLib.DialogExTemplate.ToString">
<summary>
String representation of the dialog.
</summary>
<returns>String in the DIALOGEX [dialog] format.</returns>
</member>
<member name="T:Vestris.ResourceLib.DialogExTemplateControl">
<summary>
A container for the DIALOGTEMPLATEEX structure.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogExTemplateControl.x">
<summary>
X-coordinate, in dialog box units, of the upper-left corner of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogExTemplateControl.y">
<summary>
Y-coordinate, in dialog box units, of the upper-left corner of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogExTemplateControl.cx">
<summary>
Width, in dialog box units, of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogExTemplateControl.cy">
<summary>
Height, in dialog box units, of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogExTemplateControl.Style">
<summary>
Dialog style.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogExTemplateControl.ExtendedStyle">
<summary>
Extended dialog style.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogExTemplateControl.Id">
<summary>
Control identifier.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DialogExTemplateControl.#ctor">
<summary>
An extended dialog control template structure.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DialogExTemplateControl.Read(System.IntPtr)">
<summary>
Read the dialog control.
</summary>
<param name="lpRes">Pointer to the beginning of the dialog structure.</param>
</member>
<member name="M:Vestris.ResourceLib.DialogExTemplateControl.Write(System.IO.BinaryWriter)">
<summary>
Write the dialog control to a binary stream.
</summary>
<param name="w">Binary stream.</param>
</member>
<member name="M:Vestris.ResourceLib.DialogExTemplateControl.ToString">
<summary>
Return a string representation of the dialog control.
</summary>
<returns>A single line in the "CLASS name id, dimensions and styles' format.</returns>
</member>
<member name="T:Vestris.ResourceLib.DialogResource">
<summary>
A dialog template resource.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogResource.Template">
<summary>
A dialog template structure that describes the dialog.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DialogResource.#ctor(System.IntPtr,System.IntPtr,Vestris.ResourceLib.ResourceId,Vestris.ResourceLib.ResourceId,System.UInt16,System.Int32)">
<summary>
A structured dialog resource embedded in an executable module.
</summary>
<param name="hModule">Module handle.</param>
<param name="hResource">Resource handle.</param>
<param name="type">Type of resource.</param>
<param name="name">Resource name.</param>
<param name="language">Language id.</param>
<param name="size">Resource size.</param>
</member>
<member name="M:Vestris.ResourceLib.DialogResource.#ctor">
<summary>
A structured dialog resource embedded in an executable module.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DialogResource.ToString">
<summary>
Dialog resource in standard resource editor text format.
</summary>
<returns>Multi-line string.</returns>
</member>
<member name="T:Vestris.ResourceLib.DialogTemplate">
<summary>
A container for the DIALOGTEMPLATE structure.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplate.x">
<summary>
X-coordinate, in dialog box units, of the upper-left corner of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplate.y">
<summary>
Y-coordinate, in dialog box units, of the upper-left corner of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplate.cx">
<summary>
Width, in dialog box units, of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplate.cy">
<summary>
Height, in dialog box units, of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplate.Style">
<summary>
Dialog style.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplate.ExtendedStyle">
<summary>
Extended dialog style.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplate.ControlCount">
<summary>
Number of dialog items.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DialogTemplate.#ctor">
<summary>
A standard dialog structure.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DialogTemplate.Read(System.IntPtr)">
<summary>
Read the dialog resource.
</summary>
<param name="lpRes">Pointer to the beginning of the dialog structure.</param>
</member>
<member name="M:Vestris.ResourceLib.DialogTemplate.Write(System.IO.BinaryWriter)">
<summary>
Write the dialog template data to a binary stream.
</summary>
<param name="w">Binary stream.</param>
</member>
<member name="M:Vestris.ResourceLib.DialogTemplate.ToString">
<summary>
Returns a string representation of the dialog.
</summary>
<returns>String in the DIALOG ... format.</returns>
</member>
<member name="T:Vestris.ResourceLib.DialogTemplateBase">
<summary>
A dialog template.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateBase.x">
<summary>
X-coordinate, in dialog box units, of the upper-left corner of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateBase.y">
<summary>
Y-coordinate, in dialog box units, of the upper-left corner of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateBase.cx">
<summary>
Width, in dialog box units, of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateBase.cy">
<summary>
Height, in dialog box units, of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateBase.Style">
<summary>
Style of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateBase.ExtendedStyle">
<summary>
Optional extended style of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateBase.ControlCount">
<summary>
Number of items in this structure.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateBase.TypeFace">
<summary>
The name of the typeface for the font.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateBase.PointSize">
<summary>
Point size of the font to use for the text in the dialog box and its controls.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateBase.Caption">
<summary>
Dialog caption.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateBase.MenuId">
<summary>
Menu resource Id.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateBase.WindowClassId">
<summary>
Window class Id.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateBase.Controls">
<summary>
Controls within this dialog.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DialogTemplateBase.ToString">
<summary>
Dialog template representation in a standard text format.
</summary>
<returns>Multiline string.</returns>
</member>
<member name="M:Vestris.ResourceLib.DialogTemplateBase.ToControlString">
<summary>
String represetnation of a control.
</summary>
<returns></returns>
</member>
<member name="M:Vestris.ResourceLib.DialogTemplateBase.Write(System.IO.BinaryWriter)">
<summary>
Write the resource to a binary stream.
</summary>
<param name="w">Binary stream.</param>
</member>
<member name="T:Vestris.ResourceLib.DialogTemplateControl">
<summary>
A container for a control within a dialog template.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateControl.x">
<summary>
X-coordinate, in dialog box units, of the upper-left corner of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateControl.y">
<summary>
Y-coordinate, in dialog box units, of the upper-left corner of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateControl.cx">
<summary>
Width, in dialog box units, of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateControl.cy">
<summary>
Height, in dialog box units, of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateControl.Style">
<summary>
Dialog style.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateControl.ExtendedStyle">
<summary>
Extended dialog style.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateControl.Id">
<summary>
Control identifier.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DialogTemplateControl.#ctor">
<summary>
A standard dialog control structure.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DialogTemplateControl.Write(System.IO.BinaryWriter)">
<summary>
Write the dialog control to a binary stream.
</summary>
<param name="w">Binary stream.</param>
</member>
<member name="M:Vestris.ResourceLib.DialogTemplateControl.ToString">
<summary>
String represetnation of a control.
</summary>
<returns></returns>
</member>
<member name="T:Vestris.ResourceLib.DialogTemplateControlBase">
<summary>
A dialog template.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateControlBase.x">
<summary>
X-coordinate, in dialog box units, of the upper-left corner of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateControlBase.y">
<summary>
Y-coordinate, in dialog box units, of the upper-left corner of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateControlBase.cx">
<summary>
Width, in dialog box units, of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateControlBase.cy">
<summary>
Height, in dialog box units, of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateControlBase.Style">
<summary>
Style of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateControlBase.ExtendedStyle">
<summary>
Optional extended style of the dialog box.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateControlBase.CaptionId">
<summary>
Dialog caption.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateControlBase.ControlClassId">
<summary>
Window class Id.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateControlBase.ControlClass">
<summary>
Window class of the control.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DialogTemplateControlBase.CreationData">
<summary>
Additional creation data.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DialogTemplateControlBase.Write(System.IO.BinaryWriter)">
<summary>
Write the dialog control to a binary stream.
</summary>
<param name="w">Binary stream.</param>
</member>
<member name="T:Vestris.ResourceLib.DialogTemplateUtil">
<summary>
Dialog template utility functions.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DialogTemplateUtil.ReadResourceId(System.IntPtr,Vestris.ResourceLib.ResourceId@)">
<summary>
Read a dialog resource id.
</summary>
<param name="lpRes">Address in memory.</param>
<param name="rc">Resource read.</param>
<returns></returns>
</member>
<member name="M:Vestris.ResourceLib.DialogTemplateUtil.StyleToString``2(System.UInt32)">
<summary>
String representation of the dialog or control style of two types.
</summary>
<param name="style">Dialog or control style.</param>
<returns>String in the "s1 | s2 | ... | s3" format.</returns>
</member>
<member name="M:Vestris.ResourceLib.DialogTemplateUtil.StyleToString``2(System.UInt32,System.UInt32)">
<summary>
String representation of the dialog or control styles of two types.
</summary>
<param name="style">Dialog or control style.</param>
<param name="exstyle">Dialog or control extended style.</param>
<returns>String in the "s1 | s2 | ... | s3" format.</returns>
</member>
<member name="M:Vestris.ResourceLib.DialogTemplateUtil.StyleToString``1(System.UInt32)">
<summary>
String representation of the dialog or control style of one type.
</summary>
<param name="style">Dialog or control style.</param>
<returns>String in the "s1 | s2 | ... | s3" format.</returns>
</member>
<member name="T:Vestris.ResourceLib.DirectoryResource`1">
<summary>
This structure depicts the organization of data in a hardware-independent icon resource.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DirectoryResource`1.ResourceType">
<summary>
Returns the type of the resource in this group.
</summary>
</member>
<member name="P:Vestris.ResourceLib.DirectoryResource`1.Icons">
<summary>
Icons contained in this hardware-independent icon resource.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DirectoryResource`1.#ctor(System.IntPtr,System.IntPtr,Vestris.ResourceLib.ResourceId,Vestris.ResourceLib.ResourceId,System.UInt16,System.Int32)">
<summary>
A hardware-independent icon resource.
</summary>
<param name="hModule">Module handle.</param>
<param name="hResource">Resource ID.</param>
<param name="type">Resource type.</param>
<param name="name">Resource name.</param>
<param name="language">Language ID.</param>
<param name="size">Resource size.</param>
</member>
<member name="M:Vestris.ResourceLib.DirectoryResource`1.#ctor(Vestris.ResourceLib.Kernel32.ResourceTypes)">
<summary>
A new hardware-independent icon resource.
</summary>
</member>
<member name="M:Vestris.ResourceLib.DirectoryResource`1.SaveTo(System.String)">
<summary>
Save a hardware-independent icon resource to an executable file.
</summary>
<param name="filename">Name of an executable file (.exe or .dll).</param>
</member>
<member name="M:Vestris.ResourceLib.DirectoryResource`1.Read(System.IntPtr,System.IntPtr)">
<summary>
Read a hardware-independent icon resource from a loaded module.
</summary>
<param name="hModule">Loaded executable module.</param>
<param name="lpRes">Pointer to the beginning of a hardware-independent icon resource.</param>
<returns>Pointer to the end of the hardware-independent icon resource.</returns>
</member>
<member name="M:Vestris.ResourceLib.DirectoryResource`1.Write(System.IO.BinaryWriter)">
<summary>
Write a hardware-independent icon resource to a binary stream.
</summary>
<param name="w">Binary stream.</param>
</member>
<member name="T:Vestris.ResourceLib.FixedFileInfo">
<summary>
Fixed file information.
</summary>
</member>
<member name="M:Vestris.ResourceLib.FixedFileInfo.#ctor">
<summary>
Default Windows fixed file information.
</summary>
</member>
<member name="P:Vestris.ResourceLib.FixedFileInfo.Value">
<summary>
Fixed file info structure.
</summary>
</member>
<member name="M:Vestris.ResourceLib.FixedFileInfo.Read(System.IntPtr)">
<summary>
Read the fixed file information structure.
</summary>
<param name="lpRes">Address in memory.</param>
</member>
<member name="P:Vestris.ResourceLib.FixedFileInfo.FileVersion">
<summary>
String representation of the file version.
</summary>
</member>
<member name="P:Vestris.ResourceLib.FixedFileInfo.ProductVersion">
<summary>
String representation of the protect version.
</summary>
</member>
<member name="P:Vestris.ResourceLib.FixedFileInfo.FileFlags">
<summary>
Gets or sets a bitmask that specifies the Boolean attributes of the file.
</summary>
</member>
<member name="M:Vestris.ResourceLib.FixedFileInfo.Write(System.IO.BinaryWriter)">
<summary>
Write fixed file information to a binary stream.
</summary>
<param name="w">Binary stream.</param>
</member>
<member name="P:Vestris.ResourceLib.FixedFileInfo.Size">
<summary>
Size of the VS_FIXEDFILEINFO structure.
</summary>
</member>
<member name="M:Vestris.ResourceLib.FixedFileInfo.ToString">
<summary>
String representation of the fixed file info.
</summary>
<returns>String representation of the fixed file info.</returns>
</member>
<member name="T:Vestris.ResourceLib.FontDirectoryEntry">
<summary>
A font directory entry.
</summary>
</member>
<member name="P:Vestris.ResourceLib.FontDirectoryEntry.FontOrdinal">
<summary>
Font ordinal.
</summary>
</member>
<member name="P:Vestris.ResourceLib.FontDirectoryEntry.FaceName">
<summary>
Typeface name of the font.
</summary>
</member>
<member name="P:Vestris.ResourceLib.FontDirectoryEntry.DeviceName">
<summary>
Specifies the name of the device if this font file is designated for a specific device.
</summary>
</member>
<member name="P:Vestris.ResourceLib.FontDirectoryEntry.Font">
<summary>
Font information.
</summary>
</member>
<member name="M:Vestris.ResourceLib.FontDirectoryEntry.#ctor">
<summary>
A new font directory entry.
</summary>
</member>
<member name="M:Vestris.ResourceLib.FontDirectoryEntry.Read(System.IntPtr)">
<summary>
Read the font directory entry.
</summary>
<param name="lpRes">Pointer in memory.</param>
<returns>Pointer to the end of the font directory entry.</returns>
</member>
<member name="M:Vestris.ResourceLib.FontDirectoryEntry.Write(System.IO.BinaryWriter)">
<summary>
Write the font directory entry to a binary stream.
</summary>
<param name="w">Binary stream.</param>
</member>
<member name="T:Vestris.ResourceLib.FontDirectoryResource">
<summary>
A font directory, RT_FONTDIR resource.
</summary>
</member>
<member name="P:Vestris.ResourceLib.FontDirectoryResource.Fonts">
<summary>
Number of fonts in this directory.
</summary>
</member>
<member name="M:Vestris.ResourceLib.FontDirectoryResource.#ctor">
<summary>
A new font resource.
</summary>
</member>
<member name="M:Vestris.ResourceLib.FontDirectoryResource.#ctor(System.IntPtr,System.IntPtr,Vestris.ResourceLib.ResourceId,Vestris.ResourceLib.ResourceId,System.UInt16,System.Int32)">
<summary>
An existing font resource.
</summary>
<param name="hModule">Module handle.</param>
<param name="hResource">Resource ID.</param>
<param name="type">Resource type.</param>
<param name="name">Resource name.</param>
<param name="language">Language ID.</param>
<param name="size">Resource size.</param>
</member>
<member name="M:Vestris.ResourceLib.FontDirectoryResource.Read(System.IntPtr,System.IntPtr)">
<summary>
Read the font resource.
</summary>
<param name="hModule">Handle to a module.</param>
<param name="lpRes">Pointer to the beginning of the font structure.</param>
<returns>Address of the end of the font structure.</returns>
</member>
<member name="M:Vestris.ResourceLib.FontDirectoryResource.Write(System.IO.BinaryWriter)">
<summary>
Write the font directory to a binary stream.
</summary>
<param name="w">Binary stream.</param>
</member>
<member name="T:Vestris.ResourceLib.FontResource">
<summary>
A font, RT_FONT resource.
</summary>
</member>
<member name="M:Vestris.ResourceLib.FontResource.#ctor">
<summary>
A new font resource.
</summary>
</member>
<member name="M:Vestris.ResourceLib.FontResource.#ctor(System.IntPtr,System.IntPtr,Vestris.ResourceLib.ResourceId,Vestris.ResourceLib.ResourceId,System.UInt16,System.Int32)">
<summary>
An existing font resource.
</summary>
<param name="hModule">Module handle.</param>
<param name="hResource">Resource ID.</param>
<param name="type">Resource type.</param>
<param name="name">Resource name.</param>
<param name="language">Language ID.</param>
<param name="size">Resource size.</param>
</member>
<member name="M:Vestris.ResourceLib.FontResource.Read(System.IntPtr,System.IntPtr)">
<summary>
Read the font resource.
</summary>
<param name="hModule">Handle to a module.</param>
<param name="lpRes">Pointer to the beginning of the font structure.</param>
<returns>Address of the end of the font structure.</returns>
</member>
<member name="M:Vestris.ResourceLib.FontResource.Write(System.IO.BinaryWriter)">