SlideLeft DataWindow object property
Description
Whether the control moves to the left when other controls
to the left leave empty space available. This property is for use with read-only
controls and printed reports. It should not be used with data entry
fields or controls.
Controls
Button, Column, Computed Field, Graph, GroupBox, Line, Oval,
Picture, Rectangle, Report, RoundRectangle, TableBlob, and Text
controls
Syntax
PowerBuilder dot notation:
1 |
<span>dw_control</span>.Object.<span>controlname</span>.SlideLeft |
Describe and Modify argument:
1 |
"<span>controlname</span>.SlideLeft { = '<span> value </span>' }" |
Parameter |
Description |
---|---|
controlname |
The name of the control for which you |
value |
(exp) Whether the Values are:
Value can be a quoted DataWindow expression. |
Usage
In the painter
Select the control and set the value in the Properties view, Position
tab, Slide Left check box. This property is not supported in Web DataWindows.
Examples
1 |
string setting |
1 |
setting = dw1.Object.graph_1.SlideLeft |
1 |
dw1.Object.emp_lname.SlideLeft = "yes" |
1 |
setting = dw1.Describe("graph_1.SlideLeft") |
1 |
dw1.Modify("emp_lname.SlideLeft=yes") |