A collection of instances in a .

Inheritance

Implements
  • ICollection<WorksheetHyperlink>
  • IEnumerable<WorksheetHyperlink>
  • IEnumerable

Gets the number of hyperlinks on the .

public int Count { get; }

Gets the hyperlink at the specified index in the collection.

public WorksheetHyperlink this[int index] { get; }

Adds the specified hyperlink to the collection.

public void Add(WorksheetHyperlink hyperlink)

Parameters

  • hyperlink: WorksheetHyperlink

Returns any

Clears all hyperlinks from the collection.

public void Clear()

Returns any

Determines whether a hyperlink is in the collection.

public bool Contains(WorksheetHyperlink hyperlink)

Parameters

  • hyperlink: WorksheetHyperlink

Returns any

Gets an enumerator which can iterator all hyperlinks in the collection.

public IEnumerator<WorksheetHyperlink> GetEnumerator()

Returns any

Inserts the specified hyperlink in the collection.

public void Insert(int index, WorksheetHyperlink hyperlink)

Parameters

  • index: int
  • hyperlink: WorksheetHyperlink

Returns any

Removes the specified hyperlink from the collection.

public bool Remove(WorksheetHyperlink hyperlink)

Parameters

  • hyperlink: WorksheetHyperlink

Returns any

Removes the hyperlink at the specified index from the collection.

public void RemoveAt(int index)

Parameters

  • index: int

Returns any