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.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public class PopupCloseInfo

Inheritance: objectPopupCloseInfo

Constructors

PopupCloseInfo(RadPopupCloseReason, object)

Creates an instance of the PopupCloseInfo class. The default value of the Closed property is true.

Declaration

cs-api-definition
public PopupCloseInfo(RadPopupCloseReason closeReason, object context)

Parameters

closeReason

RadPopupCloseReason

A value from the RadPopupCloseReason enum that determines the reason for the close request.

context

object

A request context.

Properties

CloseReason

The reason for the close request.

Declaration

cs-api-definition
public RadPopupCloseReason CloseReason { get; }

Property Value

RadPopupCloseReason

Closed

Defines whether the request is executed or not.

Declaration

cs-api-definition
public bool Closed { get; }

Property Value

bool

Context

The context associated with this the close request.

Declaration

cs-api-definition
public object Context { get; }

Property Value

object