get_Name Method

WRAPPER_API const BmgChar *get_Name()

 

Description

The get_Name method returns the name of this object.  

 

Example

void Serializable_getName(GEOCALCPBW_NAMESPACE::Serializable * s)

{

CString description;

description += "Name = ";

description += s->get_Name();

description += ",\n";

if(s->get_Identifiers().Exists(_towchar("GC").c_str()))

{

description += "Issuer = \"GC\", ";

description += "Code = ";

description += s->get_Identifiers().get_Item(_towchar("GC").c_str());

description += ",\n";

}

description += "Remarks = ";

description += s->get_Remarks();

MessageBox(0, description, "", 0);

}