LineRemove DataWindow object property
Description
(RichText presentation style only) Whether the line of text
that contains the input field for the column or computed field is
removed when the input field is empty. LineRemove is similar to
the SlideUp property for controls in other presentation styles.
Controls
Column and Computed Field controls in the RichText presentation
style
Syntax
PowerBuilder dot notation:
1 |
<span>dw_control</span>.Object.<span>controlname</span>.LineRemove |
Describe and Modify argument:
1 |
"<span>controlname</span>.LineRemove { = '<span> value</span> ' }" |
Parameter |
Description |
---|---|
controlname |
The name of the column or computed field |
value |
(exp) Whether the
Value can be a quoted DataWindow expression. |
Examples
1 |
string setting |
1 |
setting = dw1.Object.emp_street2.LineRemove |
1 |
dw1.Object.emp_street2.LineRemove = true |
1 |
setting = dw1.Describe("emp_street2.LineRemove") |
1 |
dw1.Modify("emp_street2.LineRemove=yes") |