forked from dotnet/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSupport.xml
2833 lines (2591 loc) · 160 KB
/
Support.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
<Type Name="Support" FullName="Microsoft.VisualBasic.Compatibility.VB6.Support">
<TypeSignature Language="C#" Value="public sealed class Support" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed beforefieldinit Support extends System.Object" />
<TypeSignature Language="DocId" Value="T:Microsoft.VisualBasic.Compatibility.VB6.Support" />
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName>Microsoft.VisualBasic.CompilerServices.StandardModule</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>Contains various utility functions for backward compatibility with Visual Basic 6.0.</summary>
<remarks>
<format type="text/markdown"><]. Some functions replace Visual Basic 6.0 functions that are no longer supported in [!INCLUDE[vbprvb](~/includes/vbprvb-md.md)]; others compensate for differences in the object models.
To use functions in this class in a [!INCLUDE[vbprvb](~/includes/vbprvb-md.md)] project, add a reference to the `Microsoft.VisualBasic.Compatibility.VB6` namespace.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
<Members>
<Member MemberName="CopyArray">
<MemberSignature Language="C#" Value="public static Array CopyArray (Array SourceArray);" />
<MemberSignature Language="ILAsm" Value=".method public static class System.Array CopyArray(class System.Array SourceArray) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.CopyArray(System.Array)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Array</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="SourceArray" Type="System.Array" />
</Parameters>
<Docs>
<param name="SourceArray">A <see cref="T:System.Array" />.</param>
<summary>Duplicates Visual Basic 6.0 functionality of assigning an <see langword="Array" /> to a <see langword="Variant" />.</summary>
<returns>The array to copy.</returns>
<remarks>
<format type="text/markdown"><]. The `CopyArray` function is used by the upgrade tools to copy an `Array` to or from a `Variant` array.
To copy an array in [!INCLUDE[vbprvb](~/includes/vbprvb-md.md)], use the <xref:System.Array.Clone%2A>, <xref:System.Array.Copy%2A> or <xref:System.Array.CopyTo%2A> methods of the <xref:System.Array> class.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="CursorToIPicture">
<MemberSignature Language="C#" Value="public static object CursorToIPicture (System.Windows.Forms.Cursor curs);" />
<MemberSignature Language="ILAsm" Value=".method public static object CursorToIPicture(class System.Windows.Forms.Cursor curs) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.CursorToIPicture(System.Windows.Forms.Cursor)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="curs" Type="System.Windows.Forms.Cursor" />
</Parameters>
<Docs>
<param name="curs">The <see cref="T:System.Windows.Forms.Cursor" /> to convert.</param>
<summary>Returns an OLE <see langword="IPicture" /> object that corresponds to the specified <see cref="T:System.Windows.Forms.Cursor" />.</summary>
<returns>An <see cref="T:System.Object" /> that represents the OLE <see langword="IPicture" /> object.</returns>
<remarks>
<format type="text/markdown"><], use the <xref:System.Windows.Forms.AxHost.GetIPictureFromCursor%2A> method of the <xref:System.Windows.Forms.AxHost> class.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Eqv">
<MemberSignature Language="C#" Value="public static bool Eqv (bool a, bool b);" />
<MemberSignature Language="ILAsm" Value=".method public static bool Eqv(bool a, bool b) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.Eqv(System.Boolean,System.Boolean)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="a" Type="System.Boolean" />
<Parameter Name="b" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="a">A <see cref="T:System.Boolean" /> to compare.</param>
<param name="b">A <see cref="T:System.Boolean" /> to compare.</param>
<summary>Performs a logical equivalence on two <see cref="T:System.Boolean" /> expressions.</summary>
<returns>
<see langword="true" /> if the two expressions are equal; otherwise <see langword="false" />.</returns>
<remarks>
<format type="text/markdown"><], the `Eqv` operator is no longer a part of the Visual Basic language; use the equals (=) comparison operator in place of `Eqv` for logical evaluations.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Eqv">
<MemberSignature Language="C#" Value="public static byte Eqv (byte a, byte b);" />
<MemberSignature Language="ILAsm" Value=".method public static unsigned int8 Eqv(unsigned int8 a, unsigned int8 b) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.Eqv(System.Byte,System.Byte)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Byte</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="a" Type="System.Byte" />
<Parameter Name="b" Type="System.Byte" />
</Parameters>
<Docs>
<param name="a">A <see cref="T:System.Byte" /> to compare.</param>
<param name="b">A <see cref="T:System.Byte" /> to compare.</param>
<summary>Performs a logical equivalence on two <see cref="T:System.Byte" /> expressions.</summary>
<returns>A <see cref="T:System.Byte" /> that contains the result of the bitwise comparison.</returns>
<remarks>
<format type="text/markdown"><], the `Eqv` operator is no longer a part of the Visual Basic language; for bitwise evaluations use the `Not` and `XOr` operators.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Eqv">
<MemberSignature Language="C#" Value="public static short Eqv (short a, short b);" />
<MemberSignature Language="ILAsm" Value=".method public static int16 Eqv(int16 a, int16 b) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.Eqv(System.Int16,System.Int16)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int16</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="a" Type="System.Int16" />
<Parameter Name="b" Type="System.Int16" />
</Parameters>
<Docs>
<param name="a">A <see cref="T:System.Int16" /> to compare.</param>
<param name="b">A <see cref="T:System.Int16" /> to compare.</param>
<summary>Performs a logical equivalence on two <see cref="T:System.Int16" /> expressions.</summary>
<returns>A <see cref="T:System.Int16" /> that contains the result of the comparison.</returns>
<remarks>
<format type="text/markdown"><], the `Eqv` operator is no longer a part of the Visual Basic language; for bitwise evaluations use the `Not` and `XOr` operators.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Eqv">
<MemberSignature Language="C#" Value="public static int Eqv (int a, int b);" />
<MemberSignature Language="ILAsm" Value=".method public static int32 Eqv(int32 a, int32 b) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.Eqv(System.Int32,System.Int32)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="a" Type="System.Int32" />
<Parameter Name="b" Type="System.Int32" />
</Parameters>
<Docs>
<param name="a">A <see cref="T:System.Int32" /> to compare.</param>
<param name="b">A <see cref="T:System.Int32" /> to compare.</param>
<summary>Performs a logical equivalence on two <see cref="T:System.Int32" /> expressions.</summary>
<returns>A <see cref="T:System.Int32" /> that contains the result of the comparison.</returns>
<remarks>
<format type="text/markdown"><], the `Eqv` operator is no longer a part of the [!INCLUDE[vbprvb](~/includes/vbprvb-md.md)] language; for bitwise evaluations use the `Not` and `XOr` operators.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Eqv">
<MemberSignature Language="C#" Value="public static long Eqv (long a, long b);" />
<MemberSignature Language="ILAsm" Value=".method public static int64 Eqv(int64 a, int64 b) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.Eqv(System.Int64,System.Int64)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int64</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="a" Type="System.Int64" />
<Parameter Name="b" Type="System.Int64" />
</Parameters>
<Docs>
<param name="a">A <see cref="T:System.Int64" /> to compare.</param>
<param name="b">A <see cref="T:System.Int64" /> to compare.</param>
<summary>Performs a logical equivalence on two <see cref="T:System.Int64" /> expressions.</summary>
<returns>A <see cref="T:System.Int64" /> that contains the result of the comparison.</returns>
<remarks>
<format type="text/markdown"><], the `Eqv` operator is no longer a part of the [!INCLUDE[vbprvb](~/includes/vbprvb-md.md)] language; for bitwise evaluations use the `Not` and `XOr` operators.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Eqv">
<MemberSignature Language="C#" Value="public static object Eqv (object a, object b);" />
<MemberSignature Language="ILAsm" Value=".method public static object Eqv(object a, object b) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.Eqv(System.Object,System.Object)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="a" Type="System.Object" />
<Parameter Name="b" Type="System.Object" />
</Parameters>
<Docs>
<param name="a">A <see cref="T:System.Object" /> to compare.</param>
<param name="b">A <see cref="T:System.Object" /> to compare.</param>
<summary>Performs a logical equivalence on two <see cref="T:System.Object" /> expressions.</summary>
<returns>A <see cref="T:System.Object" /> that contains the result of the comparison.</returns>
<remarks>
<format type="text/markdown"><], the `Eqv` operator is no longer a part of the [!INCLUDE[vbprvb](~/includes/vbprvb-md.md)] language; for bitwise evaluations use the `Not` and `XOr` operators.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="FontChangeBold">
<MemberSignature Language="C#" Value="public static System.Drawing.Font FontChangeBold (System.Drawing.Font CurrentFont, bool Bold);" />
<MemberSignature Language="ILAsm" Value=".method public static class System.Drawing.Font FontChangeBold(class System.Drawing.Font CurrentFont, bool Bold) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.FontChangeBold(System.Drawing.Font,System.Boolean)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Drawing.Font</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="CurrentFont" Type="System.Drawing.Font" />
<Parameter Name="Bold" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="CurrentFont">A <see cref="T:System.Drawing.Font" />.</param>
<param name="Bold">
<see langword="true" /> to set the <see cref="F:System.Drawing.FontStyle.Bold" /> style bit; otherwise <see langword="false" />.</param>
<summary>Changes the <see cref="F:System.Drawing.FontStyle.Bold" /> style bit for a font.</summary>
<returns>A <see cref="T:System.Drawing.Font" /> with the new style applied.</returns>
<remarks>
<format type="text/markdown"><] font styles are applied by using a <xref:System.Drawing.FontStyle> enumeration. This function is used by the upgrade tools to translate the Visual Basic 6.0 properties to the new enumerations.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="FontChangeGdiCharSet">
<MemberSignature Language="C#" Value="public static System.Drawing.Font FontChangeGdiCharSet (System.Drawing.Font CurrentFont, byte GdiCharSet);" />
<MemberSignature Language="ILAsm" Value=".method public static class System.Drawing.Font FontChangeGdiCharSet(class System.Drawing.Font CurrentFont, unsigned int8 GdiCharSet) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.FontChangeGdiCharSet(System.Drawing.Font,System.Byte)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Drawing.Font</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="CurrentFont" Type="System.Drawing.Font" />
<Parameter Name="GdiCharSet" Type="System.Byte" />
</Parameters>
<Docs>
<param name="CurrentFont">A <see cref="T:System.Drawing.Font" />.</param>
<param name="GdiCharSet">A byte value that specifies the GDI character set to use.</param>
<summary>Returns a font for a specified GDI character set.</summary>
<returns>A <see cref="T:System.Drawing.Font" /> for the specified GDI character set.</returns>
<remarks>
<format type="text/markdown"><], the character set is specified as an optional of a <xref:System.Drawing.Font> constructor. This function is used by the upgrade tools to convert a `stdFont` to a <xref:System.Drawing.Font>.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="FontChangeItalic">
<MemberSignature Language="C#" Value="public static System.Drawing.Font FontChangeItalic (System.Drawing.Font CurrentFont, bool Italic);" />
<MemberSignature Language="ILAsm" Value=".method public static class System.Drawing.Font FontChangeItalic(class System.Drawing.Font CurrentFont, bool Italic) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.FontChangeItalic(System.Drawing.Font,System.Boolean)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Drawing.Font</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="CurrentFont" Type="System.Drawing.Font" />
<Parameter Name="Italic" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="CurrentFont">A <see cref="T:System.Drawing.Font" />.</param>
<param name="Italic">
<see langword="true" /> to set the <see cref="F:System.Drawing.FontStyle.Italic" /> style bit; otherwise <see langword="false" />.</param>
<summary>Changes the <see cref="F:System.Drawing.FontStyle.Italic" /> style bit for a font.</summary>
<returns>A <see cref="T:System.Drawing.Font" /> with the new style applied.</returns>
<remarks>
<format type="text/markdown"><] font styles are applied by using a <xref:System.Drawing.FontStyle> enumeration. This function is used by the upgrade tools to translate the Visual Basic 6.0 properties to the new enumerations.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="FontChangeName">
<MemberSignature Language="C#" Value="public static System.Drawing.Font FontChangeName (System.Drawing.Font CurrentFont, string Name);" />
<MemberSignature Language="ILAsm" Value=".method public static class System.Drawing.Font FontChangeName(class System.Drawing.Font CurrentFont, string Name) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.FontChangeName(System.Drawing.Font,System.String)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Drawing.Font</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="CurrentFont" Type="System.Drawing.Font" />
<Parameter Name="Name" Type="System.String" />
</Parameters>
<Docs>
<param name="CurrentFont">A <see cref="T:System.Drawing.Font" />.</param>
<param name="Name">A <see langword="String" /> that represents the Visual Basic 6.0 <see langword="Font" /> property.</param>
<summary>Returns a new <see cref="T:System.Drawing.Font" /> for a given Visual Basic 6.0 <see langword="Font" />.</summary>
<returns>A <see cref="T:System.Drawing.Font" /> that matches the Visual Basic 6.0 <see langword="Font" />.</returns>
<remarks>
<format type="text/markdown"><], <xref:System.Drawing.Font.Name%2A> is a property of the <xref:System.Drawing.Font> object. This function is used by the upgrade tools to convert a Visual Basic 6.0 `Font` to a <xref:System.Drawing.Font>.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="FontChangeSize">
<MemberSignature Language="C#" Value="public static System.Drawing.Font FontChangeSize (System.Drawing.Font CurrentFont, float Size);" />
<MemberSignature Language="ILAsm" Value=".method public static class System.Drawing.Font FontChangeSize(class System.Drawing.Font CurrentFont, float32 Size) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.FontChangeSize(System.Drawing.Font,System.Single)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Drawing.Font</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="CurrentFont" Type="System.Drawing.Font" />
<Parameter Name="Size" Type="System.Single" />
</Parameters>
<Docs>
<param name="CurrentFont">A <see cref="T:System.Drawing.Font" />.</param>
<param name="Size">A <see langword="Single" /> that represents the Visual Basic 6.0 <see langword="FontSize" /> property.</param>
<summary>Changes the <see cref="P:System.Drawing.Font.Size" /> property for a font.</summary>
<returns>A <see cref="T:System.Drawing.Font" /> that matches the Visual Basic 6.0 <see langword="FontSize" />.</returns>
<remarks>
<format type="text/markdown"><], <xref:System.Drawing.Font.Size%2A> is a property of the <xref:System.Drawing.Font> object. This function is used by the upgrade tools to convert a Visual Basic 6.0 `Font` to a <xref:System.Drawing.Font>.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="FontChangeStrikeout">
<MemberSignature Language="C#" Value="public static System.Drawing.Font FontChangeStrikeout (System.Drawing.Font CurrentFont, bool Strikeout);" />
<MemberSignature Language="ILAsm" Value=".method public static class System.Drawing.Font FontChangeStrikeout(class System.Drawing.Font CurrentFont, bool Strikeout) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.FontChangeStrikeout(System.Drawing.Font,System.Boolean)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Drawing.Font</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="CurrentFont" Type="System.Drawing.Font" />
<Parameter Name="Strikeout" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="CurrentFont">A <see cref="T:System.Drawing.Font" />.</param>
<param name="Strikeout">
<see langword="true" /> to set the <see cref="F:System.Drawing.FontStyle.Strikeout" /> style bit; otherwise <see langword="false" />.</param>
<summary>Changes the <see cref="F:System.Drawing.FontStyle.Strikeout" /> style bit for a font.</summary>
<returns>A <see cref="T:System.Drawing.Font" /> with the new style applied.</returns>
<remarks>
<format type="text/markdown"><] font styles are applied by using a <xref:System.Drawing.FontStyle> enumeration. This function is used by the upgrade tools to translate the Visual Basic 6.0 properties to the new enumerations.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="FontChangeUnderline">
<MemberSignature Language="C#" Value="public static System.Drawing.Font FontChangeUnderline (System.Drawing.Font CurrentFont, bool Underline);" />
<MemberSignature Language="ILAsm" Value=".method public static class System.Drawing.Font FontChangeUnderline(class System.Drawing.Font CurrentFont, bool Underline) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.FontChangeUnderline(System.Drawing.Font,System.Boolean)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Drawing.Font</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="CurrentFont" Type="System.Drawing.Font" />
<Parameter Name="Underline" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="CurrentFont">A <see cref="T:System.Drawing.Font" />.</param>
<param name="Underline">
<see langword="true" /> to set the <see cref="F:System.Drawing.FontStyle.Underline" /> style bit; otherwise <see langword="false" />.</param>
<summary>Changes the <see cref="F:System.Drawing.FontStyle.Underline" /> style bit for a font.</summary>
<returns>A <see cref="T:System.Drawing.Font" /> with the new style applied.</returns>
<remarks>
<format type="text/markdown"><] font styles are applied by using a <xref:System.Drawing.FontStyle> enumeration. This function is used by the upgrade tools to translate the Visual Basic 6.0 properties to the new enumerations.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="FontToIFont">
<MemberSignature Language="C#" Value="public static object FontToIFont (System.Drawing.Font fnt);" />
<MemberSignature Language="ILAsm" Value=".method public static object FontToIFont(class System.Drawing.Font fnt) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.FontToIFont(System.Drawing.Font)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="fnt" Type="System.Drawing.Font" />
</Parameters>
<Docs>
<param name="fnt">The <see cref="T:System.Drawing.Font" /> to convert.</param>
<summary>Converts a <see cref="T:System.Drawing.Font" /> to a Visual Basic 6.0 <see langword="stdFont" /> object.</summary>
<returns>A <see langword="stdFont" /> object.</returns>
<remarks>
<format type="text/markdown"><]. This function is used by the upgrade tools to convert between a <xref:System.Drawing.Font> and a `stdFont` during project upgrade.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Format">
<MemberSignature Language="C#" Value="public static string Format (object Expression, string Style = "", Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek = Microsoft.VisualBasic.FirstDayOfWeek.Sunday, Microsoft.VisualBasic.FirstWeekOfYear WeekOfYear = Microsoft.VisualBasic.FirstWeekOfYear.Jan1);" />
<MemberSignature Language="ILAsm" Value=".method public static string Format(object Expression, string Style, valuetype Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek, valuetype Microsoft.VisualBasic.FirstWeekOfYear WeekOfYear) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.Format(System.Object,System.String,Microsoft.VisualBasic.FirstDayOfWeek,Microsoft.VisualBasic.FirstWeekOfYear)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="Expression" Type="System.Object" />
<Parameter Name="Style" Type="System.String" />
<Parameter Name="DayOfWeek" Type="Microsoft.VisualBasic.FirstDayOfWeek" />
<Parameter Name="WeekOfYear" Type="Microsoft.VisualBasic.FirstWeekOfYear" />
</Parameters>
<Docs>
<param name="Expression">The <see cref="T:System.Object" /> expression to convert.</param>
<param name="Style">Optional. A <see cref="T:System.String" /> that represents a date format.</param>
<param name="DayOfWeek">Optional. A <see cref="T:Microsoft.VisualBasic.FirstDayOfWeek" /> enumeration.</param>
<param name="WeekOfYear">Optional. A <see cref="T:Microsoft.VisualBasic.FirstWeekOfYear" /> enumeration.</param>
<summary>Converts the Visual Basic 6.0 <see langword="Format" /> function to be compatible with [!INCLUDE[vbprvb](~/includes/vbprvb-md.md)].</summary>
<returns>A <see cref="T:System.String" /> that contains the formatted data.</returns>
<remarks>
<format type="text/markdown"><] the `Variant` data type no longer exists. This function is used by the upgrade tools to convert a `Variant` formatted by using the `Format` function to a common language runtime-compliant type.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="FromPixelsUserHeight">
<MemberSignature Language="C#" Value="public static double FromPixelsUserHeight (double Height, double ScaleHeight, int OriginalHeightInPixels);" />
<MemberSignature Language="ILAsm" Value=".method public static float64 FromPixelsUserHeight(float64 Height, float64 ScaleHeight, int32 OriginalHeightInPixels) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.FromPixelsUserHeight(System.Double,System.Double,System.Int32)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="Height" Type="System.Double" />
<Parameter Name="ScaleHeight" Type="System.Double" />
<Parameter Name="OriginalHeightInPixels" Type="System.Int32" />
</Parameters>
<Docs>
<param name="Height">A <see cref="T:System.Double" /> that represents the height.</param>
<param name="ScaleHeight">A <see cref="T:System.Double" /> that represents the Visual Basic 6.0 <see langword="ScaleHeight" /> for the current <see langword="ScaleMode" />.</param>
<param name="OriginalHeightInPixels">An <see langword="Integer" /> that represents the height in pixels.</param>
<summary>Converts a pixel measurement to a Visual Basic 6.0 <see langword="ScaleHeight" /> measurement.</summary>
<returns>A <see cref="T:System.Double" /> that contains the converted Visual Basic 6.0 <see langword="ScaleHeight" />.</returns>
<remarks>
<format type="text/markdown"><] only supports a coordinate system that is based on pixels. This function is used by the upgrade tools to convert between pixels and a user-defined scale value.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="FromPixelsUserWidth">
<MemberSignature Language="C#" Value="public static double FromPixelsUserWidth (double Width, double ScaleWidth, int OriginalWidthInPixels);" />
<MemberSignature Language="ILAsm" Value=".method public static float64 FromPixelsUserWidth(float64 Width, float64 ScaleWidth, int32 OriginalWidthInPixels) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.FromPixelsUserWidth(System.Double,System.Double,System.Int32)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="Width" Type="System.Double" />
<Parameter Name="ScaleWidth" Type="System.Double" />
<Parameter Name="OriginalWidthInPixels" Type="System.Int32" />
</Parameters>
<Docs>
<param name="Width">A <see cref="T:System.Double" /> that represents the width.</param>
<param name="ScaleWidth">A <see cref="T:System.Double" /> that represents the Visual Basic 6.0 <see langword="ScaleWidth" /> for the current <see langword="ScaleMode" />.</param>
<param name="OriginalWidthInPixels">An <see langword="Integer" /> that represents the width in pixels.</param>
<summary>Converts a pixel measurement to a Visual Basic 6.0 <see langword="ScaleWidth" /> measurement.</summary>
<returns>A <see cref="T:System.Double" /> that contains the converted Visual Basic 6.0 <see langword="ScaleWidth" />.</returns>
<remarks>
<format type="text/markdown"><] only supports a coordinate system that is based on pixels. This function is used by the upgrade tools to convert between pixels and a user-defined scale value.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="FromPixelsUserX">
<MemberSignature Language="C#" Value="public static double FromPixelsUserX (double X, double ScaleLeft, double ScaleWidth, int OriginalWidthInPixels);" />
<MemberSignature Language="ILAsm" Value=".method public static float64 FromPixelsUserX(float64 X, float64 ScaleLeft, float64 ScaleWidth, int32 OriginalWidthInPixels) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.FromPixelsUserX(System.Double,System.Double,System.Double,System.Int32)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="X" Type="System.Double" />
<Parameter Name="ScaleLeft" Type="System.Double" />
<Parameter Name="ScaleWidth" Type="System.Double" />
<Parameter Name="OriginalWidthInPixels" Type="System.Int32" />
</Parameters>
<Docs>
<param name="X">A <see cref="T:System.Double" /> that represents the X coordinate.</param>
<param name="ScaleLeft">A <see cref="T:System.Double" /> that represents the Visual Basic 6.0 <see langword="ScaleLeft" /> for the current <see langword="ScaleMode" />.</param>
<param name="ScaleWidth">A <see cref="T:System.Double" /> that represents the Visual Basic 6.0 <see langword="ScaleWidth" /> for the current <see langword="ScaleMode" />.</param>
<param name="OriginalWidthInPixels">An <see langword="Integer" /> that represents the width in pixels.</param>
<summary>Converts a pixel measurement to a Visual Basic 6.0 <see langword="ScaleLeft" /> measurement.</summary>
<returns>A <see cref="T:System.Double" /> that contains the converted Visual Basic 6.0 <see langword="ScaleLeft" />.</returns>
<remarks>
<format type="text/markdown"><] only supports a coordinate system that is based on pixels. This function is used by the upgrade tools to convert between pixels and a user-defined scale value.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="FromPixelsUserY">
<MemberSignature Language="C#" Value="public static double FromPixelsUserY (double Y, double ScaleTop, double ScaleHeight, int OriginalHeightInPixels);" />
<MemberSignature Language="ILAsm" Value=".method public static float64 FromPixelsUserY(float64 Y, float64 ScaleTop, float64 ScaleHeight, int32 OriginalHeightInPixels) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.FromPixelsUserY(System.Double,System.Double,System.Double,System.Int32)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="Y" Type="System.Double" />
<Parameter Name="ScaleTop" Type="System.Double" />
<Parameter Name="ScaleHeight" Type="System.Double" />
<Parameter Name="OriginalHeightInPixels" Type="System.Int32" />
</Parameters>
<Docs>
<param name="Y">A <see cref="T:System.Double" /> that represents the X coordinate.</param>
<param name="ScaleTop">A <see cref="T:System.Double" /> that represents the Visual Basic 6.0 <see langword="ScaleTop" /> for the current <see langword="ScaleMode" />.</param>
<param name="ScaleHeight">A <see cref="T:System.Double" /> that represents the Visual Basic 6.0 <see langword="ScaleHeight" /> for the current <see langword="ScaleMode" />.</param>
<param name="OriginalHeightInPixels">An <see langword="Integer" /> that represents the height in pixels.</param>
<summary>Converts a pixel measurement to a Visual Basic 6.0 <see langword="ScaleTop" /> measurement.</summary>
<returns>A <see cref="T:System.Double" /> that contains the converted Visual Basic 6.0 <see langword="ScaleTop" />.</returns>
<remarks>
<format type="text/markdown"><] only supports a coordinate system that is based on pixels. This function is used by the upgrade tools to convert between pixels and a user-defined scale value.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="FromPixelsX">
<MemberSignature Language="C#" Value="public static double FromPixelsX (double X, Microsoft.VisualBasic.Compatibility.VB6.ScaleMode ToScale);" />
<MemberSignature Language="ILAsm" Value=".method public static float64 FromPixelsX(float64 X, valuetype Microsoft.VisualBasic.Compatibility.VB6.ScaleMode ToScale) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.FromPixelsX(System.Double,Microsoft.VisualBasic.Compatibility.VB6.ScaleMode)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="X" Type="System.Double" />
<Parameter Name="ToScale" Type="Microsoft.VisualBasic.Compatibility.VB6.ScaleMode" />
</Parameters>
<Docs>
<param name="X">A <see cref="T:System.Double" /> that represents the X coordinate in pixels.</param>
<param name="ToScale">A <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ScaleMode" /> enumeration that represents the Visual Basic 6.0 <see langword="ScaleMode" /> to convert to.</param>
<summary>Converts a pixel measurement to a Visual Basic 6.0 measurement for a given <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ScaleMode" />.</summary>
<returns>A <see cref="T:System.Double" /> that contains the Visual Basic 6.0 value for the specified <see langword="ScaleMode" />.</returns>
<remarks>
<format type="text/markdown"><] only supports a coordinate system that is based on pixels. This function is used by the upgrade tools to convert between pixels and a user-defined scale value.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="FromPixelsY">
<MemberSignature Language="C#" Value="public static double FromPixelsY (double Y, Microsoft.VisualBasic.Compatibility.VB6.ScaleMode ToScale);" />
<MemberSignature Language="ILAsm" Value=".method public static float64 FromPixelsY(float64 Y, valuetype Microsoft.VisualBasic.Compatibility.VB6.ScaleMode ToScale) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.FromPixelsY(System.Double,Microsoft.VisualBasic.Compatibility.VB6.ScaleMode)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="Y" Type="System.Double" />
<Parameter Name="ToScale" Type="Microsoft.VisualBasic.Compatibility.VB6.ScaleMode" />
</Parameters>
<Docs>
<param name="Y">A <see cref="T:System.Double" /> that represents the Y coordinate in pixels.</param>
<param name="ToScale">A <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ScaleMode" /> enumeration that represents the Visual Basic 6.0 <see langword="ScaleMode" /> to convert to.</param>
<summary>Converts a pixel measurement to a Visual Basic 6.0 measurement for a given <see cref="T:Microsoft.VisualBasic.Compatibility.VB6.ScaleMode" />.</summary>
<returns>A <see cref="T:System.Double" /> that contains the Visual Basic 6.0 value for the specified <see langword="ScaleMode" />.</returns>
<remarks>
<format type="text/markdown"><] only supports a coordinate system that is based on pixels. This function is used by the upgrade tools to convert between pixels and a user-defined scale value.
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="GetActiveControl">
<MemberSignature Language="C#" Value="public static System.Windows.Forms.Control GetActiveControl ();" />
<MemberSignature Language="ILAsm" Value=".method public static class System.Windows.Forms.Control GetActiveControl() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.GetActiveControl" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Windows.Forms.Control</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the control that currently has focus.</summary>
<returns>The control that currently has focus.</returns>
<remarks>
<format type="text/markdown"><].
[!INCLUDE[Note_compatibility](~/includes/note-compatibility-md.md)]
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="GetCancel">
<MemberSignature Language="C#" Value="public static bool GetCancel (System.Windows.Forms.Button btn);" />
<MemberSignature Language="ILAsm" Value=".method public static bool GetCancel(class System.Windows.Forms.Button btn) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.Compatibility.VB6.Support.GetCancel(System.Windows.Forms.Button)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic.Compatibility</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Obsolete("Microsoft.VisualBasic.Compatibility.* classes are obsolete and supported within 32 bit processes only. http://go.microsoft.com/fwlink/?linkid=160862")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="btn" Type="System.Windows.Forms.Button" />
</Parameters>