1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- function CStyleReset()
- {
- };
- CStyleReset.prototype = new AFeatureObject();
- CStyleReset.prototype.setup = function (aFeatureParams)
- {
- clearAllStyleCommand();
- };
- function clearAllStyleCommand(bSendCmd)
- {
- if (typeof bSendCmd == "undefined" || bSendCmd == null)
- {
- bSendCmd = true;
- }
- var cmd = getConfigFrame().createCommand("Z","R", new Array());
- updateCommandBuffer(cmd);
- if (bSendCmd)
- {
- sendBufferedCommands();
- }
- };
|