Visual Basic (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 _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
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) |
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
C# | Copy Code |
---|---|
FarPoint.Win.Spread.PrintInfo pi = new FarPoint.Win.Spread.PrintInfo(); FarPoint.Win.Spread.PrintMargin pm = new FarPoint.Win.Spread.PrintMargin(75, 50, 75, 50, 50, 50); pi.Margin = pm; fpSpread1.ActiveSheet.PrintInfo = pi; |
Visual Basic | Copy Code |
---|---|
Dim pi As New FarPoint.Win.Spread.PrintInfo Dim pm As New FarPoint.Win.Spread.PrintMargin(75, 50, 75, 50, 50, 50) pi.Margin = pm FpSpread1.ActiveSheet.PrintInfo = pi |
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2