artboard position
I need to add images in multiple artboards (each image in different artboards)
Initially i added an artboard and placed the image
Dim illus_doc As Illustrator.Document
Dim thisPlacedItem As Illustrator.PlacedItem
illus_doc = illus_app.Documents.Add(, 595.28, 841.49)
thisPlacedItem = illus_doc.PlacedItems.Add()
thisPlacedItem.File = "D:\temp\3.eps"
Then i added a second artboard and set the artboard rect.
Dim rect1() As Object = {0, 841.49, 595.28, 0}
illus_doc.Artboards.Add(rect1)
Let me know how to position the second artboard below the first and so on....thanks,
Sashi