|
|
|
|
|
Movable (Property) In french: Déplaçable
Warning
From version 26, Moveable is kept for backward compatibility. This property is replaced by Movable.
The Movable property is used to: - Determine if a Table control column can be moved by the user,
- Allow and/or prevent the user from moving a Table control column.
// Allow the "Name" column to be moved by the user COL_Name.Movable = True
Syntax
Determining if a Table control column can be moved Hide the details
<Result> = <Column>.Movable
<Result>: Boolean - True if the specified column can be moved by the user,
- False otherwise.
<Column>: Control name Name of the Table control column to use.
Allowing and/or preventing the user from moving a Table control column Hide the details
<Column>.Movable = <Move allowed>
<Column>: Control name Name of the Table control column to use. <Move allowed>: Boolean - True if the specified column can be moved by the user,
- False otherwise.
Remarks - By default, the user can move a Table control column. This option can be modified in the window editor ("General" tab of the column description).
- When "Movable" is checked for a column, the user can modify the position of this column (to the right or to the left). To perform this action, the user must:
- click the header of this column and keep the left mouse button down,
- move the column to its new position and release the left mouse button.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|