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
  • Properties specific to kbCard variables
  • Functions that use kbCard variables
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
The kbCard type defines all the advanced characteristics of a card in a Kanban control. The characteristics of this map can be defined and modified using various WLanguage properties.
The cards correspond to the items displayed in the lists of a Kanban control. These cards can be:
  • added to a list of a Kanban control (KanbanAddCard).
  • passed as parameters to WLanguage events (for example, the "Move a card" event in the Kanban control).
Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Example
MyCard is kbCard
MyCard.Title = "File"
MyCard.Text = "Customer file management"
MyCard.Extra.ID = GetIdentifier()
KanbanAddCard(KANBAN_Scheduler.LIST_ToDO, MyCard)
Properties

Properties specific to kbCard variables

The following properties can be used to handle a card in a Kanban control:
Property nameType usedEffect
ActionAllowedkbActionAllowedAction allowed on the card.
ContributorCharacter stringName of the contributor associated with the card.
DateDateTimeDate and time of the card. By default, this property is initialized with the date and time the card was created.
New in version 2025
Extra
VariantAllows you to store advanced information without affecting the execution of the application. You can store values of any type (array, etc.). It is also possible to add members to the Extra property.
Example:
MyVariable.Extra.Info1 = Value
MyVariable.Extra[Info2] = Value2
MyVariable.Extra.Date = DateSys()
IndexIntegerCard priority. Corresponds to the order in the list.
To change the priority of a card, use KanbanMoveCard.
This property is read-only.
InternalPageCharacter stringName of the internal page to use to display the card. If this parameter is an empty string (""), the default card of the Kanban control will be used.
InternalWindowCharacter stringName of the internal window to use to display the card. If this parameter is an empty string (""), the default card of the Kanban control will be used.
ListNameCharacter stringName of the list that contains the card.
To move the card to another list, use KanbanMoveCard.
This property is read-only.
TextCharacter stringCard text. By default, it is Markdown text.
TitleCharacter stringCard title.
VisibleBoolean
  • True if the card must be visible,
  • False otherwise.
Remarks

Functions that use kbCard variables

The following functions use kbCard variables:
KanbanAddCardAdds a card to a list in a Kanban control.
KanbanDeleteCardDeletes a card from a Kanban control or from a Kanban List control.
KanbanInsertCardInserts a card in a Kanban list.
KanbanMoveCardMoves a card in a Kanban control.
Minimum version required
  • Version 28
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/30/2024

Send a report | Local help