Export Controls {} without needing to export the whole dialog. Also, have option to export an array of class names of Controls.
Detail
class MyDialog {
idd=0;
class Controls { //export just this
class Control1 {};
};
};
class Control1 {};
};
class Control2 {};
};
class MyDialog {
idd=0;
controls[] = {Control1, Control2}; //also, have a way to export this array without exporting the whole dialog
};
Summary
Export Controls {} without needing to export the whole dialog. Also, have option to export an array of class names of Controls.
Detail