Sets the value of this Content Engine property.


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

Syntax

Visual Basic (Declaration)
Sub SetValue( _ 
   ByVal val As Nullable(Of Integer) _ 
)
C#
void SetValue(
   Nullable<int> val
)
C++
void SetValue(
   Nullable<int> val
) abstract 
J#
void SetValue(
   Nullable<int> val
)
JScript
function SetValue(
   val : Nullable<int>
)

Parameters

val
An Integer that specifies the new property value.

Exceptions

Exception TypeCondition
E_READ_ONLY Thrown if an attempt is made to update a property that is not settable (its Property.IsSettable method returns False).

See Also