Sets the property value for a given property name.
[Visual Basic] Sub SetProperty( _ ByVal p_sName As String, _ ByVal p_sValue As String _ ) [C#] void SetProperty( string p_sName, string p_sValue ); [C++] void SetProperty( String* p_sName, String* p_sValue ); [JScript] function SetProperty( String p_sName, String p_sValue );
This method, along with GetProperty and ListProperties, allows manage non-standard properties with the extracted item.
Use this method to set a non-standard property for the item. The name of the property is case-sensitive.
To remove a property from the propery list, set the given property to null.
IFilterItem Interface | Okapi.Library.Filter Namespace