[]
Gets or sets how a control is attached to its underlying cells.
Placement Placement { get; set; }
Property Placement As Placement
IControl control = worksheet.Controls.AddButton(20, 20, 120, 30);
control.Placement = Placement.Move;
Placement placement = control.Placement;