[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IShape.Placement

Placement Property

Placement

Gets or sets the way the object is attached to the cells below it.

The returned value indicates whether the shape moves and sizes with cells, moves with cells only, or remains free floating.

Declaration
Placement Placement { get; set; }
Property Placement As Placement
Examples
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 120, 60);
shape.Placement = Placement.Move;
Placement placement = shape.Placement;