AspNetEdit.Gui.Toolbox.TextToolboxNode.Filter C# (CSharp) Method

Filter() public method

public Filter ( string keyword ) : bool
keyword string
return bool
        public override bool Filter(string keyword)
        {
            return base.Filter (keyword)
                   || ((Text==null)? false : (Text.IndexOf (keyword) >= 0));
        }