CreateAngularValue Constructor

WRAPPER_API static AngularValue *CreateAngularValue()

 

Description

The CreateAngularValue constructor creates a new instance of the AngularValue class.  The resulting AngularValue has a value of zero degrees.

 

Example

void AngularValue_CreateAngularValue()

{

GEOCALCPBW_NAMESPACE::AngularValue * av = GEOCALCPBW_NAMESPACE::AngularValue::CreateAngularValue();

_towchar format("DDdMM");

av->set_Format(format.c_str());

_towchar str("18-3075");

av->FromString(str.c_str());

}