Visual Basic (Declaration) | |
---|---|
Public Property ShowShadows As Boolean |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As PrintInfo Dim value As Boolean instance.ShowShadows = value value = instance.ShowShadows |
C# | |
---|---|
public bool ShowShadows {get; set;} |
Property Value
Boolean: true to print the shadow effect of headers; false otherwiseWhen the ShowShadows property is set to true, the shadow effect within the row and column headers is printed when the sheet is printed. Setting the ShowShadows property to false makes the sheet print more rapidly.
This property does not have an effect unless the ShowColumnHeader property or ShowRowHeader property is set to true.
This example shows how to define the settings for customizing the printed page layout.
C# | Copy Code |
---|---|
// 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 fpSpread1.Sheets[0].PrintInfo = printset; fpSpread1.PrintSheet(0); |
Visual Basic | Copy Code |
---|---|
' 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 FpSpread1.Sheets(0).PrintInfo = printset FpSpread1.PrintSheet(0) |
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
Reference
PrintInfo ClassPrintInfo Members
ShowColumnHeader Property
ShowRowHeader Property