RemoveFolder Method

public bool RemoveFolder(long folderID)

 

Description

Remove the specified folder from the view (Note: the actual objects will not be deleted from the datasource).

 

Example

void DataView_RemoveFolder(GeoCalc.DataView & dataView)

{

long folderID = 100;

if (!dataView.RemoveFolder(folderID ))

{

AfxMessageBox("RemoveFolder failed");

}

}