AbstractChartNodeGetDoubleAttribute Method |
Convenience routine to get a Double-valued attribute.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public virtual double GetDoubleAttribute(
string name,
double defaultValue
)
Public Overridable Function GetDoubleAttribute (
name As String,
defaultValue As Double
) As Double
public:
virtual double GetDoubleAttribute(
String^ name,
double defaultValue
)
abstract GetDoubleAttribute :
name : string *
defaultValue : float -> float
override GetDoubleAttribute :
name : string *
defaultValue : float -> float
Parameters
- name
- Type: SystemString
A String which contains the name of the attribute to be
assessed.
- defaultValue
- Type: SystemDouble
A double specifying the default value of the attribute.
Return Value
Type:
Double
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