Beispiel #1
0
        public override bool Equals(object obj)
        {
            SpanEditHandler other = obj as SpanEditHandler;

            return(other != null &&
                   AcceptedCharacters == other.AcceptedCharacters &&
                   EditorHints == other.EditorHints);
        }
 public SpanConstructor With(SpanEditHandler handler)
 {
     Builder.EditHandler = handler;
     return this;
 }