Equivalent of Cell.Value2 vs. Cell.Value?

The MS API refers to two different versions of the Cell.Value property in the following article: `http://support.microsoft.com/kb/182812`

Does the Aspose API have this feature?

Thanks,

Jeff

Hi Jeff,

Here in Aspose.Cells you can have Cell.StringValue and Cell.Value to achive this functionality.

Range.Value == Aspose.Cells.Cell.StringValue
Range.Value2 == Aspose.Cells.Cell.Value

Thanks,

Thanks!

Jeff