A collection of instances in a .
Inheritance
object
Implements
- ICollection<WorksheetHyperlink>
- IEnumerable<WorksheetHyperlink>
- IEnumerable
Properties
Section titled "Properties"Count
Section titled "Count"Gets the number of hyperlinks on the .
public int Count { get; } this[int]
Section titled "this[int]"Gets the hyperlink at the specified index in the collection.
public WorksheetHyperlink this[int index] { get; } Methods
Section titled "Methods"Add(WorksheetHyperlink)
Section titled "Add(WorksheetHyperlink)"Adds the specified hyperlink to the collection.
public void Add(WorksheetHyperlink hyperlink) Parameters
- hyperlink:
WorksheetHyperlink
Returns any
Clear()
Section titled "Clear()"Clears all hyperlinks from the collection.
public void Clear() Returns any
Contains(WorksheetHyperlink)
Section titled "Contains(WorksheetHyperlink)"Determines whether a hyperlink is in the collection.
public bool Contains(WorksheetHyperlink hyperlink) Parameters
- hyperlink:
WorksheetHyperlink
Returns any
GetEnumerator()
Section titled "GetEnumerator()"Gets an enumerator which can iterator all hyperlinks in the collection.
public IEnumerator<WorksheetHyperlink> GetEnumerator() Returns any
Insert(int, WorksheetHyperlink)
Section titled "Insert(int, WorksheetHyperlink)"Inserts the specified hyperlink in the collection.
public void Insert(int index, WorksheetHyperlink hyperlink) Parameters
- index:
int - hyperlink:
WorksheetHyperlink
Returns any
Remove(WorksheetHyperlink)
Section titled "Remove(WorksheetHyperlink)"Removes the specified hyperlink from the collection.
public bool Remove(WorksheetHyperlink hyperlink) Parameters
- hyperlink:
WorksheetHyperlink
Returns any
RemoveAt(int)
Section titled "RemoveAt(int)"Removes the hyperlink at the specified index from the collection.
public void RemoveAt(int index) Parameters
- index:
int