WRAPPER_API void set_Format(const wchar_t *value)
The set_Format method sets the string format used by the FromString and ToString methods. For a description of the various supported string formats, click here.
void LinearValue_setFormat(GeoCalcPBW::ProjectedPoint & pt)
{
pt.get_North().set_Format(L"MGRS");
pt.get_North().FromString(L"17TNE8536028236");
pt.get_East().set_Format(L"MGRS");
pt.get_East().FromString(L"17TNE8536028236");
}