[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.NumberFormatParseException

NumberFormatParseException Class

Represents an exception thrown when a range number format cannot be parsed.

Inheritance
NumberFormatParseException
Implements
Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public sealed class NumberFormatParseException : FormatException, ISerializable
Public NotInheritable Class NumberFormatParseException
    Inherits FormatException
    Implements ISerializable
Examples
try
{
    worksheet.Range["A1"].NumberFormat = "\u00A5* #,##0.00_; \u00A5* #,##0.00_; \u00A5* \"-\";@_";
}
catch (NumberFormatParseException exception)
{
    string message = exception.Message;
}

Implements