MindFusion.Wpf Pack Programmer's Guide
FunctionDelegate Delegate
See Also
 





Represents a user-defined method, which performs custom distribution of values along the gauge scale.

Namespace: MindFusion.Gauges.Wpf
Assembly: MindFusion.Gauges.Wpf

 Syntax

C#  Copy Code

public delegate double FunctionDelegate (
    double value,
    double argument
)

Visual Basic  Copy Code

Public Delegate Function FunctionDelegate( _
    value As Double, _
    argument As Double _
) As Double

 Parameters

value

The source parameter value.

argument
An optional argument passed to the function. This is the value of the FunctionArgument property of the BaseScale class.

 Return Value

The function result, which will be displayed on the scale.

 See Also

MindFusion.Gauges.Wpf Namespace