IToolTipPresenterFactory Interface
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.
Proffers a platform-specific IToolTipPresenter to the IDE.
public interface class IToolTipPresenterFactory
public interface IToolTipPresenterFactory
type IToolTipPresenterFactory = interface
Public Interface IToolTipPresenterFactory
Examples
[Export(typeof(IToolTipPresenterFactory))]
[Name(nameof("super cool tooltip factory"))]
[Order(Before = "default")]
Remarks
This class will always be constructed and called purely from the UI thread. Extenders can construct their own presenter and supersede the default one via MEF ordering. Presenter providers should return a new ToolTip each time they are called and should support multiple simultaneous open tips.
Methods
Create(ITextView, ToolTipParameters) |
Constructs a new instance of IToolTipPresenter for the current platform. |