 | PdfAttachmentCollectionItem Property (Int32) |
Namespace:
Patagames.Pdf.Net
Assemblies:
Patagames.Pdf.Xamarin.iOS (in Patagames.Pdf.Xamarin.iOS.dll) Version: 4.57.2704
Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.57.2704
Syntaxpublic PdfAttachment this[
int index
] { get; set; }
Public Default Property Item (
index As Integer
) As PdfAttachment
Get
Set
public:
property PdfAttachment^ default[int index] {
PdfAttachment^ get (int index);
void set (int index, PdfAttachment^ value);
}
member Item : PdfAttachment with get, set
/** @property */
public PdfAttachment get_Item(
int index
)
/** @property */
public void set_Item(PdfAttachment value)
function get_Item(index);
function set_Item(value);
Parameters
- index
- Type: SystemInt32
The zero-based index of the element to get.
Return Value
Type:
PdfAttachmentThe value at the specified
index in the
PdfAttachmentCollection object.
ExceptionsException | Condition |
---|
IndexOutOfRangeException | index is not a valid index in the collection. |
ArgumentNullException | The value or name of the attachment at specified index is null. |
ObjectDisposedException | The attachment has been disposed. |
UnexpectedTypeException | The object at the given index is not an attachment. |
See Also