Method
Pow
Description
Returns the value specified raised to the power specified.
Usage
result = Pow(value, power)
Part |
Type |
Description |
---|---|---|
result |
Value raised to power. |
|
value |
The value you want to raised to power. |
|
power |
The power that value is raised to. |
Sample code
This example uses the Pow function to return four raised to the power of seven.
Var d As Double
d = Pow(4, 7) ' returns 16384
Compatibility
All project types on all supported operating systems.
See also
^ operator.