get_Format Method

WRAPPER_API const wchar_t *get_Format() const

 

Description

The get_Format method returns a string that indicates the current string format used by the FromString and ToString methods.  For a description of the various supported string formats, click here.

 

Example

void AngularValue_getFormat(GeoCalcPBW::AngularValue & av)

{

if(CString(av.get_Format()) == CString("DDMMSS"))

{

_towchar str("183015");

av.FromString(str.c_str());

}

}