SetText Method |
Top Previous Next |
SetText allows to put text information into edit buffer.
VB.NET Syntax
Display.SetText (StartPos As Integer, String text)
Display.SetText (Row As Integer, Col As Integer, String text)
C# Syntax
Display.SetText (int StartPos, string text)
Display.SetText (int Row, int Col, string text)
Remarks
SetText allows to put text information into edit buffer, starting according to position StartPos or Row and Col parameters.
|