[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Forms.IControl.PrintObject

PrintObject Property

PrintObject

Gets or sets whether the control will be printed.

Use this property to determine whether the control is included when the worksheet is printed.

Declaration
bool PrintObject { get; set; }
Property PrintObject As Boolean
Examples
IControl control = worksheet.Controls.AddButton(20, 20, 120, 30);
control.PrintObject = false;
bool printobject = control.PrintObject;