InputPaneVisibilityEventArgs.EnsuredFocusedElementInView Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.