Data Type Conversions - Designer - Foundation 23.2 - Foundation 23.2 - Ready - Hyland RPA - external

Hyland RPA Designer

Platform
Hyland RPA
Product
Designer
Release
Foundation 23.2
License
  • Convert Object to String

    myString = myObject.ToString() 
  • Convert String to Integer

    myInteger = Int32.Parse(myString)
  • Convert String to Integer and Returns Boolean

    myBoolean = Int32.TryParse(myString, myInteger) 
  • Converts Various Types to Integer

    myInteger = CInt(myObject) 
  • Cut off Fractional Values and Convert Double to Integer

    myInteger = CInt(Math.Truncate(myDouble))