Class
CellFlyoutActionContext

Represents the execution context of a CellFlyoutAction command.

Definition

Namespace:Telerik.UI.Xaml.Controls.Grid.Commands

Assembly:Telerik.WinUI.Controls.dll

Syntax:

cs-api-definition
public class CellFlyoutActionContext

Inheritance: objectCellFlyoutActionContext

Constructors

CellFlyoutActionContext(DataGridCellInfo, bool, CellFlyoutGesture)

Initializes a new instance of the CellFlyoutActionContext class.

Declaration

cs-api-definition
public CellFlyoutActionContext(DataGridCellInfo cellInfo, bool isOpen, CellFlyoutGesture gesture)

Parameters

cellInfo

DataGridCellInfo

isOpen

bool

gesture

CellFlyoutGesture

Properties

CellInfo

Gets or sets the DataGridCellInfo instance over which a holding event has occurred.

Declaration

cs-api-definition
public DataGridCellInfo CellInfo { get; set; }

Property Value

DataGridCellInfo

FlyoutTemplate

Gets or sets the FlyoutTemplate.

Declaration

cs-api-definition
public DataTemplate FlyoutTemplate { get; set; }

Property Value

DataTemplate

Gesture

Gets or sets the Gesture property which indicates whether the flyout is triggered by a mouse or a touch input.

Declaration

cs-api-definition
public CellFlyoutGesture Gesture { get; set; }

Property Value

CellFlyoutGesture

IsOpen

Gets or sets a value indicating whether the IsOpen property which indicates whether the flyout should be opened or closed.

Declaration

cs-api-definition
public bool IsOpen { get; set; }

Property Value

bool