Spread for ASP.NET 8.0 Product Documentation
Left Property (PrintMargin)
Example 


Gets or sets the left margin for the printed page.
Syntax
'Declaration
 
Public Property Left As Integer
'Usage
 
Dim instance As PrintMargin
Dim value As Integer
 
instance.Left = value
 
value = instance.Left
public int Left {get; set;}
Example
This example sets the margins for printing.
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 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

 

 


Copyright © GrapeCity, inc. All rights reserved.