ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
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 a 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: 12/02/2024

Send a report | Local help