Class PopupCloseInfo
This class stores information about a close request sent to an IPopupControl. The class stores the reason for the close request, information about the operation result, and an instance to a context.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class PopupCloseInfo
Constructors
PopupCloseInfo(RadPopupCloseReason, Object)
Creates an instance of the PopupCloseInfo class. The default value of the Closed property is true.
Declaration
public PopupCloseInfo(RadPopupCloseReason closeReason, object context)
Parameters
RadPopupCloseReason
closeReason
A value from the RadPopupCloseReason enum that determines the reason for the close request. |
System.Object
context
A request context. |
Properties
Closed
Defines whether the request is executed or not.
Declaration
public bool Closed { get; }
Property Value
System.Boolean
|
CloseReason
The reason for the close request.
Declaration
public RadPopupCloseReason CloseReason { get; }
Property Value
RadPopupCloseReason
|
Context
The context associated with this the close request.
Declaration
public object Context { get; }
Property Value
System.Object
|