|
|
|
|
|
- Multiline controls in a report
- Limitations
Multiline (Property) In french: Multiligne
In a window or page, the Multiline property is used to: - determine if an edit control supports multiline text or make it multiline-compatible.
- determine if a table control supports multiline text or make a table column multiline-compatible. For reflect this change, refresh the Table control (with TableDisplay, for example) or populate the Table control again.
In a report, the Multiline property is used to: - determine if a control supports multiline text
- modify the "Multiline" option of a control.
Remarks: - The "Multiline" option is used to display the content of a control over several lines without truncating its content.
- In the reports, the multiline option applies to the Static, Item, Calculated and Link controls. This option is located in the "Details" tab of the control description.
// Does the "EDT_Address" control support multiline text? ResMultiline = EDT_Address.Multiline
Syntax
Determining if a control supports multiline text Hide the details
<Result> = <Control used>.Multiline
<Result>: Boolean - True if the specified control supports multiline text,
- False otherwise.
<Control used>: Control name Name of the control to be used.
Modifying the "Multiline" option of a control Hide the details
<Control used>.Multiline = <Is multiline?>
<Control used>: Control name Name of the control to be used. <Is multiline?>: Boolean - True if the specified control must support multiline text,
- False if the specified control must not support multiline text.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|