WRAPPER_API const DisplayFolder* GetFolder(long folderID) const
Retrieves the specified folder.
void DataView_GetFolder(GEOCALCPBW_NAMESPACE::DataView & dataView, long folderID)
{
if (dataView.get_IsLoaded())
{
const DisplayFolder* thisFolder = m_DataView->GetFolder(folderID);
if (thisFolder)
{
const BmgChar* thisFolderName = thisFolder.get_FolderName();
}
}
}