ToString Method

WRAPPER_API const wchar_t *ToString() const

 

Description

The ToString method produces a string that gives the value of this AngularValue in the string format indicated by the get_Format method.  For a description of the various supported string formats, click here.

 

Example

void AngularValue_ToString(GeoCalcPBW::AngularValue & av)

{

_towchar format("DDMMSS");

av.set_Format(format.c_str());

const wchar_t * str = av.ToString();

}