AddRange method

void AddRange(
  1. Iterable<AttributedString> attributedStrings
)
Adds multiple attributed strings to the collection. Attributed strings to be added

Implementation

void AddRange(Iterable<AttributedString> attributedStrings) {
  if (attributedStrings != null) {
    for (AttributedString attributedString in attributedStrings) {
      this.Add(attributedString);
    }
  }
}