 |
sunoff Level: Scholar
 Registered: 17-12-2004 Posts: 47
|
how to get shape object/image from word document?
how to get shape object/image from word document?
For pc = 1 To wrdApp.ActiveDocument.InlineShapes.Count
If wrdApp.ActiveDocument.InlineShapes.Item(pc).Type = Word.WdInlineShapeType.wdInlineShapePicture Then
what should i do to get image object from the document?
End If
Next
For sh = 1 To wrdDoc.Shapes.Count
If wrdDoc.Shapes.Item(sh).Type = Microsoft.Office.Core.MsoShapeType.msoAutoShape Then
what should i do to get shape object?
End If
Next
|
|
04-08-2005 at 03:27 AM |
|
|
|
|
 |
 |