CSReportDll.cReportFormula.setText C# (CSharp) Method

setText() public method

public setText ( String rhs ) : void
rhs String
return void
        public void setText(String rhs)
        {
            m_text = rhs;
        }

Usage Example

示例#1
0
        private void m_fFormula_CheckSintaxis(out bool cancel, String code) { 
            cReportFormula f = null;
            f = new cReportFormula();
            if (m_fProperties != null) {
                f.setName(m_fProperties.getFormulaName());
            } 
            else {
                f.setName(m_fSecProperties.getFormulaName());
            }
            f.setText(code);
			cancel = !m_report.getCompiler().checkSyntax(f);
        }
All Usage Examples Of CSReportDll.cReportFormula::setText