How to detect and delete image added by DocumentBuilder InsertImage Method?
Aspose.PDF has image collection in page resources for example and have simple method for image deleting. What approach I should use in Aspose.Words for my task?
Added like this:
DocumentBuilder builder = new DocumentBuilder(document);
builder.InsertImage(annotation.ImagePath,
RelativeHorizontalPosition.Page,
annotation.Box.X,
RelativeVerticalPosition.Page,
annotation.Box.Y,
annotation.Box.Width,
annotation.Box.Height,
WrapType.Square);