public DisplayFolder()
public 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()
{
GeoCalc.DisplayFolder* thisFolder = 0;
thisFolder = new GeoCalc.DisplayFolder();
thisFolder->set_FolderID(100);
thisFolder->set_ParentID(1);
thisFolder->set_FolderName(L"Test Folder Name");
thisFolder->set_Type(System.Object.AngularUnitType);
thisFolder->set_Hidden(true);
}
Comments
0 comments
Please sign in to leave a comment.