Example #1
0
 private bool IsChecked(GrapeCity.Win.MultiRow.Row row)
 => Convert.ToBoolean(row["celCheck"].Value);
Example #2
0
 private void SetRowCheckState(GrapeCity.Win.MultiRow.Row row, int check)
 => row.Cells["celCheck"].Value = check;
Example #3
0
 private Department ConvertRowToDepartment(GrapeCity.Win.MultiRow.Row row)
 => row.DataBoundItem as Department;
Example #4
0
 private Category ConvertRowToCategory(GrapeCity.Win.MultiRow.Row row)
 => row.DataBoundItem as Category;
Example #5
0
 private Section ConvertRowToSection(GrapeCity.Win.MultiRow.Row row)
 => row.DataBoundItem as Section;