
Gets a particular text frame from the collection. The first implementation gets the text frame selected by the user. The second and third implementation gets the text frame with the specified identifier or name.
Introduced: 15.1.
[C#]
public TextFrame GetItem();
public TextFrame GetItem(int id);
public TextFrame GetItem(string name);
[Visual Basic]
Public Function GetItem() As TextFrame
Public Function GetItem(ByVal id As Integer) As TextFrame
Public Function GetItem(ByVal name As String) As TextFrame
The return value is null, if a text frame with the specified parameters could not be found. Otherwise, it is an object of the type TextFrame.