MessageBoxDismissedEventArgs Class

Represents data returned by MessageBox when it is dismissed.

Definition

Namespace: BeeMobile.MessageBox
Assembly: BeeMobile.MessageBox.AVA (in BeeMobile.MessageBox.AVA.dll) Version: 11.0.0.0+25fcde4cb1146137b36e11419a35b5b60dc956f0
C#
public class MessageBoxDismissedEventArgs : EventArgs
Inheritance
Object    EventArgs    MessageBoxDismissedEventArgs

Remarks

When MessageBox is dismissed by the user by clicking any of its buttons, MessageBox will execute a "dismiss handler", that is a method with an input argument of MessageBoxDismissedEventArgs type.

Constructors

MessageBoxDismissedEventArgs Initializes a new instance of MessageBoxDismissedEventArgs class.

Properties

ClickedButtonIndex Contains index of button, which the user clicked or null, if it was closed by Close button.
ClickedButtonLabel Contains a string which was displayed by the button, which user clicked or null, if it was closed by Close button.
WasCloseButtonClicked Indicates, if MessageBox was closed, because the user clicked on its Close button.

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also