TabSequence

Description

The number assigned to the specified control in the DataWindow’s tab order. You can also call the SetTabOrder method to change TabSequence.

Applies to

Column controls

Syntax

PowerBuilder dot notation:

dw_control.Object.columnname.TabSequence

Describe and Modify argument:

"columnname.TabSequence { = number }"

Parameter

Description

columnname

The name of the column whose tab order you want to get or set.

number

A number from 0 to 32000 specifying the position of the column in the tab order. A value of 0 takes the column out of the tab order and makes it read-only.

Usage


In the painter

Set the value using Format>Tab Order.

NoteTab order changes have no effect in grid DataWindow objects In a grid DataWindow object, the tab sequence is always left to right (except on right-to-left operating systems). Changing the tab value to any number other than 0 has no effect.

Examples

Example 1

string setting

setting = dw1.Object.emp_name.TabSequence

dw1.Object.emp_name.TabSequence = 10

Example 2

setting = dw1.Describe("emp_name.TabSequence")

dw1.Modify("emp_name.TabSequence = 10")