Click or drag to resize

TextFilter Class

Class representing a part of a search filter used in LIKE condition.
Inheritance Hierarchy
SystemObject
  SoftGear.Strix.Client.Core.Model.Manager.FilterTextFilter

Namespace:  SoftGear.Strix.Client.Core.Model.Manager.Filter
Assembly:  strix-client-csharp-core (in strix-client-csharp-core.dll) Version: 2.3.0
Syntax
C#
[SerializableAttribute]
public class TextFilter

The TextFilter type exposes the following members.

Constructors
  NameDescription
Public methodTextFilter
Initializes a new instance of the TextFilter class
Public methodTextFilter(TextFilterType)
Initializes a new instance of the TextFilter class
Public methodTextFilter(TextFilterType, String)
Initializes a new instance of the TextFilter class
Top
Methods
Remarks
When used with TEXT, represents a part of the search filter that matches the specified value exactly. When used with SINGLE_CHARACTER_WILDCARD, represents a part of the search filter than matches any single character. When used with MULTIPLE_CHARACTERS_WILDCARD, represents a part of the search filter than matches any number of characters. All text comparison is case-sensitive.
See Also