VirtualArray.IFormat Method

Top 

Description

Converts the numeric values contained within the calling Array into a string based on the format specifiers given by formatString. The format specifiers are standard C/C++ specifiers as used with the sprintf function. The IFormat method converts an integer value to a string; the Format method should be used to convert a double precision floating point value to a string.

 

Timing Precision Mode

This page describes functionality in millisecond timing precision mode.

Click here to see the documentation for this object in nanosecond timing precision mode.

 

Overload List

Signatures

Return Value

Description

VirtualArray.IFormat(String formatString)

String

Converts the integer values contained within the calling VirtualArray into a string based on the format specifiers given by formatString. If values in the calling VirtualArray are not integers, only the integer parts of the values will be used. Array elements will be delimited using a space.

VirtualArray.IFormat(String formatString, String delimiter)

String

Converts the integer values contained within the calling VirtualArray into a string based on the format specifiers given by formatString. If values in the calling VirtualArray are not integers, only the integer parts of the values will be used. Array elements will be delimited using delimiter.

 

 

See also

VirtualArray Object