IVsSolution2.CloseSolutionElement Method

Programmatically closes a document, a project, or the entire solution.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

Syntax

'Declaration
Function CloseSolutionElement ( _
    grfCloseOpts As UInteger, _
    pHier As IVsHierarchy, _
    docCookie As UInteger _
) As Integer
int CloseSolutionElement(
    uint grfCloseOpts,
    IVsHierarchy pHier,
    uint docCookie
)
int CloseSolutionElement(
    [InAttribute] unsigned int grfCloseOpts, 
    [InAttribute] IVsHierarchy^ pHier, 
    [InAttribute] unsigned int docCookie
)
abstract CloseSolutionElement : 
        grfCloseOpts:uint32 * 
        pHier:IVsHierarchy * 
        docCookie:uint32 -> int 
function CloseSolutionElement(
    grfCloseOpts : uint, 
    pHier : IVsHierarchy, 
    docCookie : uint
) : int

Parameters

  • 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.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Implements

IVsSolution.CloseSolutionElement(UInt32, IVsHierarchy, UInt32)

Remarks

From vsshell.idl:

HRESULT IVsSolution2::CloseSolutionElement(
   [in] VSSLNCLOSEOPTIONS grfCloseOpts, 
   [in] IVsHierarchy *pHier, 
   [in] VSCOOKIE docCookie
);

To close the entire solution, call CloseSolutionElement(grfCloseOpts, nulla null reference (Nothing in Visual Basic), nulla null reference (Nothing in Visual Basic)). To close a single project, call CloseSolutionElement(grfCloseOpts, phier, nulla null reference (Nothing in Visual Basic)). To close a single document, call CloseSolutionElement(grfCloseOpts, nulla null reference (Nothing in Visual Basic), docCookie).

.NET Framework Security

See Also

Reference

IVsSolution2 Interface

Microsoft.VisualStudio.Shell.Interop Namespace