Spread Silverlight Documentation
Bottom Property (Margins)
Example 


Gets or sets the bottom margin, in hundredths of an inch.
Syntax
'Declaration
 
Public Property Bottom As System.Integer
'Usage
 
Dim instance As Margins
Dim value As System.Integer
 
instance.Bottom = value
 
value = instance.Bottom
public System.int Bottom {get; set;}

Property Value

The bottom margin.
Example
This example sets the Bottom 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.Margins printmar = new GrapeCity.Windows.SpreadSheet.Data.Margins();
printmar.Left = 10;
printmar.Right = 10;
printmar.Top = 20;
printmar.Bottom = 40;
GrapeCity.Windows.SpreadSheet.Data.PrintInfo printset = new GrapeCity.Windows.SpreadSheet.Data.PrintInfo();
printset.Margin = printmar;
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 printmar As New GrapeCity.Windows.SpreadSheet.Data.Margins()
printmar.Left = 10
printmar.Right = 10
printmar.Top = 20
printmar.Bottom = 40
Dim printset As New GrapeCity.Windows.SpreadSheet.Data.PrintInfo()
printset.Margin = printmar
GcSpreadSheet1.Sheets(0).PrintInfo = printset
GcSpreadSheet1.SavePDF(stream, 0)
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

Margins Class
Margins Members

 

 


Copyright © GrapeCity, inc. All rights reserved.