Skip to main content
A newer version of this page is available. .

FunctionBase.GetValue(Double) Method

Returns the function value for the specified argument.

Namespace: DevExpress.Xpf.Carousel

Assembly: DevExpress.Xpf.Carousel.v19.2.dll

Declaration

public double GetValue(
    double x
)

Parameters

Name Type Description
x Double

A Double value specifying the argument.

Returns

Type Description
Double

A Double value that represents the function value for the specified argument.

Remarks

This public function is called by other classes to obtain function values. If you need to define your own function, derive your class from FunctionBase, and override its protected GetValueOverride function.

See Also