Gets or sets whether a postback to the server automatically occurs when the user interacts with the sheet.
            
            
            
Syntax
| Visual Basic (Declaration) |   | 
|---|
Public Property AutoPostBack As Boolean  | 
 
| Visual Basic (Usage) |  Copy Code | 
|---|
Dim instance As SheetView
Dim value As Boolean
 
instance.AutoPostBack = value
 
value = instance.AutoPostBack  | 
 
| C# |   | 
|---|
public bool AutoPostBack {get; set;} | 
 
            
            
            Property Value
Boolean:
 true to specify an automatic postback; 
false otherwise
 
            
			
			
            Remarks
            
            
Example
This example specifies that a postback to the server occurs automatically when the user interacts with the sheet.
             
| C# |  Copy Code | 
|---|
FarPoint.Web.Spread.SheetView sv;
sv = FpSpread1.ActiveSheetView;
sv.AutoPostBack = true;
  | 
 
| Visual Basic |  Copy Code | 
|---|
Dim sv As FarPoint.Web.Spread.SheetView
sv = FpSpread1.ActiveSheetView
sv.AutoPostBack = 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