|
|
|
|
|
<Kanban>.MoveCard (Function) In french: <Kanban>.DéplaceCarte Moves a card in a Kanban control. // Moves the first card in the LIST_To_Review Kanban list // to the end of the list Card1 is kbCard <- LIST_To_Review.Card[1] KANBAN_MyKanban.MoveCard(Card1, LIST_To_Review.Card.Count) // Moves the first card in LIST_To_Review to another list Card2 is kbCard <- LIST_To_Review.Card[1] KANBAN_MyKanban.MoveCard(Card2, LIST_Done) Syntax
Moving a card to a specific position within the same Kanban list Hide the details
<Result> = <Kanban control>.MoveCard(<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> = <Kanban control>.MoveCard(<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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|