GrapeCity.Xaml.SpreadSheet.Data
Margin Property (PrintInfo)
Example 


Gets or sets the margins for printing, in hundredths of an inch.
Syntax
'Declaration
 
Public Property Margin As Margins
'Usage
 
Dim instance As PrintInfo
Dim value As Margins
 
instance.Margin = value
 
value = instance.Margin
public Margins Margin {get; set;}

Property Value

The margins for printing, in hundredths of an inch.
Example
This example sets the Margin 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

PrintInfo Class
PrintInfo Members

 

 


Copyright © GrapeCity, inc. All rights reserved.

Support Options