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();
}
}
}
Comments
0 comments
Please sign in to leave a comment.