'Declaration Public Enum CalculatorButtonType Inherits System.Enum
public enum CalculatorButtonType : System.Enum
Member | Description |
---|---|
ActionButton | Causes no operation to be performed on the value. May change the current value, however that is optional. (M+, MC, MR) |
Numeric | Numeric Type, number is based on key value |
Operator | Standard operator, goes into queue, if operator already in queue, then that operation is performed first, queue is cleared, result along with this operator is placed into the queue. |
OperatorImmediateAction | This operator operates on the current value of the engine, (ie. the most recent numeric) This operator DOES NOT clear the queue, it simply replaces the current current value of the engine. (sqrt) This operator does not get pushed into the queue. |
OperatorPerformImmediateThenPendingCalculations | This operator Performs an immediate calculation(based on OperatorImmediateAction criteria). It replaces the current value, then performs remaining operations in the queue, clears the queue and places the result value in the queue. This operator does not get pushed into the queue. (%) |
OperatorPerformPendingCalculations | This operator, performs pending calculations. (=) This operator does not get pushed into the queue. |
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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