'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;}
'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;}
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(); }
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