GrapeCity.Xaml.SpreadSheet.Data
ShowGridLine Property (PrintInfo)
Example 


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

Property Value

true to print the grid lines; otherwise, false. The default value is true.
Example
This example sets the ShowGridLine property.
GrapeCity.Xaml.SpreadSheet.Data.PrintInfo printset = new GrapeCity.Xaml.SpreadSheet.Data.PrintInfo();
printset.FitPagesTall = 1;
printset.FitPagesWide = 1;
printset.ShowBorder = true;
printset.ShowColumnHeader = GrapeCity.Xaml.SpreadSheet.Data.VisibilityType.Show;
printset.ShowRowHeader = GrapeCity.Xaml.SpreadSheet.Data.VisibilityType.Show;
printset.ShowGridLine = true;
gcSpreadSheet1.Sheets[0].PrintInfo = printset;
Dim printset As New GrapeCity.Xaml.SpreadSheet.Data.PrintInfo()
printset.FitPagesTall = 1
printset.FitPagesWide = 1
printset.ShowBorder = True
printset.ShowColumnHeader = GrapeCity.Xaml.SpreadSheet.Data.VisibilityType.Show
printset.ShowRowHeader = GrapeCity.Xaml.SpreadSheet.Data.VisibilityType.Show
printset.ShowGridLine = True
GcSpreadSheet1.Sheets(0).PrintInfo = printset
See Also

Reference

PrintInfo Class
PrintInfo Members