Spread WPF Documentation
Right Property (Margins)
Example 


Gets or sets the right margin, in hundredths of an inch.
Syntax
'Declaration
 
Public Property Right As System.Integer
'Usage
 
Dim instance As Margins
Dim value As System.Integer
 
instance.Right = value
 
value = instance.Right
public System.int Right {get; set;}

Property Value

The right margin.
Example
This example sets the Right property.
GrapeCity.Windows.SpreadSheet.Data.Margins printmar = new GrapeCity.Windows.SpreadSheet.Data.Margins();
printmar.Left = 10;
printmar.Right = 10;
printmar.Top = 20;
printmar.Bottom = 40;
GrapeCity.Windows.SpreadSheet.Data.PrintInfo printset = new GrapeCity.Windows.SpreadSheet.Data.PrintInfo();
printset.Margin = printmar;
gcSpreadSheet1.Sheets[0].PrintInfo = printset;
gcSpreadSheet1.SavePDF("c:\\zipfile\\test.pdf", 0);
Dim printmar As New GrapeCity.Windows.SpreadSheet.Data.Margins()
printmar.Left = 10
printmar.Right = 10
printmar.Top = 20
printmar.Bottom = 40
Dim printset As New GrapeCity.Windows.SpreadSheet.Data.PrintInfo()
printset.Margin = printmar
GcSpreadSheet1.Sheets(0).PrintInfo = printset
GcSpreadSheet1.SavePDF("c:\zipfile\test.pdf", 0)
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional (SP4), Windows XP (SP2), Windows 2008, Windows 2003 Server (SP1)

See Also

Reference

Margins Class
Margins Members

 

 


Copyright © GrapeCity, inc. All rights reserved.