FlavoredProject::IVsTrackProjectDocumentsEvents2::OnAfterAddFilesEx Method (Int32, Int32, array<IVsProject^>^, array<Int32>^, array<String^>^, array<VSADDFILEFLAGS>^)
Visual Studio 2015
Raised after files have been added to a project.
Assembly: Microsoft.VisualStudio.Shell.14.0 (in Microsoft.VisualStudio.Shell.14.0.dll)
private: virtual int OnAfterAddFilesEx( int cProjects, int cFiles, array<IVsProject^>^ rgpProjects, array<int>^ rgFirstIndices, array<String^>^ rgpszMkDocuments, array<VSADDFILEFLAGS>^ rgFlags ) sealed = IVsTrackProjectDocumentsEvents2::OnAfterAddFilesEx
Parameters
- cProjects
-
Type:
System::Int32
The number of projects in the rgpProjects array.
- cFiles
-
Type:
System::Int32
The number of files to be added.
- rgpProjects
-
Type:
array<Microsoft.VisualStudio.Shell.Interop::IVsProject^>^
An array of IVsProject objects.
- rgFirstIndices
-
Type:
array<System::Int32>^
An array of indices of the files that were affected.
- rgpszMkDocuments
-
Type:
array<System::String^>^
An array of paths of the files that were affected.
- rgFlags
-
Type:
array<Microsoft.VisualStudio.Shell.Interop::VSADDFILEFLAGS>^
An array of VSADDFILEFLAGS. May be null.
Events are filtered so that they report only those related to this project. This is not required for flavoring, but it simplifies the work the derived classes have to do when subscribing to these events.
Show: