FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > PrintMargin Class : Bottom Property |
'Declaration Public Property Bottom As Integer
'Usage Dim instance As PrintMargin Dim value As Integer instance.Bottom = value value = instance.Bottom
public int Bottom {get; set;}
This is the space between the bottom of the page and the bottom of the footer. See the diagram in Setting the Printed Page White Space in Customizing the Printed Page Layout. To set the space between the top of the footer and the bottom of the body content, refer to the Footer property.
Set the margin as 100th-of-an-inch units; therefore, to set a 3/4-inch margin, set the property to 75.
FarPoint.Win.Spread.PrintInfo pi = new FarPoint.Win.Spread.PrintInfo(); FarPoint.Win.Spread.PrintMargin pm = new FarPoint.Win.Spread.PrintMargin(); pm.Left = 75; pm.Right = 75; pm.Top = 50; pm.Bottom = 50; pm.Footer = 50; pm.Header = 50; pi.Margin = pm; fpSpread1.ActiveSheet.PrintInfo = pi;
Dim pi As New FarPoint.Win.Spread.PrintInfo Dim pm As New FarPoint.Win.Spread.PrintMargin pm.Left = 75 pm.Right = 75 pm.Top = 50 pm.Bottom = 50 pm.Footer = 50 pm.Header = 50 pi.Margin = pm FpSpread1.ActiveSheet.PrintInfo = pi
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8