ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Kanban functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Inserts a card in a Kanban list.
Example
// Dynamically creates a Kanban list
LIST_List_to_review is Control
LIST_List_to_review <- KANBAN_Review.AddList("Reviewed")

// Inserts a card at the first position 
// in the dynamically created Kanban list 
// (Kanban list handled using its name)
myCard1 is kbCard
myCard1.Title = "Geography"
LIST_List_to_review.InsertCard(1, myCard1)
Syntax
<Result> = <Kanban list>.InsertCard(<Position> , <Card>)
<Result>: Integer
Index of the inserted element.
<Kanban list>: Control name
Name of the Kanban List control in which the card should be inserted. This name can correspond to:
  • the name of the Kanban List control defined in the editor,
  • the name of the Kanban List control defined programmatically.
<Position>: Integer
Position where the card is to be inserted.
<Card>: kbCard variable
Name of the kbCard variable that corresponds to the inserted card. The card is inserted at the specified position in the Kanban list.
Component: wd300obj.dll
Minimum version required
  • Version 28
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 10/08/2025

Send a report | Local help