ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
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
// Crée dynamiquement une liste de Kanban
LISTE_Liste_a_revoir is Control
LISTE_Liste_a_revoir <- KANBAN_Révision.AjouteListe("Revues")

// Insère une carte à la première position 
// dans la liste de Kanban créée dynamiquement 
// (Liste de Kanban manipulée par son nom)
maCarte1 is kbCard
maCarte1.Title = "Géographie"
LISTE_Liste_a_revoir.InsèreCarte(1, maCarte1)
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>: entier
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: 03/28/2025

Send a report | Local help