Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

FunctionBase.GetValue(Double) Method

Returns the function value for the specified argument.

Namespace: DevExpress.Xpf.Carousel

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

NuGet Package: DevExpress.Wpf.Carousel

#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