[]
Gets or sets whether the object should be printed.
This property indicates whether the shape is included when the worksheet is printed or exported to a printable output such as PDF.
bool IsPrintable { get; set; }
Property IsPrintable As Boolean
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 120, 60);
shape.IsPrintable = false;
bool isPrintable = shape.IsPrintable;