Skip to content

Files

Gets the collection of attached files on document.

1
readonly Files myDocument.Files

Remarks

Accessing Document Files

1
2
3
4
5
6
7
8
9
var doc = $Documents.Get(id);

var fileCount = doc.Files.length;

// access with index
var file = doc.Files[0];

// access with file id
var file2 = doc.Files[fileId];

See Also