(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.
Column and Computed Field controls in the RichText presentation style
PowerBuilder dot notation:
dw_control.Object.controlname.LineRemove
Describe and Modify argument:
"controlname.LineRemove { = ' value ’ }"
Parameter |
Description |
---|---|
controlname |
The name of the column or computed field whose line of text you want removed when the input field is empty. |
value |
(exp) Whether the line of text is removed so that the rest of the text slides up when the input field for controlname is empty. Values are:
Value can be a quoted DataWindow expression. |
string setting
setting = dw1.Object.emp_street2.LineRemove
dw1.Object.emp_street2.LineRemove = true
setting = dw1.Describe("emp_street2.LineRemove")
dw1.Modify("emp_street2.LineRemove=yes")