[]
Gets or sets whether the control will be printed.
Use this property to determine whether the control is included when the worksheet is printed.
bool PrintObject { get; set; }
Property PrintObject As Boolean
IControl control = worksheet.Controls.AddButton(20, 20, 120, 30);
control.PrintObject = false;
bool printobject = control.PrintObject;