Spread Windows Forms 12.0 Product Documentation
CellPadding Constructor()
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > CellPadding Class > CellPadding Constructor : CellPadding Constructor()
Initializes a new instance of the CellPadding class.
Syntax
'Declaration
 
Public Function New()
'Usage
 
Dim instance As New CellPadding()
public CellPadding()
Example
This example adds extra space to the cell.
FarPoint.Win.Spread.CellPadding test = new FarPoint.Win.Spread.CellPadding();
test.All = 1;
fpSpread1.Sheets[0].Cells[0,0].CellPadding = test;
fpSpread1.Sheets[0].Cells[0, 0].Text = "test";
fpSpread1.Sheets[0].Cells[0, 0].HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
fpSpread1.Sheets[0].Cells[0, 0].VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
// fpSpread1.Sheets[0].Cells[0, 0].TextIndent = 5;
Dim test As New FarPoint.Win.Spread.CellPadding
test.All = 1
fpSpread1.Sheets(0).Cells(0, 0).CellPadding = test
fpSpread1.Sheets(0).Cells(0, 0).Text = "test"
fpSpread1.Sheets(0).Cells(0, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left
fpSpread1.Sheets(0).Cells(0, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top
'fpSpread1.Sheets(0).Cells(0, 0).TextIndent = 5
See Also

Reference

CellPadding Class
CellPadding Members
Overload List