Xceed Grid for WinForms v4.3 Documentation
Xceed.Editors.v2.6 Assembly / Xceed.Editors Namespace / WinCalculator Class / Error Event


In This Topic
    Error Event
    In This Topic
    Raised when a mathematical error occurs.
    Syntax
    'Declaration
     
    <DescriptionAttribute("Raised when a mathematical error occurs.")>
    <CategoryAttribute("Data")>
    Public Event Error As CalculatorErrorEventHandler
    'Usage
     
    Dim instance As WinCalculator
    Dim handler As CalculatorErrorEventHandler
     
    AddHandler instance.Error, handler
    [Description("Raised when a mathematical error occurs.")]
    [Category("Data")]
    public event CalculatorErrorEventHandler Error
    Event Data

    The event handler receives an argument of type CalculatorErrorEventArgs containing data related to this event. The following CalculatorErrorEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the mathematical error that occurred in the WinCalculator control.  
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also