[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRange.Text

Text Property

Text

Gets the value of the cell represented by this IRange as a formatted string.

Declaration
string Text { get; }
ReadOnly Property Text As String
Property Value
Type Description
string

The text.

Examples
IRange range = worksheet.Range["A1"];
range.Value = 1234.5;
range.NumberFormat = "$#,##0.00";
string text = range.Text;