ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Table functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
TableSetFocus (Function)
In french: TableDonneFocus
Gives focus to a row found in a Table or TreeView Table control: the control switches to edit for the specified row and column.
Example
// Add a row and switch to edit on "New" (COL_Name column)
let nRow = TableAddLine(TABLE_MyTable, "New", 2)
TableSetFocus(TABLE_MyTable, nRow, COL_Name)
Syntax
<Result> = TableSetFocus(<Table control> [, <Subscript> [, <Column>]])
<Result>: Boolean
  • True if the Table control is switched to edit,
  • False otherwise.
<Table control>: Control name
Name of the Table control to be used. This control can correspond to:
  • a Table control.
  • a TreeView Table control.
<Subscript>: Optional integer
Index of the row that will gain focus.
If this parameter is not specified, the focus is given to the current row. If there is no current row, TableSetFocus has no effect and it returns False.
<Column>: Control name
Name of the table column that will receive the focus.
If this parameter is not specified, the focus is given to the first valid column in the display order.
If there is no valid column (or if the column name does not correspond to a column in the Table control), TableSetFocus has no effect and returns False.
Remarks
  • If the Table control does not have focus, TableSetFocus gives focus to the control.
  • If the Table control is grayed out or inactive, TableSetFocus has no effect and returns False.
  • Control, row and column enter and leave events ARE not executed.
  • If the Table control already is in edit mode, the number of the row or column in edit mode is modified.
  • The rows displayed in the Table control may be moved in order for the row with new focus to be visible.
Business / UI classification: UI Code
Component: wd290obj.dll
Minimum version required
  • Version 22
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 04/06/2023

Send a report | Local help