ListFieldAttachments Object

SharePoint Designer Developer Reference

Contains information about the attachments field when attachments are enabled for a list in a Web site.

Remarks

Use the Item property for the ListFields collection to return a single ListFieldAttachments object. The following example returns the first field in the the first list in the Lists collection.

Visual Basic for Applications
Dim objList As BasicList
Dim objField As ListFieldAttachments
Set objList = ActiveWeb.Lists(0)
Set objField = objList.Fields(0)

See Also