TextElementCollection<TextElementType>.AddRange(IEnumerable) Method

Definition

Appends a specified range of items to the collection.

public:
 void AddRange(System::Collections::IEnumerable ^ range);
public void AddRange (System.Collections.IEnumerable range);
member this.AddRange : System.Collections.IEnumerable -> unit
Public Sub AddRange (range As IEnumerable)

Parameters

range
IEnumerable

An object that implements the IEnumerable interface, and that specifies a range of items to add to the collection.

Exceptions

Raised when range includes any null items.

Raised when range is null.

Applies to

See also