|
|
|
|
|
KanbanMoveCard (Function) In french: KanbanDéplaceCarte Moves a card in a Kanban control.
Card1 is kbCard <- LIST_To_Review.Card[1]
KanbanMoveCard(KANBAN_MyKanban, Card1, LIST_To_Review.Card.Count)
Card2 is kbCard <- LIST_To_Review.Card[1]
KanbanMoveCard(KANBAN_MyKanban, Card2, LIST_Done)
Syntax
Moving a card to a specific position within the same Kanban list Hide the details
<Result> = KanbanMoveCard(<Kanban control> , <Card> , <Position>)
<Result>: Boolean - True if the card is moved,
- False otherwise.
<Kanban control>: Control name Name of the Kanban control to be used. <Card>: kbCard variable Name of the kbCard variable that corresponds to the card to be moved. <Position>: Integer New card index in the Kanban list. The card moves up or down in the list.
Moving a card to a specific position in another Kanban list Hide the details
<Result> = KanbanMoveCard(<Kanban control> , <Card> , <Kanban list> [, <Position>])
<Result>: Boolean - True if the card is moved,
- False otherwise.
<Kanban control>: Control name Name of the Kanban control to be used. <Card>: kbCard variable Name of the kbCard variable that corresponds to the card to be moved. <Kanban list>: Control name Name of the Kanban list to which the card is to be moved. <Position>: Optional integer New card index. If this parameter is not specified, the card is positioned at the end of the specified Kanban list. Business / UI classification: UI Code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|