New to Telerik UI for WinFormsStart a free 30-day trial

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:

C#
public class PopupCloseInfo

Inheritance: objectPopupCloseInfo

Constructors

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

C#
public PopupCloseInfo(RadPopupCloseReason closeReason, object context)
Parameters:closeReasonRadPopupCloseReason

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

contextobject

A request context.

Properties

Defines whether the request is executed or not.

C#
public bool Closed { get; }

The reason for the close request.

C#
public RadPopupCloseReason CloseReason { get; }

The context associated with this the close request.

C#
public object Context { get; }