Interface IDocumentCollection
Represents a collection of IWordDocument objects.
Namespace: Syncfusion.DocIO.DLS
Assembly: Syncfusion.DocIO.Base.dll
Syntax
public interface IDocumentCollection : ICollectionBase, IEnumerable
Properties
Item[Int32]
Gets the IWordDocument at the specified index.
Declaration
IWordDocument this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The zero-based index of the Word document to get |
Property Value
Type | Description |
---|---|
IWordDocument | The IWordDocument at the specified index |
Exceptions
Type | Condition |
---|---|
System.ArgumentOutOfRangeException | The index is not valid index in the IDocumentCollection |