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


Gets or sets whether to print an outline border around the entire control.
Syntax
'Declaration
 
<DefaultValueAttribute()>
Public Property ShowBorder As Boolean
'Usage
 
Dim instance As PrintInfo
Dim value As Boolean
 
instance.ShowBorder = value
 
value = instance.ShowBorder
[DefaultValue()]
public bool ShowBorder {get; set;}

Property Value

true if an outline border is printed around the control; otherwise, false. The default value is true.
Example
This example sets the ShowBorder 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
Requirements

Target Platforms: Windows Server 2012, Windows RT

See Also

Reference

PrintInfo Class
PrintInfo Members

 

 


Copyright © GrapeCity, inc. All rights reserved.

Support Options