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


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

Property Value

The top margin.
Example
This example sets the Top 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