XL97: How to Control Object Placement in Microsoft Excel 97Last reviewed: January 9, 1998Article ID: Q168651 |
The information in this article applies to:
SUMMARYIn Microsoft Excel 97, you can control how charts, drawing objects, AutoShapes, controls, and other objects contained in a worksheet are attached to the cells below them. This article explains how to set the Placement property for objects in your worksheets.
MORE INFORMATIONObjects in worksheets can be attached to the cells below them using three different placement styles:
Placement Placement Style Value xlConstant ----------------------------------------------------------- Move and size with cells 1 xlMoveAndSize Move but don't size with cells 2 xlMove Don't move or size with cells 3 xlFreeFloatingYou can control how objects are attached to cells by using the Format dialog box, the Properties window, or by using Visual Basic macro code.
Using the Format Dialog Box to Control PlacementTo format an object's placement style, follow these steps:
Using the Properties Window to Control PlacementThis method applies only to controls contained in a worksheet. You cannot use this method to format the placement style of other types of objects.
If you set an invalid Placement value, you receive the following error message:
Unable to set the Placement property of the OLEObject classIn Microsoft Excel 97, the only valid Placement values are 1, 2, and 3.
Using Visual Basic Code to Control PlacementYou can use the Placement Property in Visual Basic for Applications to control the placement style of an object. Here are some examples of how to do this:
'A control. ActiveSheet.Shapes("CommandButton1").Placement = xlMoveAndSize 'An embedded chart. ActiveSheet.ChartObjects("Chart 4").Placement = xlMove 'A drawing object or AutoShape. ActiveSheet.Shapes("Rectangle 3").Placement = xlFreeFloating REFERENCESFor more information about object placement in Microsoft Excel 97, click the Office Assistant, type the words "object placement", without quotation marks, and press ENTER. Then, click the button labeled "Prevent objects from moving and sizing with cells".
|
Additional query words: 97 XL97
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |