ToggleCommand Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides functionality for extending Visual Studio through brokered services.
public abstract class ToggleCommand : Microsoft.VisualStudio.Extensibility.Commands.Command, Microsoft.VisualStudio.Extensibility.Commands.IToggleCommand, System.ComponentModel.INotifyPropertyChanged
type ToggleCommand = class
inherit Command
interface IToggleCommand
interface IExecutableCommand
interface ICommand
interface INotifyPropertyChanged
Public MustInherit Class ToggleCommand
Inherits Command
Implements INotifyPropertyChanged, IToggleCommand
- Inheritance
- Implements
Constructors
ToggleCommand() |
Initializes a new instance of the ToggleCommand class. |
ToggleCommand(VisualStudioExtensibility) |
Initializes a new instance of the ToggleCommand class. |
Properties
CommandConfiguration |
Gets the configuration for this command. The value of this property is evaluated at compile time when building the Visual Studio extension. (Inherited from Command) |
DisableDuringExecution |
Gets or sets a value indicating whether command should be disabled when it is executing to avoid multiple invocations at the same time. (Inherited from ExecutableCommandHandler) |
DisplayName |
Gets the display name for the command, or |
Extensibility |
Gets the Visual Studio extensibility point. (Inherited from ExecutableCommandHandler) |
Flags |
Gets the flags associated with the command. (Inherited from PlaceholderCommand) |
Id |
Gets a unique id for this command within its command set. (Inherited from PlaceholderCommand) |
IsChecked |
Gets a value indicating whether this command is toggled. |
IsDisposed | (Inherited from PlaceholderCommand) |
IsEnabled |
Gets a value indicating whether this command is enabled or disabled. (Inherited from ExecutableCommandHandler) |
IsVisible |
Gets a value indicating whether this command is visible or invisible. (Inherited from PlaceholderCommand) |
TooltipText |
Gets the tooltip text for the command, or the display name if no tooltip text was provided. (Inherited from PlaceholderCommand) |
Methods
Dispose() | (Inherited from PlaceholderCommand) |
Dispose(Boolean) |
Disposes the command instance. (Inherited from PlaceholderCommand) |
ExecuteCommandAsync(IClientContext, CancellationToken) |
Raised when command is executed on the client. (Inherited from ExecutableCommandHandler) |
ExecuteCommandAsync(IReadOnlyDictionary<String,Object>, CancellationToken) |
Called to invoke the command. (Inherited from ExecutableCommandHandler) |
InitializeAsync(CancellationToken) |
Completes async initialization of command instance. (Inherited from PlaceholderCommand) |
OnPropertyChanged(PropertyChangedEventArgs) |
Fires PropertyChanged event. (Inherited from PlaceholderCommand) |
SetEnabledState(Nullable<Boolean>) |
Set this command as enabled, disabled, or |
SetVisibilityState(Nullable<Boolean>) |
Set this command as visible, invisible, or |
Events
PropertyChanged | (Inherited from PlaceholderCommand) |