CoreWindowDialog.IsInteractionDelayed 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.
Gets or sets a value that indicates whether any UI interaction event message is slightly delayed or not. This delay prevents a user from accidentally invoking an action on the dialog window.
public:
property int IsInteractionDelayed { int get(); void set(int value); };
int IsInteractionDelayed();
void IsInteractionDelayed(int value);
public int IsInteractionDelayed { get; set; }
var int32 = coreWindowDialog.isInteractionDelayed;
coreWindowDialog.isInteractionDelayed = int32;
Public Property IsInteractionDelayed As Integer
Property Value
int
true if a fractional delay is introduced to any interactions with the dialog; false if it is not.
Remarks
Set this property to true when the dialog is asking the user for permission to perform some action which could affect the user’s privacy, security, or data.