|
|
|
|
|
AutoLineWrap (Property) In french: RetourALaLigneAuto
The AutoLineWrap property is used to: - determine if the automatic line wrap feature is enabled in a multiline Edit control, in a column of a Table or TreeView control or in a row header of a Pivot Table control.
- set the line wrap mode in a multiline Edit control, in a column of a Table or TreeView control or in a row header of a Pivot Table control.
// Modify the "Automatic line wrap" Check Box EDT_MultilineText.AutoLineWrap = CBOX_AutoWrap
Syntax
Finding out whether the line wrap is automatically supported Hide the details
<Result> = <Control used>.AutoLineWrap
<Result>: Boolean - True if the automatic line wrap is enabled,
- False otherwise.
<Control used>: Control name Name of the control to be used: - Multiline edit control,
- Column in a Table or TreeView Table control.
- Pivot Table control.
Setting the line wrap mode Hide the details
<Control used>.AutoLineWrap = <Line wrap management>
<Control used>: Control name Name of the control to be used: - Multiline edit control,
- Column in a Table or TreeView Table control.
- Pivot Table control.
<Line wrap management>: Boolean - True to enable the automatic line wrap on the control,
- False to disable the automatic line wrap on the control.
Remarks - If the AutoLineWrap property is set to False, overflowing lines can be scrolled horizontally (with or without a visible scrollbar depending on the Edit control settings).
- If the AutoLineWrap property is set to True, overflowing lines are split on several lines.
- This property has no effect on a RTF control, HTML control or non-multiline edit control.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|