Control.CanSelect プロパティ
コントロールを選択できるかどうかを示す値を取得します。
Public ReadOnly Property CanSelect As Boolean
[C#]
public bool CanSelect {get;}
[C++]
public: __property bool get_CanSelect();
[JScript]
public function get CanSelect() : Boolean;
プロパティ値
コントロールを選択できる場合は true 。それ以外の場合は false 。
解説
コントロールが true に設定された ControlStyles.Selectable を持ち、別のコントロールに格納されており、すべての親コントロールが表示されていて有効である場合、このプロパティは true を返します。
CanSelect プロパティに対して false の値を返す、選択できない Windows フォーム コントロールの一覧を次に示します。これらのコントロールから派生したコントロールも、選択できません。
- Panel
- GroupBox
- PictureBox
- ProgressBar
- Splitter
- Label
- LinkLabel (コントロール内にリンクが存在しない場合)
使用例
[Visual Basic, C#, C++] 指定した Control が選択可能である場合に、そのコントロールを選択する例を次に示します。
Public Sub ControlSelect(control As Control)
' Select the control, if it can be selected.
If control.CanSelect Then
control.Select()
End If
End Sub
[C#]
public void ControlSelect(Control control)
{
// Select the control, if it can be selected.
if(control.CanSelect)
{
control.Select();
}
}
[C++]
public:
void ControlSelect(Control* control) {
// Select the control, if it can be selected.
if (control->CanSelect) {
control->Select();
}
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
Control クラス | Control メンバ | System.Windows.Forms 名前空間 | Select | Enabled | Visible | Focus | CanFocus