IVsTrackProjectDocuments2.OnAfterRemoveFiles Method (IVsProject, Int32, String[], VSREMOVEFILEFLAGS[])

 

This method is called by a project after files have been removed from the project.

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

int OnAfterRemoveFiles(
	IVsProject pProject,
	int cFiles,
	string[] rgpszMkDocuments,
	VSREMOVEFILEFLAGS[] rgFlags
)

Parameters

pProject
Type: Microsoft.VisualStudio.Shell.Interop.IVsProject

[in] Project from which the files have been removed.

cFiles
Type: System.Int32

[in] Number of files that were removed.

rgpszMkDocuments
Type: System.String[]

[in, size_is(cFiles)] Array of paths for the files that were removed.

rgFlags
Type: Microsoft.VisualStudio.Shell.Interop.VSREMOVEFILEFLAGS[]

[in, size_is(cFiles)] Array of flags. For a list of rgFlags values, see VSREMOVEFILEFLAGS.

Return Value

Type: System.Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From IVsTrackProjectDocuments2.idl

HRESULT IVsTrackProjectDocuments2::OnAfterRemoveFiles(
   [in] IVsProject *pProject,
   [in] int cFiles,
   [in, size_is(cFiles)] const LPCOLESTR rgpszMkDocuments[],
   [in, size_is(cFiles)] const VSREMOVEFILEFLAGS rgFlags[]
);

The project must call this method after it has removed files to notify the environment that the files have been removed.

Return to top
Show: