ClassHex2Oct
Converts a hexadecimal number to octal representation, optionally padded to a specified length.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class Hex2Oct : StringsInFunction
Inheritance: objectFunctionBaseFunctionWithArgumentsFunctionWithSameTypeArguments<string>StringsInFunctionHex2Oct
Inherited Members
Constructors
Hex2Oct()
Initializes a new Hex2Oct function instance for hexadecimal to octal conversion.
Declaration
public Hex2Oct()
Fields
FunctionName
The name of the function.
Properties
ArgumentConversionRules
Gets the argument conversion rules that control how cell values are coerced for this function.
Declaration
public override ArgumentConversionRules ArgumentConversionRules { get; }
Property Value
The argument conversion rules as ArgumentConversionRules.
Overrides
FunctionInfo
Gets metadata describing the function's signature, parameters, and localization keys.
Declaration
public override FunctionInfo FunctionInfo { get; }
Property Value
The function info as FunctionInfo.
Overrides
Methods
EvaluateOverride(FunctionEvaluationContext<string>)
Evaluates the function with the provided arguments and returns the octal representation as a string expression.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<string> context)
Parameters
context
FunctionEvaluationContext<string>
The context.
Returns
Functions result as RadExpression.
Overrides