[]
Gets the control collection of this worksheet.
IControlCollection Controls { get; }
ReadOnly Property Controls As IControlCollection
IControlCollection controls = worksheet.Controls;
IButton button = controls.AddButton(20, 20, 100, 24);
button.Text = "Submit";