ToString()

Namespace ›› System.MfText ›› StringBuilder ›› Methods ››
Parent Previous Next

ToString()

Overrides MfObject.ToString()

OutputVar := instance.ToString()
OutputVar := instance.ToString(AsStringObj)
OutputVar := instance.ToString(AsStringObj, startIndex)
OutputVar := instance.ToString(AsStringObj, startIndex, length)

ToString()

Converts the value of this instance to a string var.

Returns

A string var whose value is the same as this instance.

Remarks

You must call the ToString() method to convert the StringBuilder object to a String var.

ToString(AsStringObj)

Converts the value of this instance to a string var or instance of MfString.

Parameters

AsStringObj

Boolean value; If true return value will be instance of MfString; Otherwise returns var string.
Can be boolean var or instance of MfBool.

Returns

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.

ToString(AsStringObj, startIndex)

Converts the value of this instance to a substring var or instance of MfString.

Parameters

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.

Returns

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

Throws MfArgumentOutOfRangeException startIndex is less than zero.

Remarks

You must call the ToString(AsStringObj, startIndex) method to convert the StringBuilder object to a substring var or instance of MfString.

ToString(AsStringObj, startIndex, length)

Converts the value of this instance to a substring var or instance of MfString.

Parameters

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.

Returns

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

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.

Remarks

You must call the ToString(AsStringObj, startIndex, length) method to convert the StringBuilder object to a substring var or instance of MfString.