LanguageService.AddCodeWindowManager(CodeWindowManager) Method
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.
Adds a code window manager to the language service.
public:
void AddCodeWindowManager(Microsoft::VisualStudio::Package::CodeWindowManager ^ m);
void AddCodeWindowManager(Microsoft::VisualStudio::Package::CodeWindowManager const & m);
public void AddCodeWindowManager (Microsoft.VisualStudio.Package.CodeWindowManager m);
member this.AddCodeWindowManager : Microsoft.VisualStudio.Package.CodeWindowManager -> unit
Public Sub AddCodeWindowManager (m As CodeWindowManager)
Parameters
[in] An instance of the CodeWindowManager object to add.
Remarks
The language service maintains an internal list of code window managers associated with the language service. This association is made when this method is called from Microsoft.VisualStudio.Package.CodeWindowManager.AddAdornments.
RemoveCodeWindowManager is called when Microsoft.VisualStudio.Package.CodeWindowManager.RemoveAdornments is called to disassociate the code window manager from the language service.