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 LinearValue_ToString(GeoCalcPBW::ProjectedPoint & pt)

{

pt.get_North().set_Format(L"MGRS");

CString mgrs = _tochar(pt.get_North().ToString()).c_str();;

}