GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / PrintView Method
In This Topic
    PrintView Method
    In This Topic
    Render for printing everything you want to display from the view.
    Syntax
    protected virtual void PrintView( 
       Graphics g,
       RectangleF clipRect
    )

    Parameters

    g
    clipRect
    Remarks
    By default this does not print the document paper color or the view background color. This calls PaintBackgroundDecoration and PaintObjects, the latter painting all document objects, and all view objects only if PrintsViewObjects is true. You can disable printing layers of objects and individual objects by setting GoLayer.GoLayer.AllowPrint or GoObject.GoObject.Printable to false.
    See Also