Message 1 of 5

Not applicable
05-31-2018
08:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have the following code to paste an image from the clipboard:
AcadDocument doc = acadApp.Documents.Open(filePath, false);
doc.Activate();
Clipboard.SetImage(imagePath);
doc.SendCommand("_pasteclip 767, 95 ");
This copies my image to the drawing but has a black border around it.
Know you can set OleFrame to zero but unsure of the syntax in my command to set this.
How can I add the image to my drawing without the border?
Solved! Go to Solution.