privatevoid FpSpread1UpdateCommand(object sender, FarPoint.Web.Spread.SpreadCommandEventArgs e)
{
int colcnt;
int i;
string strvalue;
colcnt = e.EditValues.Count - 1
for (i = 0; i <= colcnt; i++)
{
if(!object.ReferenceEquals(e.EditValues[i], FarPoint.Web.Spread.FpSpread.Unchanged)
{
strvalue = e.EditValues[i];
}
}
}
PrivateSub FpSpread1UpdateCommand(ByVal sender AsObject, ByVal e As FarPoint.Web.Spread.SpreadCommandEventArgs) Handles
FpSpread1.UpdateCommand
Dim colcnt AsInteger, i AsInteger, strvalue AsString
colcnt = e.EditValues.Count - 1
For i = 0 To colcnt
IfNotObject.ReferenceEquals(e.EditValues.Item(i), FarPoint.Web.Spread.FpSpread.Unchanged) Then
strvalue = e.EditValues.Item(i)
EndIfNextEnd Sub