[]
Gets the value of the cell represented by this IRange as a formatted string.
string Text { get; }
ReadOnly Property Text As String
| Type | Description |
|---|---|
| string | The text. |
IRange range = worksheet.Range["A1"];
range.Value = 1234.5;
range.NumberFormat = "$#,##0.00";
string text = range.Text;