Gets a string representation of the object elements.
Overrides MfListBase.ToString()
OutPutVar := instance.ToString([returnAsObj, startIndex, count, format])
Gets a string representation of the object elements
returnAsObj
Optional boolean value. Default is false.
If true result is returned as instance of MfString; Otherwise result is returned as a var string.
Can be boolean var or instance of MfBool.
startIndex
Optional. Default value is 0. The zero-based starting index to start reading elements from.
Can be var integer or any type that matches IsIntegerNumber.
count
Optional, the number of elements from StartIndex to include in the output string.
If omitted then starts at StartIndex and includes all elements to the end current instance.
format
Optional, the default value is 0. Can be 0 or 1.
If format is 0 then no special formating is done to the return string.
If format is 1 then return string is grouped into groups of 4 with a hyphen between each group. See Example below.
Returns string var or MfString instance representing object elements
lst := MfBinaryList.FromString("0110-0010-1011-0010-0010-1100")
MsgBox % lst.ToString() ; 011000101011001000101100
MsgBox % lst.ToString(true,,,1).Value ; 0110-0010-1011-0010-0010-1100