Advertisement
Guest User

Untitled

a guest
Jun 27th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. {
  2. Remove precombined and previs data from selected cells
  3. }
  4. unit RemovePrecombinedPreVis;
  5.  
  6. function Process(e: IInterface): Integer;
  7. begin
  8. if Signature(e) <> 'CELL' then
  9. Exit;
  10.  
  11. RemoveElement(e, 'VISI');
  12. RemoveElement(e, 'RVIS');
  13. RemoveElement(e, 'PCMB');
  14. RemoveElement(e, 'XPRI');
  15. RemoveElement(e, 'XCRI');
  16. end;
  17.  
  18. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement