Ana içeriğe geç

Files

Belgeye eklenmiş dosyaların koleksiyonunu alır.

Tür

Files (Files)

Bildirim

1
readonly Files myDocument.Files

Açıklamalar

Belge dosyalarına erişme

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

Ayrıca bkz.