Help > Web Development > Object Reference > Object Reference > ISYSSearch > Properties Property
<a name="kanchor537"></a>ISYSSearch:Properties Property
Properties is a location where you can store user defined name-value pairs. They do not affect the outcome of a search.

Syntax
[VBScript]
 property ISYSSearch.Properties(string Index) as variant
[C#]
System.Object ISYSSearch.get_Properties(
  string Index);
void ISYSSearch.set_Properties( string Index, System.Object value);
[ColdFusion/Java]
System.Object ISYSSearch.Properties(
  java.lang.String Index
) throws ComException;
void ISYSSearch.set_Properties( java.lang.String Index, System.Object value );
Parameters
IndexThe name of the property to get or set.

Examples
[VBScript]
<% ' This sample demostrates creating a new ISYSSearch object and specifying the ' User-Defined value that gets stored in the result list. It can be accessed ' by calling ISYSResultList::Store ' Create the new ISYSSearch object dim ISYSSearch : set ISYSSearch = ISYSEngine.NewSearch ISYSSearch.Properties("Date") = Now %>