ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Kanban functions
  • Properties specific to kbCard variables
  • Functions that handle kbCard variables
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
The kbCard type defines all the advanced characteristics of a card in a Kanban control. The characteristics of this card can be defined and changed using different 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).
Remark: 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.
ExtraAssociative arrayAssociative array to save user information.
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 handle kbCard variables

The following functions are used to handle 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: 11/21/2023

Send a report | Local help