Esempio n. 1
0
 public void PurgeAllOnLayerTable(Database db) =>
 Wrappers.ExecuteActionInTransaction(db, tr =>
                                     Wrappers.ExecuteActionOnLayerTable(db, tr, lt => Wrappers.PurgeSymbolTable <LayerTable>(lt)));
Esempio n. 2
0
 public void ExecuteActionOnLayerTable(Database db, Action <Transaction, LayerTable> action) =>
 Wrappers.ExecuteActionInTransaction(db, tr =>
                                     Wrappers.ExecuteActionOnLayerTable(db, tr, action));