set_Type Method

WRAPPER_API void set_Type(ObjectType type)
 

Description

Set this object's ObjectType (this does not change the GC code on the real datasource object -- this is part of the key we use to match this object to the actual datasource object)
 

Example

void DisplayFolder_ObjectType(GEOCALCPBW_NAMESPACE::DisplayObject* thisObject)

{

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

type = GEOCALCPBW_NAMESPACE::GeoBase::AngularUnitType

thisObject->set_Type(type);

}