HideSnaked
property (DataWindow object)
Description
Whether the control appears only once per page when you print the
DataWindow using the newspaper columns format.
Applies to
Button, Column, Computed Field, Graph, GroupBox, Line, OLE, Oval,
Picture, Rectangle, Report, RoundRectangle, TableBlob, and Text
controls
Syntax
PowerBuilder dot notation:
|
1 |
dw_control.Object.controlname.HideSnaked |
Describe and Modify argument:
|
1 |
"controlname.HideSnaked { = ' value ' }" |
|
Parameter |
Description |
|---|---|
|
controlname |
The name of the control for which you want to get |
|
value |
(exp) Whether the control appears once or multiple Values are: 1 — The 0 — The Value |
Usage
In the painter
Select the control and set the value in the Properties view,
General tab, HideSnaked check box.
Examples
|
1 2 3 4 5 |
string setting setting = dw1.Object.graph_1.HideSnaked dw1.Object.text_title.HideSnaked = "1" setting = dw1.Describe("graph_1.HideSnaked") dw1.Modify("text_title.HideSnaked=1") |