SlideUp
property (DataWindow object)
Description
Whether the control moves up when other controls above it 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.
Applies to
Button, Column, Computed Field, Graph, GroupBox, Line, Oval,
Picture, Rectangle, Report, RoundRectangle, TableBlob, and Text
controls
Syntax
PowerBuilder dot notation:
|
1 |
dw_control.Object.controlname.SlideUp |
Describe and Modify argument:
|
1 |
"controlname.SlideUp { = ' value ' }" |
|
Parameter |
Description |
|---|---|
|
controlname |
The name of the control for which you want to get |
|
value |
(exp) How the control slides up when there is empty Values are:
Value can be a quoted DataWindow |
Usage
In the painter
Select the control and set the value in the Properties view,
Position tab, Slide Up check box.
Examples
|
1 2 3 4 5 |
string setting setting = dw1.Object.graph_1.SlideUp dw1.Object.emp_lname.SlideUp = "no" setting = dw1.Describe("graph_1.SlideUp") dw1.Modify("emp_lname.SlideUp=no") |