[]
Gets or sets whether the button is the dismiss button.
Not supported by the *.ssjson format.
bool DismissButton { get; set; }
Property DismissButton As Boolean
IButton button = worksheet.Controls.AddButton(20, 20, 120, 24);
button.DismissButton = true;
bool isDismissButton = button.DismissButton;