
Gets a particular document link from the collection. The first implementation gets the document link at the current input position or null if there is no document link at the current input position. The second implementation gets the document link with the specified id, previously set with the ID property.
[C#]
public DocumentLink GetItem();
public DocumentLink GetItem(int id);
[Visual Basic]
Public Function GetItem() As DocumentLink
Public Function GetItem(ByVal id As Integer) As DocumentLink
| Parameter | Description | |
| id | Specifies the document link's identifier set with the ID property. The method returns null if a document link with the specified identifier does not exist. |