Class FilterOperatorSettings
Inheritance
Inherited Members
Namespace: Telerik.WinControls.Data
Assembly: Telerik.WinControls.dll
Syntax
public class FilterOperatorSettings
Constructors
FilterOperatorSettings()
Declaration
public FilterOperatorSettings()
Properties
ContainedInFullStringSeparators
Used when the FilterOperator is IsContainedIn or IsNotContainedIn Contains the separators used when the whole filter string, containing all the values as a single string is being split into different values. For example: Filter string "One, Two, Three". With the default separator "," the string will be split into "One", " Two" and " Three" values.
Declaration
public static List<char> ContainedInFullStringSeparators { get; }
Property Value
System.Collections.Generic.List<System.Char>
|
ContainedInSingleValueTrimSymbols
Used when the FilterOperator is IsContainedIn or IsNotContainedIn Contains the trim symbols used when a single separated string value is being processed. For example: Filter value with quotes or intervals will be trimmed to a value with no intervals and quotes. 'Single Value' -> Single Value
Declaration
public static List<char> ContainedInSingleValueTrimSymbols { get; }
Property Value
System.Collections.Generic.List<System.Char>
|