Spread for ASP.NET 10 Product Documentation
PrintMargin Constructor()
Example 


Creates a new PrintMargin object with margins set to zero.
Syntax
'Declaration
 
Public Function New()
'Usage
 
Dim instance As New PrintMargin()
public PrintMargin()
Example
This example sets the print margin.
FarPoint.Web.Spread.PrintMargin m = new FarPoint.Web.Spread.PrintMargin();
m.Bottom = 10;
m.Footer = 10;
m.Header = 10;
m.Left = 10;
m.Right = 10;
m.Top = 10;
FarPoint.Web.Spread.PrintInfo pi = new FarPoint.Web.Spread.PrintInfo();
pi.Margin = m;
FpSpread1.ActiveSheetView.PrintInfo = pi;
Dim m As New FarPoint.Web.Spread.PrintMargin
m.Bottom = 10
m.Footer = 10
m.Header = 10
m.Left = 10
m.Right = 10
m.Top = 10
Dim pi As New FarPoint.Web.Spread.PrintInfo
pi.Margin = m
FpSpread1.ActiveSheetView.PrintInfo = pi
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

PrintMargin Class
PrintMargin Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.