set_Type Method

WRAPPER_API void set_Type(ObjectType type)

 

Description

Sets the ObjectType of the objects the folder contains (this may be a combination of several different types)

 

Example

void DisplayFolder_ObjectType(GEOCALCPBW_NAMESPACE::DisplayFolder* thisFolder)

{

GEOCALCPBW_NAMESPACE::GeoBase::ObjectType type = thisFolder->get_Type();

type = GEOCALCPBW_NAMESPACE::GeoBase::AngularUnitType;

thisFolder->set_Type(type);

}