Interface IFileList
Interface IFileList
Namespace: Aspose.Svg.IO
Assembly: Aspose.SVG.dll (25.12.0)
Represent the interface for list of files.
[ComVisible(true)]
[DOMObject]
[DOMName("FileList")]
public interface IFileList : IEnumerable<IFile>, IEnumerableImplements
IEnumerable<IFile> , IEnumerable
Properties
Length
Return length for list of files.
[DOMName("length")]
long Length { get; }Property Value
this[int]
Returns the indexth file in the list.
[DOMName("item")]
IFile this[int index] { get; }