Control.CanSelect プロパティ

定義

コントロールを選択できるかどうかを示す値を取得します。

public:
 property bool CanSelect { bool get(); };
[System.ComponentModel.Browsable(false)]
public bool CanSelect { get; }
[<System.ComponentModel.Browsable(false)>]
member this.CanSelect : bool
Public ReadOnly Property CanSelect As Boolean

プロパティ値

Boolean

コントロールを選択できる場合は true。それ以外の場合は false

属性

次のコード例では、指定したコードが選択可能な場合に選択します Control

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.CanSelect)
   {
      control.Select();
   }
}
Public Sub ControlSelect(control As Control)
   ' Select the control, if it can be selected.
   If control.CanSelect Then
      control.Select()
   End If
End Sub

注釈

このプロパティは、値が別のSystem.Windows.Forms.ControlStylesコントロールにtrue含まれている場合、コントロール自体が表示および有効になっている場合、およびすべての親コントロールが表示および有効になっている場合Selectableに返trueします。

次の一覧のWindows フォーム コントロールは選択できず、プロパティのfalse値をCanSelect返します。 これらのコントロールから派生したコントロールも選択できません。

適用対象

こちらもご覧ください