ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
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
Card (Property)
In french: Card
The Card property handles the different cards associated with a Kanban list. You can add, modify or delete cards from Kanban list, or navigate between them.
Example
// Modifies all the cards in "KANBAN_List_TODO"
// Replaces the date with the current date
FOR i = 1 _TO_  KANBAN_List_TODO.Card.Count()
KANBAN_List_TODO.Card[i].Date = DateSys
END
 
// Adds a card to "KANBAN_List_TODO"
T1 is kbCard
T1.Title = "Document"
T1.Text = "Write documentation"
KANBAN_List_TODO.Card.Add(T1)
Syntax
<Result> = <Kanban list>.Card
<Result>: Array
Array of kbCard variables.
<Kanban list>: Control name
Name of the Kanban List control.
Minimum version required
  • Version 28
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 02/28/2023

Send a report | Local help