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

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

private m_fProperties_ShowHelpChartField ( bool &cancel, TextBox ctrl, int idx ) : void
cancel bool
ctrl System.Windows.Forms.TextBox
idx int
Результат void
		private void m_fProperties_ShowHelpChartField(out bool cancel, TextBox ctrl, int idx) {
            int nIndex = 0;
            int nFieldType = 0;
            String sField = "";

            sField = ctrl.Text;
            nFieldType = m_fProperties.getChartFieldType(idx);
            nIndex = m_fProperties.getChartIndex(idx);

			cancel = !cGlobals.showDbFields(sField, nFieldType, nIndex, this);
            if (cancel) { return; }

            ctrl.Text = sField;
            m_fProperties.setChartFieldType(idx, nFieldType);
            m_fProperties.setChartIndex(idx, nIndex);
        }
cEditor