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 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