'Declaration <DescriptionAttribute("Raised when a mathematical function is executed either through user interaction or through code set at runtime.")> <CategoryAttribute("Action")> Public Event FunctionExecuted As CalculatorFunctionEventHandler
'Usage Dim instance As WinCalculator Dim handler As CalculatorFunctionEventHandler AddHandler instance.FunctionExecuted, handler
[Description("Raised when a mathematical function is executed either through user interaction or through code set at runtime.")] [Category("Action")] public event CalculatorFunctionEventHandler FunctionExecuted
Event Data
The event handler receives an argument of type CalculatorFunctionEventArgs containing data related to this event. The following CalculatorFunctionEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Function | Gets the calculator function that was executed. |
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