MMCC's PL/B notes Notes home Intro History Article index v1.10 |
509 Center Bay City, Michigan Sales (989) 892-9242             Support (989) 686-8860 EditText Object Notes
|
- Topics
- See also
EditText ObjectThe EditText object is one of the most fundamental objects for the Visual PL/B programmer. It's so common that it seems easy. These notes are just to remind us of some things that we seldom use. I won't even write about the basics for now, just the things I need to remember.
SETITEM {edittext},1,nn .Where nn is the positionTo force the cursor to the end of the string you can say SETITEM x,1,999.
GETITEM {edittext},1,nn .nn will get the STARTing byte GETITEM {edittext},2,nn .nn will get the ENDing byteYou can also retrieve just the blocked text by using code "1", but having the receiving field be a string:
GETITEM {edittext},1,string .string gets blocked text
v1.10 |
Send e-mail to MMCC. |