Constructor CheckBoxTableSourceWrapperByObject
CheckBoxTableSourceWrapperByObject(TableView, IEnumerableTableSource<T>, Func<T, bool>, Action<T, bool>)
Creates a new instance of the class wrapping the collection toWrap.
public CheckBoxTableSourceWrapperByObject(TableView tableView, IEnumerableTableSource<T> toWrap, Func<T, bool> getter, Action<T, bool> setter)
Parameters
tableViewTableViewThe table you will use the source with.
toWrapIEnumerableTableSource<T>The collection of objects you will record checked state for
getterFunc<T, bool>Delegate method for retrieving checked state from your objects of type
T.setterAction<T, bool>Delegate method for setting new checked states on your objects of type
T.