CSReportEditor.cEditor.showHelpChartGroupField C# (CSharp) Метод

showHelpChartGroupField() публичный Метод

public showHelpChartGroupField ( ) : bool
Результат bool
        public bool showHelpChartGroupField() {
            int nIndex = 0;
            int nFieldType = 0;
            String sField = "";

            sField = m_fProperties.getDbFieldGroupValue();
            nFieldType = m_fProperties.getChartGroupFieldType();
            nIndex = m_fProperties.getChartGroupIndex();

            if(cGlobals.showDbFields(ref sField, ref nFieldType, ref nIndex, this))
            {
                m_fProperties.setDbFieldGroupValue(sField);
                m_fProperties.setChartGroupFieldType(nFieldType);
                m_fProperties.setChartGroupIndex(nIndex);
                return true;
            }
            else
            {
                return false;
            }
        }
cEditor