Bean Software Search Control Documentation   
 
 
     




RemoveNoiseWord Method


Description:
Use it to remove specific noise word from NoiseWords collection.

[Visual Basic .NET]

Public Function RemoveNoiseWord(ByVal NoiseWord As String) As Boolean

Public Function RemoveNoiseWord(ByVal Index As Integer) As Boolean


[C#]

public Boolean RemoveNoiseWord(String NoiseWord);

public Boolean RemoveNoiseWord(Int32 Index);


NoiseWord
If you use this override, method finds and removes a noise word which is equal to value of the NoiseWord parameter

Index
Removes a noise word at specific position in NoiseWords collection.

True, if method found and removed a word.
False, if word does not exist in NoiseWords collection.

Use this method if you need to add new Noise Word at run time. In design time, you need to use NoiseWords property.