IVsSolution.CloseSolutionElement Method
Visual Studio 2008
Programmatically closes a document, a project, or the entire solution.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Parameters
- grfCloseOpts
- Type: System.UInt32
[in] Close options for the solution (.sln) file. For a list of grfCloseOpts values, see __VSSLNCLOSEOPTIONS.
- pHier
- Type: Microsoft.VisualStudio.Shell.Interop.IVsHierarchy
[in] Pointer to the IVsHierarchy interface of the document to close.
- docCookie
- Type: System.UInt32
[in] Document that was closed. This value is returned from the running document table, by calling GetDocumentInfo.
Return Value
Type: System.Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
COM Signature
From vsshell.idl:
HRESULT IVsSolution::CloseSolutionElement( [in] VSSLNCLOSEOPTIONS grfCloseOpts, [in] IVsHierarchy *pHier, [in] VSCOOKIE docCookie );
To close the entire solution, call CloseSolutionElement(grfCloseOpts, null, null). To close a single project, call CloseSolutionElement(grfCloseOpts, phier, null). To close a single document, call CloseSolutionElement(grfCloseOpts, null, docCookie).
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.