HideSnaked DataWindow object property
Description
Whether the control appears only once per page when you print
the DataWindow using the newspaper columns format.
Controls
Button, Column, Computed Field, Graph, GroupBox, Line, OLE,
Oval, Picture, Rectangle, Report, RoundRectangle, TableBlob, and
Text controls
Syntax
PowerBuilder dot notation:
1 |
<span>dw_control</span>.Object.<span>controlname</span>.HideSnaked |
Describe and Modify argument:
1 |
"<span>controlname</span>.HideSnaked { = '<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, General
tab, HideSnaked check box.
Examples
1 |
string setting |
1 |
setting = dw1.Object.graph_1.HideSnaked |
1 |
dw1.Object.text_title.HideSnaked = "1" |
1 |
setting = dw1.Describe("graph_1.HideSnaked") |
1 |
dw1.Modify("text_title.HideSnaked=1") |