LanguageService.CreateCodeWindowManager(IVsCodeWindow, Source) 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.
Instantiates a CodeWindowManager class.
public:
 virtual Microsoft::VisualStudio::Package::CodeWindowManager ^ CreateCodeWindowManager(Microsoft::VisualStudio::TextManager::Interop::IVsCodeWindow ^ codeWindow, Microsoft::VisualStudio::Package::Source ^ source);public virtual Microsoft.VisualStudio.Package.CodeWindowManager CreateCodeWindowManager(Microsoft.VisualStudio.TextManager.Interop.IVsCodeWindow codeWindow, Microsoft.VisualStudio.Package.Source source);abstract member CreateCodeWindowManager : Microsoft.VisualStudio.TextManager.Interop.IVsCodeWindow * Microsoft.VisualStudio.Package.Source -> Microsoft.VisualStudio.Package.CodeWindowManager
override this.CreateCodeWindowManager : Microsoft.VisualStudio.TextManager.Interop.IVsCodeWindow * Microsoft.VisualStudio.Package.Source -> Microsoft.VisualStudio.Package.CodeWindowManagerPublic Overridable Function CreateCodeWindowManager (codeWindow As IVsCodeWindow, source As Source) As CodeWindowManagerParameters
- codeWindow
- IVsCodeWindow
[in] An IVsCodeWindow object representing a code window.
Returns
If successful, returns an instance of a CodeWindowManager class; otherwise, returns a null value.
Remarks
The base method always returns a new instance of a CodeWindowManager class. If you derive a class from CodeWindowManager, you must override this method to return an instance of your class.