IAttachmentDataArray Interface

Array of AttachmentData objects.

Members

Name Description
Method Add Adds a attachment data.
Read-only property Count The attachment data count.
Read-only property Element Returns the attachment data at the specified position.
Method Insert Adds a attachment data at the specified position.
Method Remove Removes the attachment data at the specified position.
Method RemoveAll Removes all attachment data.

IAttachmentDataArray.Add Method

Adds a attachment data.

Public Sub Add ( _
    ByVal Attachment As IAttachmentData _
)
public void Add (
    IAttachmentData Attachment
);

IAttachmentDataArray.Count Property

The attachment data count.

Public ReadOnly Property Count As Integer
public int Count {get;}

IAttachmentDataArray.Element Property

Returns the attachment data at the specified position.

Public Function get_Element ( _
    ByVal Index As Integer _
) As IAttachmentData
public IAttachmentData get_Element (
    int Index
);

IAttachmentDataArray.Insert Method

Adds a attachment data at the specified position.

Public Sub Insert ( _
    ByVal Index As Integer, _
    ByVal Attachment As IAttachmentData _
)
public void Insert (
    int Index,
    IAttachmentData Attachment
);

IAttachmentDataArray.Remove Method

Removes the attachment data at the specified position.

Public Sub Remove ( _
    ByVal Index As Integer _
)
public void Remove (
    int Index
);

IAttachmentDataArray.RemoveAll Method

Removes all attachment data.

Public Sub RemoveAll ( _
)
public void RemoveAll (
);

Classes that implement IAttachmentDataArray

Classes Description
AttachmentDataArray Esri AttachmentDataArray object.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.