GetObjectDisplayName Method

public void GetObjectDisplayName(const BmgChar * GCCode, ObjectType type, const BmgChar * newName)

 

Description

Retrieves the display name for an object (or an empty string if none has been specified).

 

Example

void DataView_GetObjectDisplayName(GeoCalc.DataView & dataView)

{

 

dataView->SetObjectDisplayName(L"DEGREES", System.Object.AngularUnitType, L"DEGREES DISPLAY");

const BmgChar* dispName = dataView->GetObjectDisplayName(L"DEGREES", System.Object.AngularUnitType);

}