public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
        {
            ProfielTotemsTableViewCell cell;

            cell = tableView.DequeueReusableCell(ProfielTotemsTableViewCell.Key) as ProfielTotemsTableViewCell;
            if (cell == null)
            {
                cell = ProfielTotemsTableViewCell.Create();
            }

            cell.Totem = Totems [indexPath.Row];

            //make sperator full width
            cell.PreservesSuperviewLayoutMargins = false;
            cell.SeparatorInset = UIEdgeInsets.Zero;
            cell.LayoutMargins  = UIEdgeInsets.Zero;

            cell.setData(check);

            return(cell);
        }
 public MyBemCheckBoxDelegate(ProfielTotemsTableViewCell cell)
 {
     this.cell = cell;
 }
 public MyBemCheckBoxDelegate(ProfielTotemsTableViewCell cell)
 {
     this.cell = cell;
 }