Class OperationsSource
Represents an operations source for a calculator control.
Inheritance
Namespace: Telerik.Windows.Controls.Calculator
Assembly: Telerik.Windows.Controls.Input.dll
Syntax
public class OperationsSource : Object
Constructors
OperationsSource()
Declaration
public OperationsSource()
Properties
Add
Gets an Operation instance that represents addition.
Declaration
public Operation Add { get; }
Property Value
Operation
|
Divide
Gets an Operation instance that represents division.
Declaration
public Operation Divide { get; }
Property Value
Operation
|
Multiply
Gets an Operation instance that represents multiplication.
Declaration
public Operation Multiply { get; }
Property Value
Operation
|
Negate
Gets an Operation instance that represents negation.
Declaration
public Operation Negate { get; }
Property Value
Operation
|
Percent
Gets an Operation instance that represents percent.
Declaration
public Operation Percent { get; }
Property Value
Operation
|
Reciprocal
Gets an Operation instance that represents reciprocal.
Declaration
public Operation Reciprocal { get; }
Property Value
Operation
|
SquareRoot
Gets an Operation instance that represents square root.
Declaration
public Operation SquareRoot { get; }
Property Value
Operation
|
Substract
Gets an Operation instance that represents subtraction.
Declaration
public Operation Substract { get; }
Property Value
Operation
|