下面是狐表范例中《用表达式计算成绩》的一段代码
MainTableChanged
If MainTable Is Nothing Then
Return
End If
If Maintable.Name = "成绩分布" Then
For Each c As DataCol in MainTable.DataTable.DataCols
c.Recalc()
Next
End If
If Maintable.Name = "销售统计" Then
dim f As New Filler
DataTables("销售统计").DataRows.Clear() '清除原有数据
f.SourceTable = DataTables("订单")
f.SourceCols = "产品"
f.DataTable = DataTables("销售统计")
f.DataCols = "产品"
f.Fill()
DataTables("销售统计").DataCols("数量").Recalc()
End If
其中 c.Recalc() 是什么意思,返回什么值?