CSReportEditor.fMain.init C# (CSharp) Method

init() public method

public init ( ) : void
return void
        public void init()
        {
            cEditor editor = new cEditor(this, pnEditor, pnRule, pnReport, tbpEditor);
            editor.init();
            editor.newReport(null);        
        }

Usage Example

        public static fMain initEditor() {
            
            cRegionalCfg.init();

            if (fmain == null) {
                fmain = new fMain();
                fmain.init();
            }
            return fmain;
        }
All Usage Examples Of CSReportEditor.fMain::init
fMain