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