MaxStemmingCount Property

UltimateSearch

Collapse imageExpand ImageCopy imageCopyHover image
Gets or sets the maximum number of stemmings to add for each search term.

Namespace: Karamasoft.WebControls.UltimateSearch
Assembly: UltimateSearch (in UltimateSearch.dll) Version: 3.7.4186.26690

Syntax

C#
public int MaxStemmingCount { get; set; }
Visual Basic
Public Property MaxStemmingCount As Integer
	Get
	Set
Visual C++
public:
property int MaxStemmingCount {
	int get ();
	void set (int value);
}

Field Value

Maximum number of stemmings to add for each search term. The default value is 10.

Remarks

Use this property to set the maximum number of stemmings to add for each search term. For example, if you set it to 2 and enter "writer" as a search term, it will search for "write" and "writing" in addition to "writer".

See Also