Search
FunctionDelegate Delegate
See Also
 






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

Namespace: MindFusion.Gauges
Assembly: MindFusion.Gauges

 Syntax

C#  Copy Code

public delegate float FunctionDelegate (
    float value,
    float argument
)

Visual Basic  Copy Code

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

 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.

 See Also