PdfAttachmentCollection

PdfAttachmentCollection class

Represents a collection of attachments in a pdf document.

public class PdfAttachmentCollection : RemoveOnlyListBase<PdfAttachment>

Properties

Name Description
virtual Count { get; } Gets the number of elements contained in the collection.
override IsReadOnly { get; } Gets a value indicating whether the collection is read-only.
virtual Item { get; } Gets the element at the specified index in the collection.

Methods

Name Description
Add(byte[], string, string) Adds an attachment to the PdfContent.
Clear()
virtual Contains(PdfAttachment)
virtual GetEnumerator()
virtual IndexOf(PdfAttachment)
Remove(PdfAttachment)
RemoveAt(int)

Remarks

This collection contains the items of PdfAttachment type.

See Also