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