Adf.Data.Search.TextProperty.TextProperty C# (CSharp) Method

TextProperty() public method

public TextProperty ( string displayname, IColumn column ) : System
displayname string
column IColumn
return System
        public TextProperty(string displayname, IColumn column)
        {
            Type = FilterType.Text;
            //            DisplayPrefix = "txt";
            DisplayName = ResourceManager.GetString(displayname);
            Column = column;
            Operators = new[] { OperatorType.IsEqual, OperatorType.Like, OperatorType.IsNotEqualOrIsNull };
        }
TextProperty