Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Current »

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];
  • No labels