set_GCCode Method

WRAPPER_API void set_GCCode(const BmgChar * GCCode)

 

Description

Sets the GC identifier code for this object (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_GCCode(GEOCALCPBW_NAMESPACE::DisplayObject* thisObject)

{

const BmgChar* gcCode = thisObject->get_GCCode();

gcCode = L"TESTGC";

thisObject->set_GCCode(gcCode);

}