Data Conversion Functions
Development Area | Method Name | Method Description |
Client End (Callouts and Forms) |
|
|
| VIS.Utility.Util.getValueOfDecimal(value) | Return decimal value |
| VIS.Utility.Util.getValueOfInt(value) | Return integer value |
| VIS.Utility.Util.getValueOfString(value) | Return string Value |
| VIS.Utility.Util.getValueOfDouble(value) | Return double Value |
Server End |
|
|
| VAdvantage.Utility.Util.GetValueOfInt(object value) | If value is null or empty string, return 0 otherwise integer value. |
| VAdvantage.Utility.Util.GetValueOfDecimal(object value) | If value is blank, return 0 otherwise decimal value. |
| VAdvantage.Utility.Util.GetValueOfBool( object value) | It returns bool value. |
| VAdvantage.Utility.Util.GetValueOfString(object value) | If value is null or empty string return empty string otherwise string value. |