ClassColumnHeaderFlyoutCommand
Class
Represents a command that executes when the Header is Tapped.
Definition
Namespace:Telerik.UI.Xaml.Controls.Grid.Commands
Assembly:Telerik.WinUI.Controls.dll
Syntax:
cs-api-definition
public class ColumnHeaderFlyoutCommand : ICommand
Inheritance: objectColumnHeaderFlyoutCommand
Implements:
Constructors
ColumnHeaderFlyoutCommand(DataGridColumnHeader)
Initializes a new instance of the ColumnHeaderFlyoutCommand class.
Declaration
cs-api-definition
public ColumnHeaderFlyoutCommand(DataGridColumnHeader owner)
Parameters
owner
Properties
ColumnHeader
Gets or sets the Tapped Header of the DataGrid.
Declaration
cs-api-definition
public DataGridColumnHeader ColumnHeader { get; set; }
Property Value
Methods
CanExecute(object)
Defines the method that determines whether the command can execute in its current state.
Execute(object)
Defines the method to be called when the command is invoked.
Declaration
cs-api-definition
public void Execute(object parameter)
Parameters
parameter
The parameter used by the command.
Implements
Events
CanExecuteChanged
Occurs when changes occur that affect whether or not the command should execute.
Declaration
cs-api-definition
public event EventHandler CanExecuteChanged
Event Value
Implements