GetFolder Method

WRAPPER_API const DisplayFolder* GetFolder(long folderID) const

 

Description

Retrieves the specified folder.

 

Example

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();

}

}

}