Skip to main content
Version: v20 R4 BETA

Resizing Options

Column Auto-Resizing

When this property is enabled (rightToLeft value in JSON), list box columns are automatically resized along with the list box, within the limits of the minimum and maximum widths defined.

When this property is disabled (legacy value in JSON), only the rightmost column of the list box is resized, even if its width exceeds the maximum value defined.

How column auto-resizing works

  • As the list box width increases, its columns are enlarged, one by one, starting from right to left, until each reaches its maximum width. Only columns with the Resizable property selected are resized.

  • The same procedure applies when the list box width decreases, but in reverse order (i.e., columns are resized starting from left to right). When each column has reached its minimum width, the horizontal scroll bar becomes active again.

  • Columns are resized only when the horizontal scroll bar is not "active"; i.e., all columns are fully visible in the list box at its current size. Note: If the horizontal scroll bar is hidden, this does not alter its state: a scroll bar may still be active, even though it is not visible.

  • After all columns reach their maximum size, they are no longer enlarged and instead a blank (fake) column is added on the right to fill the extra space. If a fake (blank) column is present, when the list box width decreases, this is the first area to be reduced.

About the fake (blank) column

The appearance of the fake column matches that of the existing columns; it will have a fake header and/or footer if these elements are present in the existing list box columns and it will have the same background color(s) applied.

The fake header and/or footer can be clicked but this does not have any effect on the other columns (e.g.: no sort is performed); nevertheless, the On Clicked, On Header Click and On Footer Click events are generated accordingly.

If a cell in the fake column is clicked, the LISTBOX GET CELL POSITION command returns "X+1" for its column number (where X is the number of existing columns).

JSON Grammar

NameData TypePossible Values
resizingModestring"rightToLeft", "legacy"

Objects Supported

List Box


Horizontal Sizing

This property specifies if the horizontal size of an object should be moved or resized when a user resizes the form. It can also be set dynamically by the OBJECT SET RESIZING OPTIONS language command.

Three options are available:

OptionJSON valueResult
Grow"grow"The same percentage is applied to the object’s width when the user resizes the width of the window,
Move"move"The object is moved the same amount left or right as the width increase when the user resizes the width of the window,
None"fixed"The object remains stationary when the form is resized

This property works in conjunction with the Vertical Sizing property.

JSON Grammar

NameData TypePossible Values
sizingXstring"grow", "move", "fixed"

Objects Supported

4D View Pro Area - 4D Write Pro Area - Button - Button Grid - Check Box - Combo Box - Dropdown list - Group Box - Hierarchical List - Input - List Box - Line - List Box Column - Oval - Picture Button - Picture Pop up menu - Plug-in Area - Progress Indicators - Radio Button - Ruler - Rectangle - Spinner - Splitter - Static Picture - Stepper - Subform - Tab control - Web Area


Vertical Sizing

This property specifies if the vertical size of an object should be moved or resized when a user resizes the form. It can also be set dynamically by the OBJECT SET RESIZING OPTIONS language command.

Three options are available:

OptionJSON valueResult
Grow"grow"The same percentage is applied to the object's height when the user resizes the width of the window,
Move"move"The object is moved the same amount up or down as the height increase when the user resizes the width of the window,
None"fixed"The object remains stationary when the form is resized

This property works in conjunction with the Horizontal Sizing property.

JSON Grammar

NameData TypePossible Values
sizingYstring"grow", "move", "fixed"

Objects Supported

4D View Pro Area - 4D Write Pro Area - Button - Button Grid - Check Box - Combo Box - Dropdown list - Group Box - Hierarchical List - Input - List Box - Line - List Box Column - Oval - Picture Button - Picture Pop up menu - Plug-in Area - Progress Indicators - Radio Button - Ruler - Rectangle - Spinner - Splitter - Static Picture - Stepper - Subform - Tab control - Web Area


Pusher

When a splitter object has this property, other objects to its right (vertical splitter) or below it (horizontal splitter) are pushed at the same time as the splitter, with no stop.

Here is the result of a “pusher” splitter being moved:

When this property is not applied to the splitter, the result is as follows:

JSON Grammar

NameData TypePossible Values
splitterModestring"move" (pusher), "resize" (standard)

Objects Supported

Splitter


Resizable

Designates if the size of the column can be modified by the user.

JSON Grammar

NameData TypePossible Values
resizableboolean"true", "false"

Objects Supported

List Box Column