Spread for ASP.NET 8.0 Product Documentation
AutoPostBack Property (SheetView)
Example 


Gets or sets whether a postback to the server automatically occurs when the user interacts with the sheet.
Syntax
'Declaration
 
Public Property AutoPostBack As Boolean
'Usage
 
Dim instance As SheetView
Dim value As Boolean
 
instance.AutoPostBack = value
 
value = instance.AutoPostBack
public bool AutoPostBack {get; set;}

Property Value

Boolean: true to specify an automatic postback; false otherwise
Remarks
This property determines whether the component automatically posts back data to the server based on interaction by the user. Setting AutoPostBack to True disables client script (EnableClientScript = False).
Example
This example specifies that a postback to the server occurs automatically when the user interacts with the sheet.
FarPoint.Web.Spread.SheetView sv;
sv = FpSpread1.ActiveSheetView;
sv.AutoPostBack = true;
Dim sv As FarPoint.Web.Spread.SheetView
sv = FpSpread1.ActiveSheetView
sv.AutoPostBack = True
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

SheetView Class
SheetView Members

User-Task Documentation

Understanding Postback and Page Load Events

 

 


Copyright © GrapeCity, inc. All rights reserved.