12345678910111213141516171819202122232425262728293031323334353637 |
- function CStyleText()
- {
- };
- CStyleText.prototype = new AFeatureObject();
- CStyleText.prototype.setup = function (aFeatureParams)
- {
- changeTextStyleMore();
- };
- function changeTextStyleMore()
- {
- cfgSet("LAST_DIALOG", "textStyle");
- dlgReset();
- dlgGlobalReset();
- dlgSetParm("m", "/" + qs_dir + "/styleText.xts");
- dlgSubmit();
- };
|