Skip to content
This repository has been archived by the owner on Dec 13, 2018. It is now read-only.

Checklists

Oskar Dillén edited this page May 7, 2014 · 2 revisions

Example on how to check all unchecked check items on a card's first checklist.

    var card = trello.Cards.WithId("x");
    var checklist = card.Checklists.First();

    foreach (var checkItem in checklist.CheckItems.Where(ci => !ci.Checked))
        trello.Cards.ChangeCheckItemState(card, checklist, checkItem, true);
Clone this wiki locally