| Visual Basic (Declaration) | |
|---|---|
Public Function TextLine( _ ByVal index As Integer _ ) As TextLineResult | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
public TextLineResult TextLine( int index ) | |
| Managed Extensions for C++ | |
|---|---|
public: TextLineResult* TextLine( int index ) | |
| C++/CLI | |
|---|---|
public: TextLineResult^ TextLine( int index ) | |
Parameters
- index
- The zero based index for the TextLineResult. A System.ArgumentOutOfRangeException will be thrown if the index is less than 0 or greater or equal to the NumberTextLines.
Return Value
The TextLineResult for the specified index.| Exception | Description |
|---|---|
| ArgumentOutOfRangeException | Thrown when the index argument is less than zero or greater or equal to the number of text lines. |
This method allows you access to a specific TextLineResult.
