[]
Gets or sets whether the button is the default button.
Not supported by the *.ssjson format.
bool DefaultButton { get; set; }
Property DefaultButton As Boolean
IButton button = worksheet.Controls.AddButton(50, 20, 120, 24);
button.Text = "Submit";
button.DefaultButton = true;
bool isDefaultButton = button.DefaultButton;