Document.Files

Overview

Gets the collection of attached files on document.

Files myDocument.Files { get; }

Example

Accessing Document Files

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];

Copyright © 2010 - 2023 Emakin. All rights reserved.