Okapi .NET Library

IFilterItem.SetProperty Method 

 [This is preliminary documentation and subject to change.]

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
);

Parameters

p_sName
Name of the property to set.
p_sValue
New value of the property.

Remarks

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.

See Also

IFilterItem Interface | Okapi.Library.Filter Namespace