InputPaneVisibilityEventArgs.EnsuredFocusedElementInView Property

Definition

Identifies whether the application has taken steps to ensure that the input pane doesn't cover the UI element that has focus.

public:
 property bool EnsuredFocusedElementInView { bool get(); void set(bool value); };
bool EnsuredFocusedElementInView();

void EnsuredFocusedElementInView(bool value);
public bool EnsuredFocusedElementInView { get; set; }
var boolean = inputPaneVisibilityEventArgs.ensuredFocusedElementInView;
inputPaneVisibilityEventArgs.ensuredFocusedElementInView = boolean;
Public Property EnsuredFocusedElementInView As Boolean

Property Value

Boolean

bool

True if the application has ensured that the input pane isn't covering the UI element that has focus; otherwise false.

Remarks

If this property is false, Windows ensures that the input pane doesn't cover the focused element.

If you do the work to ensure that the focused element isn't covered, be sure to set this property to true to prevent Windows from trying to do the same work; otherwise, the results can be unpredictable.

Applies to

See also