![]() |
MikroCAD SDK Library
|
Class for data conversations.
Static Public Member Functions | |
| static string | DoubleToString (double dValue, string stFormat="%g") |
| double -> string conversion More... | |
| static wstring | DoubleToWString (double dValue, wstring stFormat=L"%g") |
| double -> wstring conversion More... | |
| static string | DWordToString (unsigned long dwValue, long lSize=-1) |
| unsigned long -> string conversion More... | |
| static wstring | DWordToWString (unsigned long dwValue, long lSize=-1) |
| unsigned long -> wstring conversion More... | |
| static string | LongToString (long lValue, long lSize=-1) |
| long -> string conversion More... | |
| static wstring | LongToWString (long lValue, long lSize=-1) |
| long -> wstring conversion More... | |
| static bool | StringToDouble (wstring stValue, double &dValue) |
| wstring -> double conversion More... | |
| static bool | StringToDouble (string stValue, double &dValue) |
| string -> double conversion More... | |
| static bool | StringToDWord (wstring stValue, unsigned long &lValue) |
| wstring -> unsigned long conversion More... | |
| static bool | StringToDWord (string stValue, unsigned long &dwValue) |
| string -> unsigned long conversion More... | |
| static bool | StringToLong (wstring stValue, long &lValue) |
| wstring -> long conversion More... | |
| static bool | StringToLong (string stValue, long &lValue) |
| string -> long conversion More... | |
|
static |
double -> string conversion
| dValue | Value as double |
| stFormat | Format-String |
|
static |
double -> wstring conversion
| dValue | Value as double |
| stFormat | Format-String |
|
static |
unsigned long -> string conversion
| dwValue | Value as unsigned long |
| lSize | Length, if greater than zero filled with leading zeros |
|
static |
unsigned long -> wstring conversion
| dwValue | Value as unsigned long |
| lSize | Length, if greater than zero filled with leading zeros |
|
static |
long -> string conversion
| lValue | Value as long |
| lSize | Length, if greater than zero filled with leading zeros |
|
static |
long -> wstring conversion
| lValue | Value as long |
| lSize | Length, if greater than zero filled with leading zeros |
|
static |
wstring -> double conversion
| stValue | Value as wstring |
| dValue | Output value as double |
|
static |
string -> double conversion
| stValue | Value as string |
| dValue | Output value as double |
|
static |
wstring -> unsigned long conversion
| stValue | Value as wstring |
| lValue | Output value as unsigned long |
|
static |
string -> unsigned long conversion
| stValue | Value as string |
| dwValue | Output value as unsigned long |
|
static |
wstring -> long conversion
| stValue | Value as wstring |
| lValue | Output value as long |
|
static |
string -> long conversion
| stValue | Value as string |
| lValue | Output value as long |