Xceed Chart for WinForms v4.4 Documentation
PaperSource Property
Example 


Xceed.Chart.v4.4 Assembly > Xceed.Chart Namespace > PrintManager Class : PaperSource Property
The paper source that the chart will use when printing.
Syntax
'Declaration
 
Public Property PaperSource As String
'Usage
 
Dim instance As PrintManager
Dim value As String
 
instance.PaperSource = value
 
value = instance.PaperSource
public string PaperSource {get; set;}
Remarks
You can use the EnumeratePaperSources function of the PrintManager to enumerate the paper sources supported by a given printer.
Example
The following example prints the chart using the default paper source.
ArrayList arrPrinters = new ArrayList();
 int defaultPrinter = ChartControl.PrintManager.EnumerateInstalledPrinters(arrPrinters);
 
 if (defaultPrinter != -1)
 {
   ArrayList arrPaperSources = new ArrayList();
   ChartControl.PrintManager.PrinterName = arrPrinters[defaultPrinter].ToString();
   
   PaperSource paperSource = ChartControl.PrintManager.EnumeratePaperSources(defaultPrinter, arrPaperSources);
   ChartControl.PrintManager.PaperSource = paperSource.SourceName;
   
   ChartControl.PrintManager.Print();
 }
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

PrintManager Class
PrintManager Members