Remove method

bool Remove(
  1. AttributedString attributedString
)
Removes an attributed String from the collection. Attributed String to be removed

Implementation

bool Remove(AttributedString attributedString) {
  EwsUtilities.ValidateParam(attributedString, "attributedString");

  return this.InternalRemove(attributedString);
}