Spread for ASP.NET 8.0 Product Documentation
PrintMargin Constructor(Int32,Int32,Int32,Int32,Int32,Int32)
Example 


Size of the left margin in pixels
Size of the top margin in pixels
Size of the right margin in pixels
Size of the bottom margin in pixels
Size of the header margin in pixels
Size of the footer margin in pixels
Creates a new PrintMargin object with the specified margins.
Syntax
'Declaration
 
Public Function New( _
   ByVal left As Integer, _
   ByVal top As Integer, _
   ByVal right As Integer, _
   ByVal bottom As Integer, _
   ByVal header As Integer, _
   ByVal footer As Integer _
)
'Usage
 
Dim left As Integer
Dim top As Integer
Dim right As Integer
Dim bottom As Integer
Dim header As Integer
Dim footer As Integer
 
Dim instance As New PrintMargin(left, top, right, bottom, header, footer)
public PrintMargin( 
   int left,
   int top,
   int right,
   int bottom,
   int header,
   int footer
)

Parameters

left
Size of the left margin in pixels
top
Size of the top margin in pixels
right
Size of the right margin in pixels
bottom
Size of the bottom margin in pixels
header
Size of the header margin in pixels
footer
Size of the footer margin in pixels
Example
This example sets the print margin.
FarPoint.Web.Spread.PrintMargin m = new FarPoint.Web.Spread.PrintMargin(10, 10, 10, 10, 10, 10);
FarPoint.Web.Spread.PrintInfo pi = new FarPoint.Web.Spread.PrintInfo();
pi.Margin = m;
FpSpread1.ActiveSheetView.PrintInfo = pi;
FpSpread1.SavePdf("c:\\test.pdf");
Dim m As New FarPoint.Web.Spread.PrintMargin(10, 10, 10, 10, 10, 10)
Dim pi As New FarPoint.Web.Spread.PrintInfo
pi.Margin = m
FpSpread1.ActiveSheetView.PrintInfo = pi
FpSpread1.SavePdf("c:\test.pdf")
Requirements

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

See Also

Reference

PrintMargin Class
PrintMargin Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.