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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046
|
<html dir="LTR">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
</meta>
<meta name="generator" content="NDoc 1.3" />
<title>RuntimePropertyGrid Members</title>
<link rel="stylesheet" type="text/css" href="ndoc.css">
</link>
<script src="ndoc.js" type="text/javascript">
</script>
</head>
<body id="bodyID" class="dtBODY">
<div id="nsbanner">
<div id="bannerrow1">
<table class="bannerparthead" cellspacing="0">
<tr id="hdr">
<td class="runninghead" nowrap="true">NDoc 1.3.1 SDK</td>
<td class="product" nowrap="true">
</td>
</tr>
</table>
</div>
<div id="TitleRow">
<h1 class="dtH1">RuntimePropertyGrid Members
</h1>
</div>
</div>
<div id="nstext">
<p>
<a href="NDoc.Core.PropertyGridUI.RuntimePropertyGrid.html">RuntimePropertyGrid overview</a>
</p>
<h4 class="dtH4">Public Instance Constructors</h4>
<div class="tablediv">
<table class="dtTABLE" cellspacing="0">
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif" /><a href="NDoc.Core.PropertyGridUI.RuntimePropertyGridConstructor.html">RuntimePropertyGrid Constructor</a></td><td width="50%"> Creates a new instance of the RuntimePropertyGrid class </td></tr></table>
</div>
<h4 class="dtH4">Public Instance Properties</h4>
<div class="tablediv">
<table class="dtTABLE" cellspacing="0">
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassAccessibilityObjectTopic.asp">AccessibilityObject</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsAccessibleObjectClassTopic.asp">AccessibleObject</a> assigned to the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassAccessibleDefaultActionDescriptionTopic.asp">AccessibleDefaultActionDescription</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the default action description of the control for use by accessibility client applications.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassAccessibleDescriptionTopic.asp">AccessibleDescription</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the description of the control used by accessibility client applications.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassAccessibleNameTopic.asp">AccessibleName</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the name of the control used by accessibility client applications.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassAccessibleRoleTopic.asp">AccessibleRole</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the accessible role of the control
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsContainerControlClassActiveControlTopic.asp">ActiveControl</a> (inherited from <b>ContainerControl</b>)</td><td width="50%">
Gets or sets the active control on the container control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassAllowDropTopic.asp">AllowDrop</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets a value indicating whether the control can accept data that the user drags onto it.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassAnchorTopic.asp">Anchor</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets which edges of the control are anchored to the edges of its container.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassAutoScrollTopic.asp">AutoScroll</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsScrollableControlClassAutoScrollMarginTopic.asp">AutoScrollMargin</a> (inherited from <b>ScrollableControl</b>)</td><td width="50%">
Gets or sets the size of the auto-scroll margin.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsScrollableControlClassAutoScrollMinSizeTopic.asp">AutoScrollMinSize</a> (inherited from <b>ScrollableControl</b>)</td><td width="50%">
Gets or sets the minimum size of the auto-scroll.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsScrollableControlClassAutoScrollPositionTopic.asp">AutoScrollPosition</a> (inherited from <b>ScrollableControl</b>)</td><td width="50%">
Gets or sets the location of the auto-scroll position.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassBackColorTopic.asp">BackColor</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassBackgroundImageTopic.asp">BackgroundImage</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsContainerControlClassBindingContextTopic.asp">BindingContext</a> (inherited from <b>ContainerControl</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassBottomTopic.asp">Bottom</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets the distance between the bottom edge of the control and the top edge of its container's client area.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassBoundsTopic.asp">Bounds</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the size and location of the control including its nonclient elements.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassBrowsableAttributesTopic.asp">BrowsableAttributes</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets or sets the browsable attributes associated with the object that the property grid is attached to.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCanFocusTopic.asp">CanFocus</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets a value indicating whether the control can receive focus.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCanSelectTopic.asp">CanSelect</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets a value indicating whether the control can be selected.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassCanShowCommandsTopic.asp">CanShowCommands</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets a value indicating whether the commands pane can be made visible for the currently selected objects.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCaptureTopic.asp">Capture</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets a value indicating whether the control has captured the mouse.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCausesValidationTopic.asp">CausesValidation</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets a value indicating whether the control causes validation to be performed on any controls that require validation when it receives focus.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassClientRectangleTopic.asp">ClientRectangle</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets the rectangle that represents the client area of the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassClientSizeTopic.asp">ClientSize</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the height and width of the client area of the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassCommandsBackColorTopic.asp">CommandsBackColor</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets or sets the background color of the hot commands region.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassCommandsForeColorTopic.asp">CommandsForeColor</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets or sets the foreground color for the hot commands region.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassCommandsVisibleTopic.asp">CommandsVisible</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets a value indicating whether the commands pane is visible.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassCommandsVisibleIfAvailableTopic.asp">CommandsVisibleIfAvailable</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets or sets a value indicating whether the commands pane is visible for objects that expose verbs.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCompanyNameTopic.asp">CompanyName</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets the name of the company or creator of the application containing the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemComponentModelComponentClassContainerTopic.asp">Container</a> (inherited from <b>Component</b>)</td><td width="50%">
Gets the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemComponentModelIContainerClassTopic.asp">IContainer</a> that contains the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemComponentModelComponentClassTopic.asp">Component</a>.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassContainsFocusTopic.asp">ContainsFocus</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets a value indicating whether the control, or one of its child controls, currently has the input focus.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassContextMenuTopic.asp">ContextMenu</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the shortcut menu associated with the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassContextMenuDefaultLocationTopic.asp">ContextMenuDefaultLocation</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets the default location for the shortcut menu.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassControlsTopic.asp">Controls</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCreatedTopic.asp">Created</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets a value indicating whether the control has been created.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCursorTopic.asp">Cursor</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the cursor that is displayed when the mouse pointer is over the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDataBindingsTopic.asp">DataBindings</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets the data bindings for the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsScrollableControlClassDisplayRectangleTopic.asp">DisplayRectangle</a> (inherited from <b>ScrollableControl</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDisposingTopic.asp">Disposing</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets a value indicating whether the control is in the process of being disposed of.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDockTopic.asp">Dock</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets which edge of the parent container a control is docked to.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsScrollableControlClassDockPaddingTopic.asp">DockPadding</a> (inherited from <b>ScrollableControl</b>)</td><td width="50%">
Gets the dock padding settings for all edges of the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassEnabledTopic.asp">Enabled</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets a value indicating whether the control can respond to user interaction.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassFocusedTopic.asp">Focused</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets a value indicating whether the control has input focus.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassFontTopic.asp">Font</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the font of the text displayed by the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassForeColorTopic.asp">ForeColor</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassHandleTopic.asp">Handle</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets the window handle that the control is bound to.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassHasChildrenTopic.asp">HasChildren</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets a value indicating whether the control contains one or more child controls.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassHeightTopic.asp">Height</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the height of the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassHelpBackColorTopic.asp">HelpBackColor</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets or sets the background color for the Help region.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassHelpForeColorTopic.asp">HelpForeColor</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets or sets the foreground color for the Help region.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassHelpVisibleTopic.asp">HelpVisible</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets or sets a value indicating whether the Help text is visible.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassImeModeTopic.asp">ImeMode</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the Input Method Editor (IME) mode of the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassInvokeRequiredTopic.asp">InvokeRequired</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets a value indicating whether the caller must call an invoke method when making method calls to the control because the caller is on a different thread than the one the control was created on.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassIsAccessibleTopic.asp">IsAccessible</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets a value indicating whether the control is visible to accessibility applications.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassIsDisposedTopic.asp">IsDisposed</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets a value indicating whether the control has been disposed of.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassIsHandleCreatedTopic.asp">IsHandleCreated</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets a value indicating whether the control has a handle associated with it.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="NDoc.Core.PropertyGridUI.RuntimePropertyGrid.LabelWidth.html">LabelWidth</a></td><td width="50%"> Gets or sets the width of the label. </td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassLargeButtonsTopic.asp">LargeButtons</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets or sets a value indicating whether buttons appear in standard size or in large size.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassLeftTopic.asp">Left</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the x-coordinate of a control's left edge in pixels.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassLineColorTopic.asp">LineColor</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets or sets the color of the gridlines and borders.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassLocationTopic.asp">Location</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassNameTopic.asp">Name</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the name of the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassParentTopic.asp">Parent</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the parent container of the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsContainerControlClassParentFormTopic.asp">ParentForm</a> (inherited from <b>ContainerControl</b>)</td><td width="50%">
Gets the form that the container control is assigned to.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassProductNameTopic.asp">ProductName</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets the product name of the assembly containing the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassProductVersionTopic.asp">ProductVersion</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets the version of the assembly containing the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassPropertySortTopic.asp">PropertySort</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets or sets the type of sorting the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassTopic.asp">PropertyGrid</a> uses to display properties.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassPropertyTabsTopic.asp">PropertyTabs</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets the collection of property tabs that are displayed in the grid.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRecreatingHandleTopic.asp">RecreatingHandle</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets a value indicating whether the control is currently re-creating its handle.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRegionTopic.asp">Region</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the window region associated with the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRightTopic.asp">Right</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets the distance between the right edge of the control and the left edge of its container.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRightToLeftTopic.asp">RightToLeft</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets a value indicating whether control's elements are aligned to support locales using right-to-left fonts.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassSelectedGridItemTopic.asp">SelectedGridItem</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets or sets the selected grid item.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassSelectedObjectTopic.asp">SelectedObject</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets or sets the object for which the grid displays properties.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassSelectedObjectsTopic.asp">SelectedObjects</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets or sets the currently selected objects.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassSelectedTabTopic.asp">SelectedTab</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets the currently selected property tab.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassSiteTopic.asp">Site</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassSizeTopic.asp">Size</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the height and width of the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassTabIndexTopic.asp">TabIndex</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the tab order of the control within its container.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassTabStopTopic.asp">TabStop</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets a value indicating whether the user can give the focus to this control using the TAB key.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassTagTopic.asp">Tag</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the object that contains data about the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassTextTopic.asp">Text</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the text associated with this control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassToolbarVisibleTopic.asp">ToolbarVisible</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets or sets a value indicating whether the toolbar is visible.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassTopTopic.asp">Top</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the y-coordinate of the control's top edge in pixels.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassTopLevelControlTopic.asp">TopLevelControl</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets the parent control that is not parented by another Windows Forms control. Typically, this is the outermost <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsFormClassTopic.asp">Form</a> that the control is contained in.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassViewBackColorTopic.asp">ViewBackColor</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets or sets a value indicating the background color in the grid.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassViewForeColorTopic.asp">ViewForeColor</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets or sets a value indicating the color of the text in the grid.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassVisibleTopic.asp">Visible</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets a value indicating whether the control is displayed.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassWidthTopic.asp">Width</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the width of the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassWindowTargetTopic.asp">WindowTarget</a> (inherited from <b>Control</b>)</td><td width="50%"></td></tr></table>
</div>
<h4 class="dtH4">Public Instance Methods</h4>
<div class="tablediv">
<table class="dtTABLE" cellspacing="0">
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassBeginInvokeTopic.asp">BeginInvoke</a> (inherited from <b>Control</b>)</td><td width="50%">Overloaded.
Executes the specified delegate asynchronously with the specified arguments, on the thread that the control's underlying handle was created on.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassBringToFrontTopic.asp">BringToFront</a> (inherited from <b>Control</b>)</td><td width="50%">
Brings the control to the front of the z-order.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassCollapseAllGridItemsTopic.asp">CollapseAllGridItems</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Collapses all the categories in the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassTopic.asp">PropertyGrid</a> .
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassContainsTopic.asp">Contains</a> (inherited from <b>Control</b>)</td><td width="50%">
Retrieves a value indicating whether the specified control is a child of the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCreateControlTopic.asp">CreateControl</a> (inherited from <b>Control</b>)</td><td width="50%">
Forces the creation of the control, including the creation of the handle and any child controls.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCreateGraphicsTopic.asp">CreateGraphics</a> (inherited from <b>Control</b>)</td><td width="50%">
Creates the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDrawingGraphicsClassTopic.asp">Graphics</a> object for the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemMarshalByRefObjectClassCreateObjRefTopic.asp">CreateObjRef</a> (inherited from <b>MarshalByRefObject</b>)</td><td width="50%">
Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemComponentModelComponentClassDisposeTopic.asp">Dispose</a> (inherited from <b>Component</b>)</td><td width="50%">Overloaded.
Releases all resources used by the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemComponentModelComponentClassTopic.asp">Component</a>.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDoDragDropTopic.asp">DoDragDrop</a> (inherited from <b>Control</b>)</td><td width="50%">
Begins a drag-and-drop operation.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassEndInvokeTopic.asp">EndInvoke</a> (inherited from <b>Control</b>)</td><td width="50%">
Retrieves the return value of the asynchronous operation represented by the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemIAsyncResultClassTopic.asp">IAsyncResult</a> object passed.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemObjectClassEqualsTopic.asp">Equals</a> (inherited from <b>Object</b>)</td><td width="50%">
Determines whether the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemObjectClassTopic.asp">Object</a> is equal to the current <b>Object</b>.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassExpandAllGridItemsTopic.asp">ExpandAllGridItems</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Expands all the categories in the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassTopic.asp">PropertyGrid</a> .
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassFindFormTopic.asp">FindForm</a> (inherited from <b>Control</b>)</td><td width="50%">
Retrieves the form that the control is on.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassFocusTopic.asp">Focus</a> (inherited from <b>Control</b>)</td><td width="50%">
Sets input focus to the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassGetChildAtPointTopic.asp">GetChildAtPoint</a> (inherited from <b>Control</b>)</td><td width="50%">
Retrieves the child control that is located at the specified coordinates.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassGetContainerControlTopic.asp">GetContainerControl</a> (inherited from <b>Control</b>)</td><td width="50%">
Returns the next <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsContainerControlClassTopic.asp">ContainerControl</a> up the control's chain of parent controls.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemObjectClassGetHashCodeTopic.asp">GetHashCode</a> (inherited from <b>Object</b>)</td><td width="50%">
Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemMarshalByRefObjectClassGetLifetimeServiceTopic.asp">GetLifetimeService</a> (inherited from <b>MarshalByRefObject</b>)</td><td width="50%">
Retrieves the current lifetime service object that controls the lifetime policy for this instance.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassGetNextControlTopic.asp">GetNextControl</a> (inherited from <b>Control</b>)</td><td width="50%">
Retrieves the next control forward or back in the tab order of child controls.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemObjectClassGetTypeTopic.asp">GetType</a> (inherited from <b>Object</b>)</td><td width="50%">
Gets the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTypeClassTopic.asp">Type</a> of the current instance.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassHideTopic.asp">Hide</a> (inherited from <b>Control</b>)</td><td width="50%">
Conceals the control from the user.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemMarshalByRefObjectClassInitializeLifetimeServiceTopic.asp">InitializeLifetimeService</a> (inherited from <b>MarshalByRefObject</b>)</td><td width="50%">
Obtains a lifetime service object to control the lifetime policy for this instance.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassInvalidateTopic.asp">Invalidate</a> (inherited from <b>Control</b>)</td><td width="50%">Overloaded.
Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassInvokeTopic.asp">Invoke</a> (inherited from <b>Control</b>)</td><td width="50%">Overloaded.
Executes the specified delegate, on the thread that owns the control's underlying window handle, with the specified list of arguments.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassPerformLayoutTopic.asp">PerformLayout</a> (inherited from <b>Control</b>)</td><td width="50%">Overloaded.
Forces the control to apply layout logic to all its child controls.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassPointToClientTopic.asp">PointToClient</a> (inherited from <b>Control</b>)</td><td width="50%">
Computes the location of the specified screen point into client coordinates.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassPointToScreenTopic.asp">PointToScreen</a> (inherited from <b>Control</b>)</td><td width="50%">
Computes the location of the specified client point into screen coordinates.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassPreProcessMessageTopic.asp">PreProcessMessage</a> (inherited from <b>Control</b>)</td><td width="50%">
Preprocesses input messages within the message loop before they are dispatched.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRectangleToClientTopic.asp">RectangleToClient</a> (inherited from <b>Control</b>)</td><td width="50%">
Computes the size and location of the specified screen rectangle in client coordinates.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRectangleToScreenTopic.asp">RectangleToScreen</a> (inherited from <b>Control</b>)</td><td width="50%">
Computes the size and location of the specified client rectangle in screen coordinates.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassRefreshTopic.asp">Refresh</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassRefreshTabsTopic.asp">RefreshTabs</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Refreshes the property tabs of the specified scope.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassResetBackColorTopic.asp">ResetBackColor</a> (inherited from <b>Control</b>)</td><td width="50%">
Resets the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassBackColorTopic.asp">BackColor</a> property to its default value.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassResetBindingsTopic.asp">ResetBindings</a> (inherited from <b>Control</b>)</td><td width="50%">
Resets the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDataBindingsTopic.asp">DataBindings</a> property to its default value.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassResetCursorTopic.asp">ResetCursor</a> (inherited from <b>Control</b>)</td><td width="50%">
Resets the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCursorTopic.asp">Cursor</a> property to its default value.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassResetFontTopic.asp">ResetFont</a> (inherited from <b>Control</b>)</td><td width="50%">
Resets the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassFontTopic.asp">Font</a>property to its default value.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassResetForeColorTopic.asp">ResetForeColor</a> (inherited from <b>Control</b>)</td><td width="50%">
Resets the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassForeColorTopic.asp">ForeColor</a> property to its default value.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassResetImeModeTopic.asp">ResetImeMode</a> (inherited from <b>Control</b>)</td><td width="50%">
Resets the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassImeModeTopic.asp">ImeMode</a> property to its default value.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassResetRightToLeftTopic.asp">ResetRightToLeft</a> (inherited from <b>Control</b>)</td><td width="50%">
Resets the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRightToLeftTopic.asp">RightToLeft</a> property to its default value.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassResetSelectedPropertyTopic.asp">ResetSelectedProperty</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Resets the selected property to its default value.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassResetTextTopic.asp">ResetText</a> (inherited from <b>Control</b>)</td><td width="50%">
Resets the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassTextTopic.asp">Text</a> property to its default value.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassResumeLayoutTopic.asp">ResumeLayout</a> (inherited from <b>Control</b>)</td><td width="50%">Overloaded.
Resumes normal layout logic.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassScaleTopic.asp">Scale</a> (inherited from <b>Control</b>)</td><td width="50%">Overloaded.
Scales the control and any child controls to the specified ratio.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsScrollableControlClassScrollControlIntoViewTopic.asp">ScrollControlIntoView</a> (inherited from <b>ScrollableControl</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassSelectTopic.asp">Select</a> (inherited from <b>Control</b>)</td><td width="50%">Overloaded.
Activates the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassSelectNextControlTopic.asp">SelectNextControl</a> (inherited from <b>Control</b>)</td><td width="50%">
Activates the next control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassSendToBackTopic.asp">SendToBack</a> (inherited from <b>Control</b>)</td><td width="50%">
Sends the control to the back of the z-order.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsScrollableControlClassSetAutoScrollMarginTopic.asp">SetAutoScrollMargin</a> (inherited from <b>ScrollableControl</b>)</td><td width="50%">
Sets the size of the auto-scroll margins.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassSetBoundsTopic.asp">SetBounds</a> (inherited from <b>Control</b>)</td><td width="50%">Overloaded.
Sets the bounds of the control to the specified location and size.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassShowTopic.asp">Show</a> (inherited from <b>Control</b>)</td><td width="50%">
Displays the control to the user.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassSuspendLayoutTopic.asp">SuspendLayout</a> (inherited from <b>Control</b>)</td><td width="50%">
Temporarily suspends the layout logic for the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemComponentModelComponentClassToStringTopic.asp">ToString</a> (inherited from <b>Component</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassUpdateTopic.asp">Update</a> (inherited from <b>Control</b>)</td><td width="50%">
Causes the control to redraw the invalidated regions within its client area.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsContainerControlClassValidateTopic.asp">Validate</a> (inherited from <b>ContainerControl</b>)</td><td width="50%">
Validates the last invalidated control and its ancestors up through, but not including, the current control.
</td></tr></table>
</div>
<h4 class="dtH4">Public Instance Events</h4>
<div class="tablediv">
<table class="dtTABLE" cellspacing="0">
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassBackColorChangedTopic.asp">BackColorChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the value of the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassBackColorTopic.asp">BackColor</a> property changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassBackgroundImageChangedTopic.asp">BackgroundImageChanged</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassBindingContextChangedTopic.asp">BindingContextChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the value of the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsBindingContextClassTopic.asp">BindingContext</a> property changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCausesValidationChangedTopic.asp">CausesValidationChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the value of the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCausesValidationTopic.asp">CausesValidation</a> property changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassChangeUICuesTopic.asp">ChangeUICues</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the focus or keyboard user interface (UI) cues change.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassClickTopic.asp">Click</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the control is clicked.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassContextMenuChangedTopic.asp">ContextMenuChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the value of the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassContextMenuTopic.asp">ContextMenu</a> property changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassControlAddedTopic.asp">ControlAdded</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when a new control is added to the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlControlCollectionClassTopic.asp">ControlCollection</a> .
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassControlRemovedTopic.asp">ControlRemoved</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when a control is removed from the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlControlCollectionClassTopic.asp">ControlCollection</a> .
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCursorChangedTopic.asp">CursorChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the value of the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCursorTopic.asp">Cursor</a> property changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemComponentModelComponentClassDisposedTopic.asp">Disposed</a> (inherited from <b>Component</b>)</td><td width="50%">
Adds an event handler to listen to the <b>Disposed</b> event on the component.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDockChangedTopic.asp">DockChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the value of the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDockTopic.asp">Dock</a> property changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDoubleClickTopic.asp">DoubleClick</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the control is double-clicked.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDragDropTopic.asp">DragDrop</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when a drag-and-drop operation is completed.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDragEnterTopic.asp">DragEnter</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when an object is dragged into the control's bounds.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDragLeaveTopic.asp">DragLeave</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when an object is dragged out of the control's bounds.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDragOverTopic.asp">DragOver</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when an object is dragged over the control's bounds.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassEnabledChangedTopic.asp">EnabledChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassEnabledTopic.asp">Enabled</a> property value has changed.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassEnterTopic.asp">Enter</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the control is entered.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassFontChangedTopic.asp">FontChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassFontTopic.asp">Font</a> property value changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassForeColorChangedTopic.asp">ForeColorChanged</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassGiveFeedbackTopic.asp">GiveFeedback</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs during a drag operation.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassGotFocusTopic.asp">GotFocus</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the control receives focus.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassHandleCreatedTopic.asp">HandleCreated</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when a handle is created for the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassHandleDestroyedTopic.asp">HandleDestroyed</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the control's handle is in the process of being destroyed.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassHelpRequestedTopic.asp">HelpRequested</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the user requests help for a control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassImeModeChangedTopic.asp">ImeModeChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassImeModeTopic.asp">ImeMode</a> property has changed.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassInvalidatedTopic.asp">Invalidated</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when a control's display requires redrawing.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassKeyDownTopic.asp">KeyDown</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when a key is pressed while the control has focus.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassKeyPressTopic.asp">KeyPress</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when a key is pressed while the control has focus.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassKeyUpTopic.asp">KeyUp</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when a key is released while the control has focus.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassLayoutTopic.asp">Layout</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when a control should reposition its child controls.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassLeaveTopic.asp">Leave</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the input focus leaves the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassLocationChangedTopic.asp">LocationChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassLocationTopic.asp">Location</a> property value has changed.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassLostFocusTopic.asp">LostFocus</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the control loses focus.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassMouseDownTopic.asp">MouseDown</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the mouse pointer is over the control and a mouse button is pressed.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassMouseEnterTopic.asp">MouseEnter</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the mouse pointer enters the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassMouseHoverTopic.asp">MouseHover</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the mouse pointer hovers over the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassMouseLeaveTopic.asp">MouseLeave</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the mouse pointer leaves the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassMouseMoveTopic.asp">MouseMove</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the mouse pointer is moved over the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassMouseUpTopic.asp">MouseUp</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the mouse pointer is over the control and a mouse button is released.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassMouseWheelTopic.asp">MouseWheel</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the mouse wheel moves while the control has focus.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassMoveTopic.asp">Move</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the control is moved.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassPaintTopic.asp">Paint</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the control is redrawn.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassParentChangedTopic.asp">ParentChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassParentTopic.asp">Parent</a> property value changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassPropertySortChangedTopic.asp">PropertySortChanged</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Occurs when the sort mode is changed.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassPropertyTabChangedTopic.asp">PropertyTabChanged</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Occurs when a property tab changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassPropertyValueChangedTopic.asp">PropertyValueChanged</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Occurs when a property value changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassQueryAccessibilityHelpTopic.asp">QueryAccessibilityHelp</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsAccessibleObjectClassTopic.asp">AccessibleObject</a> is providing help to accessibility applications.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassQueryContinueDragTopic.asp">QueryContinueDrag</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs during a drag-and-drop operation and allows the drag source to determine whether the drag-and-drop operation should be canceled.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassResizeTopic.asp">Resize</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the control is resized.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRightToLeftChangedTopic.asp">RightToLeftChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRightToLeftTopic.asp">RightToLeft</a> property value changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassSelectedGridItemChangedTopic.asp">SelectedGridItemChanged</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Occurs when the selected <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsGridItemClassTopic.asp">GridItem</a> is changed.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassSelectedObjectsChangedTopic.asp">SelectedObjectsChanged</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Occurs when the objects selected by the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassSelectedObjectsTopic.asp">SelectedObjects</a> property have changed.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassSizeChangedTopic.asp">SizeChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassSizeTopic.asp">Size</a> property value changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassStyleChangedTopic.asp">StyleChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the control style changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassSystemColorsChangedTopic.asp">SystemColorsChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the system colors change.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassTabIndexChangedTopic.asp">TabIndexChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassTabIndexTopic.asp">TabIndex</a> property value changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassTabStopChangedTopic.asp">TabStopChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassTabStopTopic.asp">TabStop</a> property value changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassTextChangedTopic.asp">TextChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassTextTopic.asp">Text</a> property value changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassValidatedTopic.asp">Validated</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the control is finished validating.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassValidatingTopic.asp">Validating</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the control is validating.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubevent.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassVisibleChangedTopic.asp">VisibleChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Occurs when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassVisibleTopic.asp">Visible</a> property value changes.
</td></tr></table>
</div>
<h4 class="dtH4">Protected Instance Properties</h4>
<div class="tablediv">
<table class="dtTABLE" cellspacing="0">
<tr VALIGN="top"><td width="50%"><img src="protproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsContainerControlClassCreateParamsTopic.asp">CreateParams</a> (inherited from <b>ContainerControl</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDefaultImeModeTopic.asp">DefaultImeMode</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets the default Input Method Editor (IME) mode supported by the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassDefaultSizeTopic.asp">DefaultSize</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassDefaultTabTypeTopic.asp">DefaultTabType</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Gets the type of the default tab.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemComponentModelComponentClassDesignModeTopic.asp">DesignMode</a> (inherited from <b>Component</b>)</td><td width="50%">
Gets a value that indicates whether the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemComponentModelComponentClassTopic.asp">Component</a> is currently in design mode.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassDrawFlatToolbarTopic.asp">DrawFlatToolbar</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemComponentModelComponentClassEventsTopic.asp">Events</a> (inherited from <b>Component</b>)</td><td width="50%">
Gets the list of event handlers that are attached to this <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemComponentModelComponentClassTopic.asp">Component</a>.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassFontHeightTopic.asp">FontHeight</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets the height of the font of the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsScrollableControlClassHScrollTopic.asp">HScroll</a> (inherited from <b>ScrollableControl</b>)</td><td width="50%">
Gets or sets a value indicating whether the horizontal scroll bar is visible.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRenderRightToLeftTopic.asp">RenderRightToLeft</a> (inherited from <b>Control</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassResizeRedrawTopic.asp">ResizeRedraw</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets or sets a value indicating whether the control redraws itself when resized.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassShowFocusCuesTopic.asp">ShowFocusCues</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassShowKeyboardCuesTopic.asp">ShowKeyboardCues</a> (inherited from <b>Control</b>)</td><td width="50%">
Gets a value indicating whether the control should display keyboard shortcuts.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protproperty.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsScrollableControlClassVScrollTopic.asp">VScroll</a> (inherited from <b>ScrollableControl</b>)</td><td width="50%">
Gets or sets a value indicating whether the vertical scroll bar is visible.
</td></tr></table>
</div>
<h4 class="dtH4">Protected Instance Methods</h4>
<div class="tablediv">
<table class="dtTABLE" cellspacing="0">
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassAccessibilityNotifyClientsTopic.asp">AccessibilityNotifyClients</a> (inherited from <b>Control</b>)</td><td width="50%">
Notifies the accessibility client applications of the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsAccessibleEventsClassTopic.asp">AccessibleEvents</a> for the specified child control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsContainerControlClassAdjustFormScrollbarsTopic.asp">AdjustFormScrollbars</a> (inherited from <b>ContainerControl</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCreateAccessibilityInstanceTopic.asp">CreateAccessibilityInstance</a> (inherited from <b>Control</b>)</td><td width="50%">
Creates a new accessibility object for the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCreateControlsInstanceTopic.asp">CreateControlsInstance</a> (inherited from <b>Control</b>)</td><td width="50%">
Creates a new instance of the control collection for the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCreateHandleTopic.asp">CreateHandle</a> (inherited from <b>Control</b>)</td><td width="50%">
Creates a handle for the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassCreatePropertyTabTopic.asp">CreatePropertyTab</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
When overridden in a derived class, allows for the creation of a <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsDesignPropertyTabClassTopic.asp">PropertyTab</a> .
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDefWndProcTopic.asp">DefWndProc</a> (inherited from <b>Control</b>)</td><td width="50%">
Sends the specified message to the default window procedure.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDestroyHandleTopic.asp">DestroyHandle</a> (inherited from <b>Control</b>)</td><td width="50%">
Destroys the handle associated with the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassDisposeTopic.asp">Dispose</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">Overloaded. </td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemComponentModelComponentClassFinalizeTopic.asp">Finalize</a> (inherited from <b>Component</b>)</td><td width="50%">
Releases unmanaged resources and performs other cleanup operations before the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemComponentModelComponentClassTopic.asp">Component</a> is reclaimed by garbage collection.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsScrollableControlClassGetScrollStateTopic.asp">GetScrollState</a> (inherited from <b>ScrollableControl</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemComponentModelComponentClassGetServiceTopic.asp">GetService</a> (inherited from <b>Component</b>)</td><td width="50%">
Returns an object that represents a service provided by the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemComponentModelComponentClassTopic.asp">Component</a> or by its <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemComponentModelContainerClassTopic.asp">Container</a>.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassGetStyleTopic.asp">GetStyle</a> (inherited from <b>Control</b>)</td><td width="50%">
Retrieves the value of the specified control style bit for the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassGetTopLevelTopic.asp">GetTopLevel</a> (inherited from <b>Control</b>)</td><td width="50%">
Determines if the control is a top-level control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassInitLayoutTopic.asp">InitLayout</a> (inherited from <b>Control</b>)</td><td width="50%">
Called after the control has been added to another container.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassInvokeGotFocusTopic.asp">InvokeGotFocus</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassGotFocusTopic.asp">GotFocus</a> event for the specified control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassInvokeLostFocusTopic.asp">InvokeLostFocus</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassLostFocusTopic.asp">LostFocus</a> event for the specified control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassInvokeOnClickTopic.asp">InvokeOnClick</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassClickTopic.asp">Click</a> event for the specified control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassInvokePaintTopic.asp">InvokePaint</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassPaintTopic.asp">Paint</a> event for the specified control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassInvokePaintBackgroundTopic.asp">InvokePaintBackground</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <b>PaintBackground</b> event for the specified control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassIsInputCharTopic.asp">IsInputChar</a> (inherited from <b>Control</b>)</td><td width="50%">
Determines if a character is an input character that the control recognizes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassIsInputKeyTopic.asp">IsInputKey</a> (inherited from <b>Control</b>)</td><td width="50%">
Determines whether the specified key is a regular input key or a special key that requires preprocessing.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemObjectClassMemberwiseCloneTopic.asp">MemberwiseClone</a> (inherited from <b>Object</b>)</td><td width="50%">
Creates a shallow copy of the current <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemObjectClassTopic.asp">Object</a>.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassNotifyInvalidateTopic.asp">NotifyInvalidate</a> (inherited from <b>Control</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnBackColorChangedTopic.asp">OnBackColorChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassBackColorChangedTopic.asp">BackColorChanged</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnBackgroundImageChangedTopic.asp">OnBackgroundImageChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassBackgroundImageChangedTopic.asp">BackgroundImageChanged</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnBindingContextChangedTopic.asp">OnBindingContextChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassBindingContextChangedTopic.asp">BindingContextChanged</a>event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnCausesValidationChangedTopic.asp">OnCausesValidationChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCausesValidationChangedTopic.asp">CausesValidationChanged</a>event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnChangeUICuesTopic.asp">OnChangeUICues</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassChangeUICuesTopic.asp">ChangeUICues</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnClickTopic.asp">OnClick</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassClickTopic.asp">Click</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassOnComComponentNameChangedTopic.asp">OnComComponentNameChanged</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnContextMenuChangedTopic.asp">OnContextMenuChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassContextMenuChangedTopic.asp">ContextMenuChanged</a>event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnControlAddedTopic.asp">OnControlAdded</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassControlAddedTopic.asp">ControlAdded</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnControlRemovedTopic.asp">OnControlRemoved</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassControlRemovedTopic.asp">ControlRemoved</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsContainerControlClassOnCreateControlTopic.asp">OnCreateControl</a> (inherited from <b>ContainerControl</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnCursorChangedTopic.asp">OnCursorChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassCursorChangedTopic.asp">CursorChanged</a>event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnDockChangedTopic.asp">OnDockChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDockChangedTopic.asp">DockChanged</a>event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnDoubleClickTopic.asp">OnDoubleClick</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDoubleClickTopic.asp">DoubleClick</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnDragDropTopic.asp">OnDragDrop</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDragDropTopic.asp">DragDrop</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnDragEnterTopic.asp">OnDragEnter</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDragEnterTopic.asp">DragEnter</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnDragLeaveTopic.asp">OnDragLeave</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDragLeaveTopic.asp">DragLeave</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnDragOverTopic.asp">OnDragOver</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassDragOverTopic.asp">DragOver</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnEnabledChangedTopic.asp">OnEnabledChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassEnabledChangedTopic.asp">EnabledChanged</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnEnterTopic.asp">OnEnter</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassEnterTopic.asp">Enter</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassOnFontChangedTopic.asp">OnFontChanged</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnForeColorChangedTopic.asp">OnForeColorChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassForeColorChangedTopic.asp">ForeColorChanged</a>event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnGiveFeedbackTopic.asp">OnGiveFeedback</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassGiveFeedbackTopic.asp">GiveFeedback</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassOnGotFocusTopic.asp">OnGotFocus</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassOnHandleCreatedTopic.asp">OnHandleCreated</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassOnHandleDestroyedTopic.asp">OnHandleDestroyed</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnHelpRequestedTopic.asp">OnHelpRequested</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassHelpRequestedTopic.asp">HelpRequested</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnImeModeChangedTopic.asp">OnImeModeChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassImeModeChangedTopic.asp">ImeModeChanged</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnInvalidatedTopic.asp">OnInvalidated</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassInvalidatedTopic.asp">Invalidated</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnKeyDownTopic.asp">OnKeyDown</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassKeyDownTopic.asp">KeyDown</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnKeyPressTopic.asp">OnKeyPress</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassKeyPressTopic.asp">KeyPress</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnKeyUpTopic.asp">OnKeyUp</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassKeyUpTopic.asp">KeyUp</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsScrollableControlClassOnLayoutTopic.asp">OnLayout</a> (inherited from <b>ScrollableControl</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnLeaveTopic.asp">OnLeave</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassLeaveTopic.asp">Leave</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnLocationChangedTopic.asp">OnLocationChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassLocationChangedTopic.asp">LocationChanged</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnLostFocusTopic.asp">OnLostFocus</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassLostFocusTopic.asp">LostFocus</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassOnMouseDownTopic.asp">OnMouseDown</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassMouseDownTopic.asp">MouseDown</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnMouseEnterTopic.asp">OnMouseEnter</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassMouseEnterTopic.asp">MouseEnter</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnMouseHoverTopic.asp">OnMouseHover</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassMouseHoverTopic.asp">MouseHover</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnMouseLeaveTopic.asp">OnMouseLeave</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassMouseLeaveTopic.asp">MouseLeave</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassOnMouseMoveTopic.asp">OnMouseMove</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassMouseMoveTopic.asp">MouseMove</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassOnMouseUpTopic.asp">OnMouseUp</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassMouseUpTopic.asp">MouseUp</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsScrollableControlClassOnMouseWheelTopic.asp">OnMouseWheel</a> (inherited from <b>ScrollableControl</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnMoveTopic.asp">OnMove</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassMoveTopic.asp">Move</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnNotifyMessageTopic.asp">OnNotifyMessage</a> (inherited from <b>Control</b>)</td><td width="50%">
Notifies the control of Windows messages.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassOnNotifyPropertyValueUIItemsChangedTopic.asp">OnNotifyPropertyValueUIItemsChanged</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassOnPaintTopic.asp">OnPaint</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnPaintBackgroundTopic.asp">OnPaintBackground</a> (inherited from <b>Control</b>)</td><td width="50%">
Paints the background of the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnParentBackColorChangedTopic.asp">OnParentBackColorChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassBackColorChangedTopic.asp">BackColorChanged</a> event when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassBackColorTopic.asp">BackColor</a> property value of the control's container changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnParentBackgroundImageChangedTopic.asp">OnParentBackgroundImageChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassBackgroundImageChangedTopic.asp">BackgroundImageChanged</a> event when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassBackgroundImageTopic.asp">BackgroundImage</a> property value of the control's container changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnParentBindingContextChangedTopic.asp">OnParentBindingContextChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassBindingContextChangedTopic.asp">BindingContextChanged</a> event when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassBindingContextTopic.asp">BindingContext</a> property value of the control's container changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnParentChangedTopic.asp">OnParentChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassParentChangedTopic.asp">ParentChanged</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnParentEnabledChangedTopic.asp">OnParentEnabledChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassEnabledChangedTopic.asp">EnabledChanged</a> event when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassEnabledTopic.asp">Enabled</a> property value of the control's container changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnParentFontChangedTopic.asp">OnParentFontChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassFontChangedTopic.asp">FontChanged</a> event when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassFontTopic.asp">Font</a> property value of the control's container changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnParentForeColorChangedTopic.asp">OnParentForeColorChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassForeColorChangedTopic.asp">ForeColorChanged</a> event when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassForeColorTopic.asp">ForeColor</a> property value of the control's container changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnParentRightToLeftChangedTopic.asp">OnParentRightToLeftChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRightToLeftChangedTopic.asp">RightToLeftChanged</a> event when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRightToLeftTopic.asp">RightToLeft</a> property value of the control's container changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnParentVisibleChangedTopic.asp">OnParentVisibleChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassVisibleChangedTopic.asp">VisibleChanged</a> event when the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassVisibleTopic.asp">Visible</a> property value of the control's container changes.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassOnPropertyTabChangedTopic.asp">OnPropertyTabChanged</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassPropertyTabChangedTopic.asp">PropertyTabChanged</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassOnPropertyValueChangedTopic.asp">OnPropertyValueChanged</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassPropertyValueChangedTopic.asp">PropertyValueChanged</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnQueryContinueDragTopic.asp">OnQueryContinueDrag</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassQueryContinueDragTopic.asp">QueryContinueDrag</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassOnResizeTopic.asp">OnResize</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnRightToLeftChangedTopic.asp">OnRightToLeftChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRightToLeftChangedTopic.asp">RightToLeftChanged</a>event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassOnSelectedGridItemChangedTopic.asp">OnSelectedGridItemChanged</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassSelectedGridItemChangedTopic.asp">SelectedGridItemChanged</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassOnSelectedObjectsChangedTopic.asp">OnSelectedObjectsChanged</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassSelectedObjectsChangedTopic.asp">SelectedObjectsChanged</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnSizeChangedTopic.asp">OnSizeChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassSizeChangedTopic.asp">SizeChanged</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnStyleChangedTopic.asp">OnStyleChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassStyleChangedTopic.asp">StyleChanged</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassOnSystemColorsChangedTopic.asp">OnSystemColorsChanged</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnTabIndexChangedTopic.asp">OnTabIndexChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassTabIndexChangedTopic.asp">TabIndexChanged</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnTabStopChangedTopic.asp">OnTabStopChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassTabStopChangedTopic.asp">TabStopChanged</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnTextChangedTopic.asp">OnTextChanged</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassTextChangedTopic.asp">TextChanged</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnValidatedTopic.asp">OnValidated</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassValidatedTopic.asp">Validated</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassOnValidatingTopic.asp">OnValidating</a> (inherited from <b>Control</b>)</td><td width="50%">
Raises the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassValidatingTopic.asp">Validating</a> event.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassOnVisibleChangedTopic.asp">OnVisibleChanged</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassProcessCmdKeyTopic.asp">ProcessCmdKey</a> (inherited from <b>Control</b>)</td><td width="50%">
Processes a command key.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsContainerControlClassProcessDialogCharTopic.asp">ProcessDialogChar</a> (inherited from <b>ContainerControl</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassProcessDialogKeyTopic.asp">ProcessDialogKey</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassProcessKeyEventArgsTopic.asp">ProcessKeyEventArgs</a> (inherited from <b>Control</b>)</td><td width="50%">
Processes a key message and generates the appropriate control events.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassProcessKeyPreviewTopic.asp">ProcessKeyPreview</a> (inherited from <b>Control</b>)</td><td width="50%">
Previews a keyboard message.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsContainerControlClassProcessMnemonicTopic.asp">ProcessMnemonic</a> (inherited from <b>ContainerControl</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsContainerControlClassProcessTabKeyTopic.asp">ProcessTabKey</a> (inherited from <b>ContainerControl</b>)</td><td width="50%">
Selects the next available control and makes it the active control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRaiseDragEventTopic.asp">RaiseDragEvent</a> (inherited from <b>Control</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRaiseKeyEventTopic.asp">RaiseKeyEvent</a> (inherited from <b>Control</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRaiseMouseEventTopic.asp">RaiseMouseEvent</a> (inherited from <b>Control</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRaisePaintEventTopic.asp">RaisePaintEvent</a> (inherited from <b>Control</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRecreateHandleTopic.asp">RecreateHandle</a> (inherited from <b>Control</b>)</td><td width="50%">
Forces the re-creation of the handle for the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassResetMouseEventArgsTopic.asp">ResetMouseEventArgs</a> (inherited from <b>Control</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRtlTranslateAlignmentTopic.asp">RtlTranslateAlignment</a> (inherited from <b>Control</b>)</td><td width="50%">Overloaded.
Converts the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsHorizontalAlignmentClassTopic.asp">HorizontalAlignment</a> to the appropriate <b>HorizontalAlignment</b> to support right-to-left text.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRtlTranslateContentTopic.asp">RtlTranslateContent</a> (inherited from <b>Control</b>)</td><td width="50%">
Converts the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDrawingContentAlignmentClassTopic.asp">ContentAlignment</a> to the appropriate <b>ContentAlignment</b> to support right-to-left text.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRtlTranslateHorizontalTopic.asp">RtlTranslateHorizontal</a> (inherited from <b>Control</b>)</td><td width="50%">
Converts the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsHorizontalAlignmentClassTopic.asp">HorizontalAlignment</a> to the appropriate <b>HorizontalAlignment</b> to support right-to-left text.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassRtlTranslateLeftRightTopic.asp">RtlTranslateLeftRight</a> (inherited from <b>Control</b>)</td><td width="50%">
Converts the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsLeftRightAlignmentClassTopic.asp">LeftRightAlignment</a> to the appropriate <b>LeftRightAlignment</b> to support right-to-left text.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassScaleCoreTopic.asp">ScaleCore</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsContainerControlClassSelectTopic.asp">Select</a> (inherited from <b>ContainerControl</b>)</td><td width="50%">Overloaded. </td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassSetBoundsCoreTopic.asp">SetBoundsCore</a> (inherited from <b>Control</b>)</td><td width="50%">
Performs the work of setting the specified bounds of this control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassSetClientSizeCoreTopic.asp">SetClientSizeCore</a> (inherited from <b>Control</b>)</td><td width="50%">
Sets the size of the client area of the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsScrollableControlClassSetDisplayRectLocationTopic.asp">SetDisplayRectLocation</a> (inherited from <b>ScrollableControl</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsScrollableControlClassSetScrollStateTopic.asp">SetScrollState</a> (inherited from <b>ScrollableControl</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassSetStyleTopic.asp">SetStyle</a> (inherited from <b>Control</b>)</td><td width="50%">
Sets the specified style bit to the specified value.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassSetTopLevelTopic.asp">SetTopLevel</a> (inherited from <b>Control</b>)</td><td width="50%">
Sets the control as the top-level control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassSetVisibleCoreTopic.asp">SetVisibleCore</a> (inherited from <b>Control</b>)</td><td width="50%">
Sets the control to the specified visible state.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassShowEventsButtonTopic.asp">ShowEventsButton</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassUpdateBoundsTopic.asp">UpdateBounds</a> (inherited from <b>Control</b>)</td><td width="50%">Overloaded.
Updates the bounds of the control with the current size and location.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsContainerControlClassUpdateDefaultButtonTopic.asp">UpdateDefaultButton</a> (inherited from <b>ContainerControl</b>)</td><td width="50%"></td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassUpdateStylesTopic.asp">UpdateStyles</a> (inherited from <b>Control</b>)</td><td width="50%">
Forces the assigned styles to be reapplied to the control.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassUpdateZOrderTopic.asp">UpdateZOrder</a> (inherited from <b>Control</b>)</td><td width="50%">
Updates the control in its parent's z-order.
</td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsPropertyGridClassWndProcTopic.asp">WndProc</a> (inherited from <b>PropertyGrid</b>)</td><td width="50%"></td></tr></table>
</div>
<h4 class="dtH4">Protected Internal Instance Methods</h4>
<div class="tablediv">
<table class="dtTABLE" cellspacing="0">
<tr VALIGN="top"><td width="50%"><img src="intmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWindowsFormsControlClassProcessKeyMessageTopic.asp">ProcessKeyMessage</a> (inherited from <b>Control</b>)</td><td width="50%">
Processes a keyboard message.
</td></tr></table>
</div>
<h4 class="dtH4">See Also</h4>
<p>
<a href="NDoc.Core.PropertyGridUI.RuntimePropertyGrid.html">RuntimePropertyGrid Class</a> | <a href="NDoc.Core.PropertyGridUI.html">NDoc.Core.PropertyGridUI Namespace</a></p>
<object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e" viewastext="true" style="display: none;">
<param name="Keyword" value="RuntimePropertyGrid class">
</param>
<param name="Keyword" value="NDoc.Core.PropertyGridUI.RuntimePropertyGrid class">
</param>
<param name="Keyword" value="RuntimePropertyGrid class, all members">
</param>
</object>
<DIV CLASS="footer">
<p>
<center>
<font color="red">
<i>
</i>
</font>
</center>
</p>
</DIV>
<hr />
<div id="footer">
<p>
<a href="mailto:ndoc-helpfeedback@lists.sourceforge.net?subject=NDoc%201.3.1%20SDK%20Documentation%20Feedback:%20RuntimePropertyGrid%20Members
 ">Send comments on this topic.</a>
</p>
<p>
NDoc development is hosted by <a href="http://sourceforge.net/" target="_parent"><img alt="SourceForge" src="http://sourceforge.net/sflogo.php?group_id=36057&amp;type=5" align="absMiddle" border="0"></a>
</p>
<p>Generated from assembly NDoc.Core [1.3.1851.0]</p>
</div>
</div>
</body>
</html>
|