Control.Select Method ()
Assembly: System.Windows.Forms (in system.windows.forms.dll)
The Select method activates the control if the control's Selectable style bit is set to true in ControlStyles, it is contained in another control, and all its parent controls are both visible and enabled.
The Windows Forms controls in the following list are not selectable. Controls derived from controls in the list will also not be selectable.
-
LinkLabel (when there is no link present in the control)
The following code example selects the specified Control, if it is selectable.
public: void ControlSelect( Control^ control ) { // Select the control, if it can be selected. if ( control->CanSelect ) { control->Select( ); } }
public void ControlSelect(Control control)
{
// Select the control, if it can be selected.
if (control.get_CanSelect()) {
control.Select();
}
} //ControlSelect
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.