GetFolder Method

public const DisplayFolder* GetFolder(long folderID) const

 

Description

Retrieves the specified folder.

 

Example

void DataView_GetFolder(GeoCalc.DataView & dataView, long folderID)

{

if (dataView.get_IsLoaded())

{

const DisplayFolder* thisFolder = m_DataView->GetFolder(folderID);

if (thisFolder)

{

const BmgChar* thisFolderName = thisFolder.get_FolderName();

}

}

}