Version

CalculatorButtonType Enumeration

The button type
Syntax
'Declaration
 
Public Enum CalculatorButtonType 
   Inherits System.Enum
public enum CalculatorButtonType : System.Enum 
Members
MemberDescription
ActionButtonCauses no operation to be performed on the value. May change the current value, however that is optional. (M+, MC, MR)
NumericNumeric Type, number is based on key value
OperatorStandard 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.
OperatorImmediateActionThis 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.
OperatorPerformImmediateThenPendingCalculationsThis 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. (%)
OperatorPerformPendingCalculationsThis operator, performs pending calculations. (=) This operator does not get pushed into the queue.
Requirements

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

See Also