IVsLaunchPadEvents Interface
Notifies the environment to cancel a launch pad event.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
<GuidAttribute("65BC5C20-41D1-11D1-84A4-00A0C9110055")> _
<InterfaceTypeAttribute()> _
Public Interface IVsLaunchPadEvents
[GuidAttribute("65BC5C20-41D1-11D1-84A4-00A0C9110055")]
[InterfaceTypeAttribute()]
public interface IVsLaunchPadEvents
[GuidAttribute(L"65BC5C20-41D1-11D1-84A4-00A0C9110055")]
[InterfaceTypeAttribute()]
public interface class IVsLaunchPadEvents
[<GuidAttribute("65BC5C20-41D1-11D1-84A4-00A0C9110055")>]
[<InterfaceTypeAttribute()>]
type IVsLaunchPadEvents = interface end
public interface IVsLaunchPadEvents
The IVsLaunchPadEvents type exposes the following members.
Methods
Name | Description | |
---|---|---|
Tick | Allows cancellation of a launch pad event. |
Top
Remarks
Note
Query for this service only if you are calling from the main UI thread. On other threads, use CreateLaunchPad.
If you implement this interface, the environment will make periodic calls to see if you want to continue of cancel your launch pad.
See illustrations of the implementation and/or calling of this interface in the sample Basic Project.
Notes to Implementers
Implement this interface to enable mid-process cancellation of a launch pad event.