Convenience routine to get a Double-valued attribute.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual double GetDoubleAttribute(
	string name,
	double defaultValue
)
Visual Basic (Declaration)
Public Overridable Function GetDoubleAttribute ( _
	name As String, _
	defaultValue As Double _
) As Double
Visual C++
public:
virtual double GetDoubleAttribute(
	String^ name, 
	double defaultValue
)

Parameters

name
Type: System..::.String
A String which contains the name of the attribute to be assessed.
defaultValue
Type: System..::.Double
A double specifying the default value of the attribute.

Return Value

A double containing the attribute value.

Remarks

The value of an attribute is returned if it is defined and its value is of type double. Otherwise the defaultValue is returned.

See Also