Ejemplo n.º 1
0
 public void Open(string path)
 {
     adapter          = new HTMLAdapt(path);
     H                = adapter.GetHeight();
     W                = adapter.GetWidth();
     data.RowCount    = H;
     data.ColumnCount = W;
     T                = new Cell[H, W];
     T                = adapter.GetTable();
     HeadersInit();
     Show();
 }