Spread for ASP.NET 8.0 Product Documentation
GetEditValue Method
Example 


Gets the postback value of the specified cell on the active sheet in the Spread component.
Overload List
OverloadDescription
GetEditValueGets the postback value of the specified cell on the active sheet in the Spread component.  
Example
This example queries the GetEditValue of cell A1 in the spreadsheet.
objectval=FpSpread1.GetEditValue(0,0);
if(val==FarPoint.Web.Spread.FpSpread.Unchanged)
{
TextBox1.Text="CellA1isnotchanged";
}
else
{
TextBox1.Text=Convert.ToString(FpSpread1.GetEditValue(0,0));
}
DimvalAsObject=FpSpread1.GetEditValue(0,0)
If(Object.ReferenceEquals(val,FpSpread1.Unchanged))Then
TextBox1.Text="CellA1isnotchanged"
Else
TextBox1.Text=Convert.ToString(FpSpread1.GetEditValue(0,0))
EndIf
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

FpSpread Class
FpSpread Members

 

 


Copyright © GrapeCity, inc. All rights reserved.