|
Use this method to delete an object previously added to the
document.
Deletion may be applied to pages to remove them from the
document. For example to delete the current page you might use the
following code:
theDoc.Delete(theDoc.Page);
However if you are deleting multiple pages you will probably
find it more efficient to use the RemapPages method. as this is more optimized
for moving and removing pages.
|