this is base class of all 'top' font table
Exemplo n.º 1
0
 public bool TryGetTable(string tableName, out TableEntry entry)
 {
     return _tables.TryGetValue(tableName, out entry);
 }
Exemplo n.º 2
0
 public void ReplaceTable(TableEntry table)
 {
     _tables[table.Name] = table;
 }
Exemplo n.º 3
0
 public void AddEntry(TableEntry en)
 {
     _tables.Add(en.Name, en);
 }