Spread ASP.NET 15
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / PrintMargin Class / Bottom Property
Example


In This Topic
    Bottom Property (PrintMargin)
    In This Topic
    Gets or sets the bottom margin for the printed page.
    Syntax
    '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;}
    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
    See Also