ListFieldAttachments Object


Contains information about the attachments field when attachments are enabled for a list in a Microsoft FrontPage Web site.
This object is supported only by Web pages or sites that are based on Microsoft Windows SharePoint Services.
Using the ListFieldAttachments object
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.
Dim objList As BasicList
Dim objField As ListFieldAttachments
Set objList = ActiveWeb.Lists(0)
Set objField = objList.Fields(0)