GrapeCity.Xaml.SpreadSheet.Data
Right Property (Margins)
Example 


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

Property Value

The right margin.
Example
This example sets the Right property.
GrapeCity.Xaml.SpreadSheet.Data.Margins printmar = new GrapeCity.Xaml.SpreadSheet.Data.Margins();
printmar.Left = 10;
printmar.Right = 10;
printmar.Top = 20;
printmar.Bottom = 40;
GrapeCity.Xaml.SpreadSheet.Data.PrintInfo printset = new GrapeCity.Xaml.SpreadSheet.Data.PrintInfo();
printset.Margin = printmar;
gcSpreadSheet1.Sheets[0].PrintInfo = printset;
Dim printmar As New GrapeCity.Xaml.SpreadSheet.Data.Margins()
printmar.Left = 10
printmar.Right = 10
printmar.Top = 20
printmar.Bottom = 40
Dim printset As New GrapeCity.Xaml.SpreadSheet.Data.PrintInfo()
printset.Margin = printmar
GcSpreadSheet1.Sheets(0).PrintInfo = printset
Requirements

Target Platforms: Windows Server 2012, Windows RT

See Also

Reference

Margins Class
Margins Members

 

 


Copyright © GrapeCity, inc. All rights reserved.

Support Options