|
|
|
|
|
<Kanban>.MoveList (Function) In french: <Kanban>.DéplaceListe Moves a list in a Kanban control. // Moves the LIST_To_Review list to position 2 KANBAN_Planning.MoveList(LIST_To_Review.ListIndex(), 2) Syntax
<Kanban control>.MoveList(<Position before moving> , <Position after moving>)
<Kanban control>: Control name Name of the Kanban control used. <Position before moving>: Integer Position of the Kanban list before being moved. This position is returned by <Kanban list>.ListIndex. <Position after moving>: Integer New position of the Kanban list. - If this position is less than or equal to 1, the Kanban list is moved to the first position.
- If this position is greater than or equal to the number of lists in the Kanban control, the list is moved to the last position.
- If <Position before moving> = <Position after moving>, the list stays at the same position.
Business / UI classification: UI Code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|