AbstractChartNodeGetBooleanAttribute Method |
Convenience routine to get a Boolean-valued attribute.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public virtual bool GetBooleanAttribute(
string name,
bool defaultValue
)
Public Overridable Function GetBooleanAttribute (
name As String,
defaultValue As Boolean
) As Boolean
public:
virtual bool GetBooleanAttribute(
String^ name,
bool defaultValue
)
abstract GetBooleanAttribute :
name : string *
defaultValue : bool -> bool
override GetBooleanAttribute :
name : string *
defaultValue : bool -> bool
Parameters
- name
- Type: SystemString
A String which contains the name of the attribute to be
assessed.
- defaultValue
- Type: SystemBoolean
A bool specifying the default value of the attribute.
Return Value
Type:
Boolean
A
bool containing the attribute value.
Remarks
The value of an attribute is returned if it is defined and its value
is of type bool. Otherwise the defaultValue is
returned.
See Also