CoreWindowDialog.IsInteractionDelayed Property

Definition

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

Int32

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.

Applies to