IndexProperty_SmartParameter
Assigns a constant value to a particular property of a FileNet® document.
Syntax
bool IndexProperty_SmartParameter (string PropertyName, string Value, string Length)
Parameters
- The name of the FileNet document’s target property.
- The value to assign to the property.
- The length of the property value (space filled).
Smart Parameters are supported for all arguments.
Returns
False, if the FileNet property specified cannot be set. Otherwise, True.Level
All levels.Details
Assigns a constant value to a particular property of a FileNet document.- Example
The following action assigns the value of field Taxes to the FNTaxQtr property of the FileNet document.
IndexProperty_SmartParameter(FNTaxQtr,@P/Taxes,"")The following action assigns the space filled value of page variable LastName to the FNNameLast property of the FileNet document, if the variable value exceeds 10 characters the value that is saved is right-truncated.
IndexProperty_SmartParameter(FNNameLast,@P.LastName,10)