Northwoods.GoSilverlight 1.3.5 Assembly
DoPrint Method
See Also  Send Feedback
Northwoods.GoXam Namespace > PrintManager Class : DoPrint Method

pdoc
Call the Print method on a PrintDocument setup by PrintManager.Print.

Syntax

Visual Basic (Declaration) 
Protected Overridable Sub DoPrint( _
   ByVal pdoc As PrintDocument _
) 
C# 
protected virtual void DoPrint( 
   PrintDocument pdoc
)

Parameters

pdoc

Remarks

You may want to override this in order to control printing options in Silverlight 5. This is currently implemented as:
            IDiagramModel model = this.Diagram.Model;
            String modelname = (model.Name != null ? model.Name : "Diagram");
            pdoc.Print(modelname);
            

Requirements

See Also

© 2012 All Rights Reserved.