MathematicalFunctionCommandType Enumeration (original) (raw)

Summary

Value that indicates the function used by the MathematicalFunctionCommand class object.

Syntax

C#

Objective-C

C++/CLI

Java

Python

public enum MathematicalFunctionCommandType   

typedef NS_ENUM(NSInteger, LTMathematicalFunctionCommandType) { LTMathematicalFunctionCommandTypeSquare = 0x0000, LTMathematicalFunctionCommandTypeLogarithm = 0x0001, LTMathematicalFunctionCommandTypeSquareRoot = 0x0002, LTMathematicalFunctionCommandTypeSine = 0x0003, LTMathematicalFunctionCommandTypeCosine = 0x0004 };

public final class MathematicalFunctionCommandType extends java.lang.Enum<MathematicalFunctionCommandType>

public enum class MathematicalFunctionCommandType   

class MathematicalFunctionCommandType(Enum): Square = 0 Logarithm = 1 SquareRoot = 2 Sine = 3 Cosine = 4

Members

Value Member Description
0 Square Square function.
1 Logarithm Logarithmic function.
2 SquareRoot Square root function.
3 Sine Sine function.
4 Cosine Cosine function.