Overrides MfObject.ToString()
OutputVar := instance.ToString()
OutputVar := instance.ToString(AsStringObj)
OutputVar := instance.ToString(AsStringObj, startIndex)
OutputVar := instance.ToString(AsStringObj, startIndex, length)
Converts the value of this instance to a string var.
A string var whose value is the same as this instance.
You must call the ToString() method to convert the StringBuilder object to a String var.
Converts the value of this instance to a string var or instance of MfString.
AsStringObj
Boolean value; If true return value will be instance of MfString; Otherwise returns var string.
Can be boolean var or instance of MfBool.
If AsStringObj is true a MfString whose value is the same as the specified string of this instance; Otherwise a string var whose value is the same as the specified string of this instance.
Converts the value of this instance to a substring var or instance of MfString.
AsStringObj
Boolean value; If true return value will be instance of MfString; Otherwise returns var string.
Can be boolean var or instance of MfBool.
Optional Parameter. Default value is false.
startIndex
The zero-based starting position of the substring in this instance.
Can be any type that matches IsInteger or var integer.
If AsStringObj is true a MfString whose value is the same as the specified substring of this instance; Otherwise a string var whose value is the same as the specified substring of this instance.
The return substring will be from the zero-base position of startIndex to the end of the instance length.
Throws MfArgumentOutOfRangeException startIndex is less than zero.
You must call the ToString(AsStringObj, startIndex) method to convert the StringBuilder object to a substring var or instance of MfString.
Converts the value of this instance to a substring var or instance of MfString.
AsStringObj
Boolean value; If true return value will be instance of MfString; Otherwise returns var string.
Can be boolean var or instance of MfBool.
Optional Parameter. Default value is false.
startIndex
The zero-based starting position of the substring in this instance.
Can be any type that matches IsInteger or var integer.
length
The length of the substring.
Can be any type that matches IsInteger or var integer.
If AsStringObj is true a MfString whose value is the same as the specified substring of this instance; Otherwise a string var whose value is the same as the specified substring of this instance.
Throws MfArgumentOutOfRangeException if startIndex or length is less than zero or the sum of startIndex and length is greater than the length of the current instance.
You must call the ToString(AsStringObj, startIndex, length) method to convert the StringBuilder object to a substring var or instance of MfString.