TagAttributeCollectionAddRange Method (TagAttributeCollection, Int32, Int32, Int32)
Adds elements from the TagAttributeCollection object with specified range.

Namespace: MailBee.Html
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public void AddRange(
	TagAttributeCollection attrs,
	int srcIndex,
	int count,
	int destIndex
)

Parameters

attrs
Type: MailBee.HtmlTagAttributeCollection
The source TagAttributeCollection to add elements from.
srcIndex
Type: SystemInt32
The zero-based index in attrs collection from which to copy the attributes.
count
Type: SystemInt32
Number of attributes to be added from attrs collection.
destIndex
Type: SystemInt32
The zero-based index in the current collection where to insert the first attribute from the copied range.
Exceptions
ExceptionCondition
MailBeeInvalidArgumentExceptionattrs is a null reference (Nothing in Visual Basic).
ArgumentOutOfRangeExceptionThe specified index is not valid.
See Also