|
|
|
|
|
|
|
|
|
|
<Kanban list>.InsertCard (Function) In french: <Liste de kanban>.InsèreCarte Inserts a card in a Kanban list.
LIST_List_to_review is Control
LIST_List_to_review <- KANBAN_Review.AddList("Reviewed")
myCard1 is kbCard
myCard1.Title = "Geography"
LIST_List_to_review.InsertCard(1, myCard1)
Syntax
<Result> = <Kanban list>.InsertCard(<Position> , <Card>)
<Result>: Integer Index of the inserted element. <Kanban list>: Control name Name of the Kanban List control in which the card should be inserted. This name can correspond to: - the name of the Kanban List control defined in the editor,
- the name of the Kanban List control defined programmatically.
<Position>: Integer Position where the card is to be inserted. <Card>: kbCard variable Name of the kbCard variable that corresponds to the inserted card. The card is inserted at the specified position in the Kanban list.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|