LineRemove
property (DataWindow object)
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.
Applies to
Column and Computed Field controls in the RichText presentation
style
Syntax
PowerBuilder dot notation:
|
1 |
dw_control.Object.controlname.LineRemove |
Describe and Modify argument:
|
1 |
"controlname.LineRemove { = ' value ' }" |
|
Parameter |
Description |
|---|---|
|
controlname |
The name of the column or computed field whose line |
|
value |
(exp) Whether the line of text is removed so that
Value can be a quoted DataWindow |
Examples
|
1 2 3 4 5 |
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") |