Locates a PropertyInteger32 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 GetInteger32Value( _ 
   ByVal propertyName As String _ 
) As Nullable(Of Integer)
C#
Nullable<int> GetInteger32Value(
   string propertyName
)
C++
Nullable<int> GetInteger32Value(
   String propertyName
) abstract 
J#
Nullable<int> GetInteger32Value(
   string propertyName
)
JScript
function GetInteger32Value(
   propertyName : String
) : Nullable<int>

Parameters

propertyName
A String specifying a property name.

Return Value

An Integer 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 PropertyInteger32 instance.

See Also