|
|
|
|
|
- Handling the value of an RTF control
- Limits
RichEdit (Property) In french: RichEdit
The RichEdit property is used to manage the RTF (Rich Text Format) type: - of a window control.
Reminder: The RTF type is an option for Edit control and Static Text control fields.. This option is located in the "Details" tab of the control description. - of a Static Text control found in a report.
Reminder: The RTF type is an option of the Static Text control fields.. This option can be found in the "General" tab of the control description.
It is possible to: - find out whether the control is in RTF.
- modify the RTF type of a control.
IF LIB_Nom.RichEdit = True THEN
LIB_Nom.Visible = True
END
Syntax
Finding out whether the control is in RTF Hide the details
<Result> = <Control used>.RichEdit
<Result>: Boolean - True if the specified element is in RTF,
- False otherwise.
<Control used>: Control name Name of control to use: - Edit control or Static Text control in a window.
- Static Text control in a report.
Modifying the RTF type of a control Hide the details
<Control used>.RichEdit = <Type>
<Control used>: Control name Name of control to use: - Edit control or Static Text control in a window.
- Static Text control in a report.
<Type>: Boolean - True if the specified element must be in RTF,
- False otherwise.
Remarks Limits In a window, the RichEdit property applies only to the following controls: - edit controls,
- Static Text controls.
- text table column.
In a report, the RichEdit property applies only to Static Text controls.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|