This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Returns a specified number raised to the specified power.

Namespace: Smartsite.Runtime.Modules
Assembly:  Smartsite.Runtime.Modules (in Smartsite.Runtime.Modules.dll)

Syntax

C#Copy imageCopy Code
[(IsDeterministic = true)]
public static double Pow(
	double a,
	double b
)
Visual Basic (Declaration)Copy imageCopy Code
<(IsDeterministic := True)> _
Public Shared Function Pow ( _
	a As , _
	b As  _
) As 

Parameters

a
Double
Input number to be raised to a power.
b
Double
Input number that specifies a power.

Return Value

The number a raised to the power b.

See Also

Advanced