UICommandSeparator
UICommandSeparator
UICommandSeparator
UICommandSeparator
Class
Definition
Represents a command separator in a context menu.
public : sealed class UICommandSeparator : IUICommandpublic sealed class UICommandSeparator : IUICommandPublic NotInheritable Class UICommandSeparator Implements IUICommand// You can use this class in JavaScript.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
You can use a command separator to create a visual separation between groups of items in a context menu.
Setting properties on a UICommandSeparator object has no effect.
Constructors
UICommandSeparator() UICommandSeparator() UICommandSeparator() UICommandSeparator()
Creates a new instance of the UICommandSeparator class.
public : UICommandSeparator()public UICommandSeparator()Public Sub New()// You can use this method in JavaScript.
- See Also
Properties
Id Id Id Id
Gets or sets the identifier of the command separator.
public : PlatForm::Object Id { get; set; }public object Id { get; set; }Public ReadWrite Property Id As object// You can use this property in JavaScript.
- Value
- PlatForm::Object object object object
The identifier of the command separator.
Remarks
Setting this property has no effect.
Invoked Invoked Invoked Invoked
Gets or sets the handler for the event that is fired for the command separator.
public : UICommandInvokedHandler Invoked { get; set; }public UICommandInvokedHandler Invoked { get; set; }Public ReadWrite Property Invoked As UICommandInvokedHandler// You can use this property in JavaScript.
- Value
- UICommandInvokedHandler UICommandInvokedHandler UICommandInvokedHandler UICommandInvokedHandler
The event handler for the command separator.
Remarks
Setting this property has no effect.
Label Label Label Label
Gets or sets the label for the command separator.
public : PlatForm::String Label { get; set; }public string Label { get; set; }Public ReadWrite Property Label As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The label for the command separator.
Remarks
Setting this property has no effect.