Control.ContainsFocus Property

Definition

Gets a value indicating whether the control, or one of its child controls, currently has the input focus.

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

Property Value

true if the control or one of its child controls currently has the input focus; otherwise, false.

Attributes

Remarks

You can use this property to determine whether a control or any of the controls contained within it has the input focus. To determine whether the control has focus, regardless of whether any of its child controls have focus, use the Focused property. To give a control the input focus, use the Focus or Select methods.

Applies to

See also