[]
Specifies how an object is attached to its underlying cells.
Use this enum to control whether a shape or control moves with cells, resizes with cells, or remains free floating when the worksheet layout changes.
public enum Placement
Public Enum Placement
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 40, 40, 100, 60);
shape.Placement = Placement.MoveAndSize;
| Name | Description |
|---|---|
| FreeFloating | Specifies that an object is free floating. |
| Move | Specifies that an object is moved with the cells. |
| MoveAndSize | Specifies that an object is moved and sized with the cells. |