BUG ScaleHieght and ScaleWidth Alway return 0 For Inline Spreadshe

N

NateLake

I believe that there may be a bug in Word 2007 related to the ScaleHeight and
ScaleWidth of an Inline OLE EXCEL spreadsheet. The issue is that the
ScaleWidth and the scale heigh always return 0. Step to reproduce this issue
include

Open Word 2007
Paste any EXCEL spreadsheet an Microsoft Excel Office Worksheet Object
Run the VBA CodeBelow


Sub TestInlineObject()
ActiveDocument.InlineShapes(1).ScaleWidth = 50
MsgBox ActiveDocument.InlineShapes(1).ScaleWidth
End Sub

Expected Results:
The shape width is scaled 50%
MsgBox ActiveDocument.InlineShapes(1).ScaleWidth should return 50

Actual Results:
The shape width is scaled 50%
MsgBox ActiveDocument.InlineShapes(1).ScaleWidth returns 0

THanks,
Nathan Lacoff
 
Top