IVsTrackProjectDocumentsEvents2::OnAfterRemoveFiles Method (Int32, Int32, array<IVsProject^>^, array<Int32>^, array<String^>^, array<VSREMOVEFILEFLAGS>^)
Visual Studio 2015
This method notifies the client after files are removed from the project.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
int OnAfterRemoveFiles( int cProjects, int cFiles, array<IVsProject^>^ rgpProjects, array<int>^ rgFirstIndices, array<String^>^ rgpszMkDocuments, array<VSREMOVEFILEFLAGS>^ rgFlags )
Parameters
- cProjects
-
Type:
System::Int32
[in] Number of projects from which files were removed.
- cFiles
-
Type:
System::Int32
[in] Number of files removed.
- rgpProjects
-
Type:
array<Microsoft.VisualStudio.Shell.Interop::IVsProject^>^
[in] Array of projects from which files were removed.
- rgFirstIndices
-
Type:
array<System::Int32>^
[in] Array of first indices identifying which project each file belongs to. For more information, see IVsTrackProjectDocumentsEvents2.
- rgpszMkDocuments
-
Type:
array<System::String^>^
[in] Array of paths for the files that were removed.
- rgFlags
-
Type:
array<Microsoft.VisualStudio.Shell.Interop::VSREMOVEFILEFLAGS>^
[in] Array of flags. For a list of rgFlags values, see VSREMOVEFILEFLAGS.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From IVsTrackProjectDocumentsEvents2.idl
HRESULT IVsTrackProjectDocumentsEvents2::OnAfterRemoveFiles( [in] int cProjects, [in] int cFiles, [in, size_is(cProjects)] IVsProject *rgpProjects[], [in, size_is(cProjects)] const int rgFirstIndices[], [in, size_is(cFiles)] const LPCOLESTR rgpszMkDocuments[], [in, size_is(cFiles)] const VSREMOVEFILEFLAGS rgFlags[] );
Show: