|
|
|
|
|
MaxNbCard (Property) In french: NbCarteMax
The MaxNbCard property gets and sets the maximum number of cards in a Kanban control. // Maximum number of cards in LIST_To_validate // No more cards can be added in the list // once this number is reached. LIST_To_validate.MaxNbCard = 2
Syntax
Getting the maximum number of cards allowed Hide the details
<Result> = <Kanban list>.MaxNbCard
<Result>: Integer - Maximum number of cards that can be displayed in the Kanban list,
- 0, no cards can be added to the Kanban list,
- -1, an unlimited number of cards can be displayed.
<Kanban list>: Control name Kanban List control to be handled.
Setting the maximum number of cards allowed Hide the details
<Kanban list>.MaxNbCard = <Maximum value>
<Kanban list>: Control name Kanban List control to be handled. <Maximum value>: Integer - Maximum number of cards that can be displayed in the Kanban list,
- 0, no cards can be added to the Kanban list,
- -1, an unlimited number of cards can be displayed.
Remarks Once the maximum number of cards has been reached, the user will not be able to drop more cards onto the Kanban list. The list footer (if any) is then grayed out.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|