Activate
Make a folder the active folder
BOOL Activate( )
TRUE on Success, FALSE on failure
EX1
// Create a new folder within the active folder and make the new folder active int Folder_Activate_Ex1() { Folder fld = Project.ActiveFolder(); Folder subfld = fld.AddSubfolder("MyFolder"); BOOL bVal = subfld.Activate(); return (int) bVal; }
Set the project's current folder.
origin.h