Constructs a Text object given a format string, an IFormatProvider and the value to be formatted.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public Text(
	string format,
	IFormatProvider formatProvider,
	IFormattable obj
)
Visual Basic (Declaration)
Public Sub New ( _
	format As String, _
	formatProvider As IFormatProvider, _
	obj As IFormattable _
)
Visual C++
public:
Text(
	String^ format, 
	IFormatProvider^ formatProvider, 
	IFormattable^ obj
)

Parameters

format
Type: System..::.String
A string containing the format.
formatProvider
Type: System..::.IFormatProvider
An IFormatProvider like NumberFormat or DateTimeFormat.
obj
Type: System..::.IFormattable
A IFormattable that is to be converted into a Text object.

See Also