Spread for ASP.NET 8.0 Product Documentation
ResetValue Method (Cell)
Example 


Resets the value for the cell to empty.
Syntax
'Declaration
 
Public Sub ResetValue() 
'Usage
 
Dim instance As Cell
 
instance.ResetValue()
public void ResetValue()
Example
This example uses the ResetValue method.
FarPoint.Web.Spread.Cell mycell;
mycell = FpSpread1.Cells[1, 1];
mycell.Value = 5;
object tagvalue;
tagvalue = "tag";
mycell.HorizontalAlign = HorizontalAlign.Center;
mycell.VerticalAlign = VerticalAlign.Top;
FpSpread1.ActiveSheetView.Rows[1].Height = 80;
//mycell.ResetTag();
//mycell.ResetValue();
//mycell.ResetHorizontalAlignment();
//mycell.ResetVerticalAlignment();
Dim mycell As FarPoint.Web.Spread.Cell
mycell = FpSpread1.Cells(1, 1)
mycell.Value = 5
Dim tagvalue As Object
tagvalue = "tag"
mycell.HorizontalAlign = HorizontalAlign.Center
mycell.VerticalAlign = VerticalAlign.Top
FpSpread1.ActiveSheetView.Rows(1).Height = 80
'mycell.ResetTag()
'mycell.ResetValue()
'mycell.ResetHorizontalAlignment()
'mycell.ResetVerticalAlignment()
Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

Cell Class
Cell Members

 

 


Copyright © GrapeCity, inc. All rights reserved.