ExcelEmbeddedObjectCollection Class
Represents a read-only collection of ExcelEmbeddedObjects in the worksheet.
public sealed class ExcelEmbeddedObjectCollection : IEnumerable<ExcelEmbeddedObject>, IEnumerable
Public NotInheritable Class ExcelEmbeddedObjectCollection
Implements IEnumerable(Of ExcelEmbeddedObject), IEnumerable
- Inheritance:
- System.ObjectExcelEmbeddedObjectCollection
Properties
Count
Gets the number of ExcelEmbeddedObjects contained in the ExcelEmbeddedObjectCollection.
Property Value
- System.Int32
The number of ExcelEmbeddedObjects contained in the ExcelEmbeddedObjectCollection.
Item[Int32]
Gets the ExcelEmbeddedObject at the specified index.
public ExcelEmbeddedObject this[int index] { get; }
Public ReadOnly Property Item(index As Integer) As ExcelEmbeddedObject
Parameters
index
- System.Int32
The zero-based index of the ExcelEmbeddedObject to get.
Property Value
The ExcelEmbeddedObject at the specified index.
Methods
GetEnumerator()
Returns an enumerator that iterates through the ExcelEmbeddedObjectCollection.
public IEnumerator<ExcelEmbeddedObject> GetEnumerator()
Public Function GetEnumerator As IEnumerator(Of ExcelEmbeddedObject)
Returns
- System.Collections.Generic.IEnumerator<ExcelEmbeddedObject>
An enumerator that can be used to iterate through the ExcelEmbeddedObjectCollection.
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable