Beispiel #1
0
 //True, если значение ячейки y, x в SysPage - пустое
 private bool SysIsEmpty(int y, int x)
 {
     return(SysSheet.CellIsEmpty(y, x));
 }
Beispiel #2
0
 //Записать строку в ячейку y, x в SysPage
 private void PutSysValue(int y, int x, string s)
 {
     SysSheet.PutCellValue(y, x, s);
 }
Beispiel #3
0
 //Возвращает значение ячейки y,x в SysPage
 private string SysValue(int y, int x)
 {
     return(SysSheet.CellValue(y, x));
 }