[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IShape.IsPrintable

IsPrintable Property

IsPrintable

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.

Declaration
bool IsPrintable { get; set; }
Property IsPrintable As Boolean
Examples
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 120, 60);
shape.IsPrintable = false;
bool isPrintable = shape.IsPrintable;