UICommandInvokedHandler Delegate

Definition

Represents a callback function that handles the event that is fired when the user invokes a context menu command.

public delegate void UICommandInvokedHandler(IUICommand ^ command);
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.Guid(3673651791, 49786, 17048, 154, 198, 41, 34, 196, 94, 125, 166)]
class UICommandInvokedHandler : MulticastDelegate
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.Guid(3673651791, 49786, 17048, 154, 198, 41, 34, 196, 94, 125, 166)]
public delegate void UICommandInvokedHandler(IUICommand command);
var uICommandInvokedHandlerHandler = function(command){
/* Your code */
}
Public Delegate Sub UICommandInvokedHandler(command As IUICommand)

Parameters

command
IUICommand

Represents the invoked command.

Attributes

Windows requirements

Device family
Windows 10 (introduced in 10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v1.0)

Applies to

See also