Control.CanSelect Property
Assembly: System.Windows.Forms (in system.windows.forms.dll)
This property returns true if the Selectable value of System.Windows.Forms.ControlStyles is set to true, is contained in another control, the control itself is visible and enabled, and all its parent controls are visible and enabled.
The Windows Forms controls in the following list are not selectable and will return a value of false for the CanSelect property. Controls derived from these controls are also not 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.