Table of Contents
BypassUserGestureCheck Property

Gets or sets a value indicating whether to bypass user gesture check.

Syntax
 public Boolean BypassUserGestureCheck { get; set; }
Remarks

Certain HTML elements checks whether an "user gesture" is present before proceeding on some actions. For example, a file input element would not display the file browsing dialog unless it is triggered by a mouse click from the user. As such trying to trigger the file browsing dialog programmatically (for example, by calling the file input element's click event) would fail due to this check. Setting this property to true to bypass this check.

See Also