FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > PrintInfo Class : ShowColor Property |
'Declaration Public Property ShowColor As Boolean
'Usage Dim instance As PrintInfo Dim value As Boolean instance.ShowColor = value value = instance.ShowColor
public bool ShowColor {get; set;}
When this property is set to false, the colors specified within the Spread component are ignored, the sheet prints using black and white, and the headers print in shades of gray. When this property is set to true and the sheet is not printed on a color printer, the colors print as dithered patterns. The ShowColor property works when exporting to PDF or an Excel-formatted file with virtual printers.
// Define the printer settings FarPoint.Win.Spread.PrintInfo printset = new FarPoint.Win.Spread.PrintInfo(); FarPoint.Win.Spread.PrintMargin printmar = new FarPoint.Win.Spread.PrintMargin(); printmar.Left = 10; printmar.Right = 10; printmar.Top = 20; printmar.Bottom = 40; printset.Centering = FarPoint.Win.Spread.Centering.Both; printset.FirstPageNumber = 1; printset.Margin = printmar; printset.Opacity = 60; printset.Orientation = FarPoint.Win.Spread.PrintOrientation.Portrait; printset.ShowBorder = false; printset.ShowColor = false; printset.ShowColumnHeader = FarPoint.Win.Spread.PrintHeader.Hide; printset.ShowRowHeader = FarPoint.Win.Spread.PrintHeader.Hide; printset.ShowGrid = true; printset.ShowShadows = false; printset.ZoomFactor = 2; // Assign the printer settings to the sheet and print it printset.PrintToPdf = true; printset.PdfFileName = "C:\\results.pdf"; fpSpread1.Sheets[0].PrintInfo = printset; fpSpread1.PrintSheet(0);
' Define the printer settings Dim printset As New FarPoint.Win.Spread.PrintInfo() Dim printmar As New FarPoint.Win.Spread.PrintMargin printmar.Left = 10 printmar.Right = 10 printmar.Top = 20 printmar.Bottom = 40 printset.Centering = FarPoint.Win.Spread.Centering.Both printset.FirstPageNumber = 1 printset.Margin = printmar printset.Opacity = 60 printset.Orientation = FarPoint.Win.Spread.PrintOrientation.Portrait printset.ShowBorder = False printset.ShowColor = False printset.ShowColumnHeader = FarPoint.Win.Spread.PrintHeader.Hide printset.ShowRowHeader = FarPoint.Win.Spread.PrintHeader.Hide printset.ShowGrid = True printset.ShowShadows = False printset.ZoomFactor = 2 ' Assign the printer settings to the sheet and print it printset.PrintToPdf = True printset.PdfFileName = "C:\results.pdf" FpSpread1.Sheets(0).PrintInfo = printset FpSpread1.PrintSheet(0)
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10