12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- function CStyleBorder()
- {
- };
- CStyleBorder.prototype = new AFeatureObject();
- CStyleBorder.prototype.setup = function (aFeatureParams)
- {
- changeBorderStyleMore();
- };
- function changeBorderStyleMore()
- {
- cfgSet("LAST_DIALOG", "borderStyle");
- dlgReset();
- dlgGlobalReset();
- dlgSetParm("m", "/" + qs_dir + "/styleBorder.xts");
- if (goApplicationManager.getMiniQueryManager().hasHeaderColumns() === true)
- {
- dlgSetParm("section", true);
- }
- dlgSubmit();
- };
|