PutText(String,Int32,Int32) Method
In This Topic
Puts text at a specified screen location. Text can span more than one field.
PutText has two modes: Mask and LinearStream. These modes are set with the PutTextMaskProtectedField Property.
In Mask mode (the default), text that coincides with protected fields is skipped and is not placed on the screen.
In LinearStream mode, protected fields are ignored and the text is placed sequentially in unprotected fields until all of the text is placed on the screen.
Syntax
Parameters
- text
- Text to put on screen.
- row
- Row position on which to put the text.
- column
- Column position on which to put the text.
Return Value
ReturnCode indicates success, failure, or a warning condition if the cursor position reaches the screen boundary.
Exceptions
Exception | Description |
System.ArgumentOutOfRangeException |
This exception is thrown if the row or column parameters
are outside the range of valid values: (1 to Rows) or (1 to Columns).
|
See Also