Aspose.Cells.GridWeb.Examples.CSharp.Controllers.GridWebFAQController.Calculate C# (CSharp) Метод

Calculate() приватный Метод

private Calculate ( ) : void
Результат void
        private void Calculate()
        {
            if (postedFile != null && postedFile.ContentLength > 0)
            {
                var wbkMain = new Workbook(postedFile.InputStream);
                wbkMain.CalculateFormula();
            }
        }
        // ExEnd:FixStackOverflowException
GridWebFAQController