IVsSolution::QueryEditSolutionFile Method (UInt32)
Visual Studio 2015
Determines whether the solution file can be changed.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Parameters
- pdwEditResult
-
Type:
System::UInt32
[out] Pointer to QER_EditOK or QER_NoEdit_UserCanceled.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell.idl:
HRESULT IVsSolution::QueryEditSolutionFile( [out] DWORD *pdwEditResult );
This method is a shortcut for the QueryEditFiles method. Instead of having to build an array of files, call IVsSolution.QueryEditSolutionFile and get a result indicating whether you can edit the solution file.
Show: