GetFloatStoreProperty method

Gets a float value for a pre-defined or custom message store property.

Syntax
Visual Basic
Public Function GetFloatStoreProperty( _
   ByVal propName As String _
) As Single
C#
public float  GetFloatStoreProperty(
   string  propName
);
Parameters
  • propName   The pre-defined or custom property name.

Return value

The float property value.

Remarks

You can use this method to access pre-defined or user-defined client store properties.

For a list of pre-defined properties, see MessageStoreProperties class.

For more information, see Client message store properties.

Exceptions
  • QAException class - Thrown if there is a conversion error getting the property value or if the property does not exist.

See also