CSReportDll.cReportCompiler.pIsFunction C# (CSharp) 메소드

pIsFunction() 개인적인 메소드

private pIsFunction ( String word ) : bool
word String
리턴 bool
        private bool pIsFunction(String word)
        {
            cReportFormulaType f = null;

            for (int _i = 0; _i < m_formulaTypes.count(); _i++)
            {
                f = m_formulaTypes.item(_i);
                if (word.ToLower() == f.getName().ToLower())
                {
                    return true;
                }
            }
            return false;
        }