Aspose.Cells.GridWeb.Examples.CSharp.Controllers.GridWebFAQController.Calculate C# (CSharp) Method

Calculate() private method

private Calculate ( ) : void
return void
        private void Calculate()
        {
            if (postedFile != null && postedFile.ContentLength > 0)
            {
                var wbkMain = new Workbook(postedFile.InputStream);
                wbkMain.CalculateFormula();
            }
        }
        // ExEnd:FixStackOverflowException
GridWebFAQController