Gets or sets whether to perform automatic re-calculation on the client-side data in support of AJAX applications.
            
            
            
Syntax
| Visual Basic (Declaration) |   | 
|---|
Public Property ClientAutoCalculation As Boolean  | 
 
| Visual Basic (Usage) |  Copy Code | 
|---|
Dim instance As FpSpread
Dim value As Boolean
 
instance.ClientAutoCalculation = value
 
value = instance.ClientAutoCalculation  | 
 
| C# |   | 
|---|
public bool ClientAutoCalculation {get; set;} | 
 
            
            
            Property Value
true if the client automatically recalculates; 
false otherwise
 
            
			
			
            
            
            
            
Example
| C# |  Copy Code | 
|---|
FpSpread1.EnableAjaxCall = true;
FpSpread1.ClientAutoCalculation = true;  | 
 
| Visual Basic |  Copy Code | 
|---|
FpSpread1.EnableAjaxCall = True
FpSpread1.ClientAutoCalculation = True  | 
 
 
            
            
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
 
            
            
See Also