Shape.Placement

Shape.Placement property

Represents the way the drawing object is attached to the cells below it. The property controls the placement of an object on a worksheet.

public PlacementType Placement { get; set; }

Examples


[C#]
if (shape.Placement == PlacementType.Move)
    shape.Placement = PlacementType.MoveAndSize;

See Also