GrapeCity.Xaml.SpreadSheet.Data Namespace > PrintInfo Class : ShowGridLine Property |
'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;}
true
to print the grid lines; otherwise, false
. The default value is true
.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
Target Platforms: Windows Server 2012, Windows RT