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