DisplayFolder Constructor

WRAPPER_API DisplayFolder()
 

WRAPPER_API DisplayFolder(long folderID, long parentID, const BmgChar *  folderName, ObjectType type, bool hidden)

 

Description

Creates a new instance of a DisplayFolder class.

 

Example

void DisplayFolder_Sample()

{

GEOCALCPBW_NAMESPACE::DisplayFolder* thisFolder = 0;

 

thisFolder = new GEOCALCPBW_NAMESPACE::DisplayFolder();

thisFolder->set_FolderID(100);

thisFolder->set_ParentID(1);

thisFolder->set_FolderName(L"Test Folder Name");

thisFolder->set_Type(GEOCALCPBW_NAMESPACE::GeoBase::AngularUnitType);

thisFolder->set_Hidden(true);

}