Spread Silverlight Documentation
ShowGridLine Property (PrintInfo)
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > PrintInfo Class : ShowGridLine Property
Gets or sets whether to print the grid lines.
Syntax
'Declaration
 
<System.ComponentModel.DefaultValueAttribute()>
Public Property ShowGridLine As System.Boolean
'Usage
 
Dim instance As PrintInfo
Dim value As System.Boolean
 
instance.ShowGridLine = value
 
value = instance.ShowGridLine
[System.ComponentModel.DefaultValue()]
public System.bool ShowGridLine {get; set;}

Property Value

true to print the grid lines; otherwise, false. The default value is true.
Example
This example uses the ShowGridLine property.
SaveFileDialog saveFileDialog = new SaveFileDialog();
saveFileDialog.Filter = "PDF File (.pdf)|*.pdf";
bool? useClick = saveFileDialog.ShowDialog();
if (useClick == true)
{
    var stream = saveFileDialog.OpenFile();

GrapeCity.Windows.SpreadSheet.Data.PrintInfo printset = new GrapeCity.Windows.SpreadSheet.Data.PrintInfo();
printset.FitPagesTall = 1;
printset.FitPagesWide = 1;
printset.ShowBorder = true;
printset.ShowColumnHeader = GrapeCity.Windows.SpreadSheet.Data.VisibilityType.Show;
printset.ShowRowHeader = GrapeCity.Windows.SpreadSheet.Data.VisibilityType.Show;
printset.ShowGridLine = true;
gcSpreadSheet1.Sheets[0].PrintInfo = printset;

gcSpreadSheet1.SavePDF(stream, 0);
 stream.Dispose();
}
Dim saveFileDialog = New SaveFileDialog()
saveFileDialog.Filter = "PDF File(.pdf)|*.pdf"
Dim useClick As Boolean = saveFileDialog.ShowDialog()
If (useClick = True) Then
Dim stream = saveFileDialog.OpenFile()

Dim printset As New GrapeCity.Windows.SpreadSheet.Data.PrintInfo()
printset.FitPagesTall = 1
printset.FitPagesWide = 1
printset.ShowBorder = True
printset.ShowColumnHeader = GrapeCity.Windows.SpreadSheet.Data.VisibilityType.Show
printset.ShowRowHeader = GrapeCity.Windows.SpreadSheet.Data.VisibilityType.Show
printset.ShowGridLine = True
GcSpreadSheet1.Sheets(0).PrintInfo = printset
GcSpreadSheet1.SavePDF(stream, 0)
See Also

Reference

PrintInfo Class
PrintInfo Members