Text Constructor (String, IFormatProvider, IFormattable) |
Constructs a Text object given a format string, an
IFormatProvider and the value to be formatted.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public Text(
string format,
IFormatProvider formatProvider,
IFormattable obj
)
Public Sub New (
format As String,
formatProvider As IFormatProvider,
obj As IFormattable
)
public:
Text(
String^ format,
IFormatProvider^ formatProvider,
IFormattable^ obj
)
new :
format : string *
formatProvider : IFormatProvider *
obj : IFormattable -> Text
Parameters
- format
- Type: SystemString
A string containing the format.
- formatProvider
- Type: SystemIFormatProvider
An IFormatProvider like NumberFormat
or
DateTimeFormat.
- obj
- Type: SystemIFormattable
A IFormattable that is to be converted into a Text
object.
See Also