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 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also