ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Kanban 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
KanbanDeleteList (Function)
In french: KanbanSupprimeListe
Deletes a list from a Kanban control.
Example
// Delete list 1
KanbanDeleteList(KANBAN_List, 1)
// Insert 2 other lists instead
KanbanInsertList(KANBAN_List, 1, "To review")
KanbanInsertList(KANBAN_List, 2, "To do")
Syntax

Deleting a list using its index Hide the details

KanbanDeleteList(<Kanban control> , <Index>)
<Kanban control>: Control name
Name of the Kanban control used.
<Index>: Integer
Index of the list to be deleted.
Android Only lists created programmatically can be deleted.

Deleting a list using its name Hide the details

KanbanDeleteList(<Kanban control> , <Kanban list>)
<Kanban control>: Control name
Name of the Kanban control used.
<Kanban list>: Control name
Name of the Kanban List control to be delete.
Android Only lists created programmatically can be deleted.
Remarks
  • The Kanban list and all its cards are deleted from the Kanban control.
  • If the Kanban control is linked to a data file, the data in the data file is not modified.
  • The ErrorOccurred variable is set to True if the deletion fails. To get the details of the error, use ErrorInfo.
  • Android Only lists created programmatically can be deleted.
Business / UI classification: UI Code
Component: wd290obj.dll
Minimum version required
  • Version 28
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/09/2023

Send a report | Local help