[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.Placement

Placement Enum

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.

Namespace: GrapeCity.Documents.Excel.Drawing
Assembly: DS.Documents.Excel.dll
Syntax
public enum Placement
Public Enum Placement
Examples
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 40, 40, 100, 60);
shape.Placement = Placement.MoveAndSize;

Fields

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.