Spread for ASP.NET 11 Product Documentation
ResetHorizontalAlignment Method (Column)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > Column Class : ResetHorizontalAlignment Method
Resets the horizontal alignment for the column and makes the column inherit the horizontal alignment from the default column.
Syntax
'Declaration
 
Public Sub ResetHorizontalAlignment() 
'Usage
 
Dim instance As Column
 
instance.ResetHorizontalAlignment()
public void ResetHorizontalAlignment()
Example
This example uses the ResetHorizontalAlignment method.
FarPoint.Web.Spread.Column mycol;
mycol = FpSpread1.ActiveSheetView.Columns[1];
mycol.CellType = new FarPoint.Web.Spread.TextCellType();
mycol.HorizontalAlign = HorizontalAlign.Right;
mycol.VerticalAlign = VerticalAlign.Bottom;
mycol.Locked = true;
mycol.Width = 140;
FpSpread1.ActiveSheetView.Cells[0, 1].Text = "Column";
//mycol.ResetCellType();
//mycol.ResetHorizontalAlignment();
//mycol.ResetVerticalAlignment();
//mycol.ResetLocked();
//mycol.ResetWidth();
Dim mycol As FarPoint.Web.Spread.Column
mycol = FpSpread1.ActiveSheetView.Columns(1)
mycol.CellType = New FarPoint.Web.Spread.TextCellType()
mycol.HorizontalAlign = HorizontalAlign.Right
mycol.VerticalAlign = VerticalAlign.Bottom
mycol.Locked = True
mycol.Width = 140
FpSpread1.ActiveSheetView.Cells(0, 1).Text = "Column"
'mycol.ResetCellType()
'mycol.ResetHorizontalAlignment()
'mycol.ResetVerticalAlignment()
'mycol.ResetLocked()
'mycol.ResetWidth()
See Also

Reference

Column Class
Column Members