Attachment

A file (such as an image or document) attached to a feature in a ServiceFeatureTable or a GeodatabaseFeatureTable. Attachments allow you to associate files containing additional information with specific, relevant features. For example, a building inspector could attach a PDF of a permit to a building feature. Attachments are not stored as attributes, rather the attachment data is linked with the feature inside its ServiceFeatureTable or a GeodatabaseFeatureTable.

If a feature table supports attachments (ArcGISFeatureTable.hasAttachments), each feature in the table may have zero or more attachments. Get a feature's collection of attachments by calling ArcGISFeature.fetchAttachments. You can examine an attachment's name, type, and file size, and download the file using Attachment.fetchData. Once downloaded, you can work with the data in your app (display it to the user, for example).

If a feature allows editing of its attachments (ArcGISFeature.canEditAttachments value is true), you can add to the feature's collection of attachments using ArcGISFeature.addAttachment. The data must be in one of the supported attachment formats. You can also update or delete attachments from the ArcGISFeature, as required.

Your app's available memory and storage space may impact the size of attachments you can add to a feature, or retrieve from the feature's collection. Apps that need to work with large attachments should be tested using representative physical devices and sample attachments.

Since

200.1.0

Properties

Link copied to clipboard

The content type of the attachment.

Link copied to clipboard

True if the attachment data has been retrieved, false otherwise.

Link copied to clipboard
val id: Long

The id of the attachment.

Link copied to clipboard

The name of the attachment.

Link copied to clipboard
val size: Int

The size of the attachment's data in bytes.

Functions

Link copied to clipboard
suspend fun fetchData(): Result<ByteArray>

Fetches the attachment's data.