Row.Resize

Description

Whether the user can use the mouse to change the height of the rows in the detail area of the DataWindow.

Applies to

DataWindows

Syntax

PowerBuilder dot notation:

dw_control.Object.DataWindow.Row.Resize

Describe and Modify argument:

"DataWindow.Row.Resize { = value } "

Parameter

Description

value

Whether the user can resize the rows in the detail area. Values are:

  • 1 – Yes, the user can resize the rows.

  • 0 – No, the user cannot resize the rows.

Usage


In the painter

Select the DataWindow by deselecting all controls; then set the value in the Properties view, General tab, Row Resize option (available when the presentation style is Grid or Crosstab).

Examples

Example 1

string setting

setting = dw1.Object.DataWindow.Row.Resize

dw1.Object.DataWindow.Row.Resize = 0

Example 2

setting = dw1.Describe("DataWindow.Row.Resize")

dw1.Modify("DataWindow.Row.Resize=0")