Loads formulas that are deserialized but not parsed yet, to be used after all sheets have been created and deserialized.
Syntax
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim recalculate As Boolean
instance.LoadFormulas(recalculate) |
Parameters
- recalculate
- Whether to recalculate all the formulas in cells on the sheet that have changed
Remarks
Example
This example loads formulas that are deserialized during deserialization.
C# | Copy Code |
---|
fpSpread1.Sheets.Add(FarPoint.Win.Serializer.LoadObject(typeof(FarPoint.Win.Spread.SheetView), "C:\\SavedSheet.xml", RootNode"));
fpSpread1.ActiveSheet.LoadFormulas(false);
|
Visual Basic | Copy Code |
---|
FpSpread.Sheets.Add(FarPoint.Win.Serializer.LoadObject(GetType(FarPoint.Win.Spread.SheetView), "C:\SavedSheet.xml", RootNode"))
FpSpread.ActiveSheet.LoadFormulas(True)
|
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also