Locates a PropertyFloat64 property by name in this Properties collection and returns the value it holds.


Namespace: FileNet.Api.Property
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Function GetFloat64Value( _ 
   ByVal propertyName As String _ 
) As Nullable(Of Double)
C#
Nullable<double> GetFloat64Value(
   string propertyName
)
C++
Nullable<double> GetFloat64Value(
   String propertyName
) abstract 
J#
Nullable<double> GetFloat64Value(
   string propertyName
)
JScript
function GetFloat64Value(
   propertyName : String
) : Nullable<double>

Parameters

propertyName
A String specifying a property name.

Return Value

A Double specifying the value of the property.

Exceptions

Exception TypeCondition
EngineRuntimeException Thrown if the property cannot be found in the collection or or is not a PropertyFloat64 instance.

See Also