[]
Gets the top left cell of this control.
The returned IRange identifies the worksheet cell at the upper-left corner of the control.
IRange TopLeftCell { get; }
ReadOnly Property TopLeftCell As IRange
IControl control = worksheet.Controls.AddButton(20, 20, 120, 30);
IRange cell = control.TopLeftCell;
string address = cell.Address;