Value#

class pyedb.dotnet.database.utilities.value.Value#

Bases: float

Class defining Edb Value properties.

Overview#

sqrt

Square root of the value.

log10

Base-10 logarithm of the value.

sin

Sine of the value.

cos

Cosine of the value.

asin

Arcsine of the value.

acos

Arccosine of the value.

tan

Tangent of the value.

atan

Arctangent of the value.

__str__

Returns the string of the variable.

__add__

Adds two Edb Values.

__radd__

Return value+self.

__sub__

Subtracts two Edb Values.

__rsub__

Return value-self.

__mul__

Multiplies two Edb Values.

__rmul__

Return value*self.

__truediv__

Divides two Edb Values.

__rtruediv__

Return value/self.

Import detail#

from pyedb.dotnet.database.utilities.value import Value

Method detail#

Value.__str__()#

Returns the string of the variable.

Returns:
str
Value.__add__(other)#

Adds two Edb Values.

Value.__radd__(other)#

Return value+self.

Value.__sub__(other)#

Subtracts two Edb Values.

Value.__rsub__(other)#

Return value-self.

Value.__mul__(other)#

Multiplies two Edb Values.

Value.__rmul__(other)#

Return value*self.

Value.__truediv__(other)#

Divides two Edb Values.

Value.__rtruediv__(other)#

Return value/self.

Value.sqrt()#

Square root of the value.

Value.log10()#

Base-10 logarithm of the value.

Value.sin()#

Sine of the value.

Value.cos()#

Cosine of the value.

Value.asin()#

Arcsine of the value.

Value.acos()#

Arccosine of the value.

Value.tan()#

Tangent of the value.

Value.atan()#

Arctangent of the value.