Class FilterOperatorSettings
Inheritance
System.Object
FilterOperatorSettings
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Assembly: Telerik.WinControls.dll
Syntax
public class FilterOperatorSettings
Constructors
Declaration
public FilterOperatorSettings()
Properties
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>
|
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>
|
Extension Methods