EditWindow.GetLine Method (Typed) | |
Get a specified line of text in this edit window.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD GetLine(
nLineNumber AS LONG,
nMaxLength AS LONG
) AS STRING
public virtual string GetLine(
[DefaultParameterValueAttribute(0, 0)] int nLineNumber,
[DefaultParameterValueAttribute(0, 0)] int nMaxLength
)
Request Example
View SourceParameters
- nLineNumber
- Type: Long
The position of the desired line in the edit window. Specify one of the following values: - nMaxLength
- Type: Long
The maximum length that you expect the string to be in any language. If not specified, the system substitutes 255. If it is set too low, Windows truncates the resource string.
Return Value
Type:
String
The text of the specified line.
See Also