FunctionBase.GetValue(Double) Method
Returns the function value for the specified argument.
Namespace: DevExpress.Xpf.Carousel
Assembly: DevExpress.Xpf.Carousel.v24.1.dll
NuGet Package: DevExpress.Wpf.Carousel
Declaration
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