How to use commandString method in storybook-root

Best JavaScript code snippet using storybook-root

ToolRegistry.test.ts

Source:ToolRegistry.test.ts Github

copy

Full Screen

1/*---------------------------------------------------------------------------------------------2* Copyright (c) 2019 Bentley Systems, Incorporated. All rights reserved.3* Licensed under the MIT License. See LICENSE.md in the project root for license terms.4*--------------------------------------------------------------------------------------------*/5import { assert } from "chai";6import { I18NNamespace } from "@bentley/imodeljs-i18n";7import { FuzzySearchResult, FuzzySearchResults } from "../FuzzySearch";8import { IModelApp } from "../IModelApp";9import { MockRender } from "../render/MockRender";10import { Tool } from "../tools/Tool";11// these are later set by executing the TestImmediate tool.12let testVal1: string;13let testVal2: string;14let lastCommand: string;15/** class to test immediate tool */16class TestImmediate extends Tool {17 public static toolId = "Test.Immediate";18 public run(): boolean {19 testVal1 = "test1";20 testVal2 = "test2";21 return true;22 }23}24// spell-checker: disable25class TestCommandApp extends MockRender.App {26 public static testNamespace?: I18NNamespace;27 public static startup() {28 IModelApp.startup({ i18n: this.supplyI18NOptions() });29 this.testNamespace = IModelApp.i18n.registerNamespace("TestApp");30 TestImmediate.register(this.testNamespace);31 }32 protected static supplyI18NOptions() { return { urlTemplate: `${window.location.origin}/locales/{{lng}}/{{ns}}.json` }; }33}34async function setupToolRegistryTests() {35 TestCommandApp.startup();36 createTestTools();37 await IModelApp.i18n.waitForAllRead();38}39function logResult(..._args: any[]) {40 // tslint:disable-next-line:no-console41 // console.log(..._args);42}43describe("ToolRegistry", () => {44 before(async () => setupToolRegistryTests());45 after(() => TestCommandApp.shutdown());46 it("Should find Select tool", async () => {47 const command: typeof Tool | undefined = IModelApp.tools.findExactMatch("Select Elements");48 assert.isDefined(command, "Found Select Elements Command");49 if (command) {50 assert.isTrue(command.prototype instanceof Tool);51 }52 });53 it("Should execute the TestImmediate command", async () => {54 const cmdReturn: boolean = IModelApp.tools.executeExactMatch("Localized TestImmediate Keyin");55 assert.isTrue(cmdReturn);56 assert.equal(testVal1, "test1", "TestImmediate tool set values");57 assert.equal(testVal2, "test2");58 });59 it("Should find the MicroStation inputmanager training command", async () => {60 const command: typeof Tool | undefined = IModelApp.tools.findExactMatch("inputmanager training");61 assert.isDefined(command, "Found inputmanager training command");62 if (command) {63 assert.isTrue(IModelApp.tools.run(command.toolId));64 assert.equal(lastCommand, "inputmanager training");65 }66 });67 it("Should find some partial matches for 'plac'", async () => {68 const searchResults: FuzzySearchResults<typeof Tool> | undefined = IModelApp.tools.findPartialMatches("plac");69 showSearchResults("Matches for 'plac':", searchResults);70 });71 it("Should find some partial matches for 'plce'", async () => {72 const searchResults: FuzzySearchResults<typeof Tool> | undefined = IModelApp.tools.findPartialMatches("plce");73 showSearchResults("Matches for 'plce':", searchResults);74 });75 it("Should find some partial matches for 'cone plac'", async () => {76 const searchResults: FuzzySearchResults<typeof Tool> | undefined = IModelApp.tools.findPartialMatches("cone plac");77 showSearchResultsUsingIndexApi("Matches for 'cone plac':", searchResults);78 });79 it("Should find some partial matches for 'vie'", async () => {80 const searchResults: FuzzySearchResults<typeof Tool> | undefined = IModelApp.tools.findPartialMatches("vie");81 showSearchResultsUsingIndexApi("Matches for 'vie':", searchResults);82 });83 it("Should find some partial matches for 'place '", async () => {84 const searchResults: FuzzySearchResults<typeof Tool> | undefined = IModelApp.tools.findPartialMatches("place ");85 showSearchResults("Matches for 'place ':", searchResults);86 });87 it("Should find some nomatch results 'fjt'", async () => {88 const searchResults: FuzzySearchResults<typeof Tool> | undefined = IModelApp.tools.findPartialMatches("fjt");89 showSearchResults("Matches for 'place ':", searchResults);90 });91});92function caretStringFromBoldMask(keyin: string, boldMask: boolean[]): string {93 assert.isTrue(keyin.length === boldMask.length);94 let boldString: string = boldMask[0] ? "^" : " ";95 for (let index = 1; index < boldMask.length; index++) {96 boldString = boldString.concat(boldMask[index] ? "^" : " ");97 }98 return boldString;99}100function showSearchResults(title: string, searchResults?: FuzzySearchResults<typeof Tool>) {101 assert.isDefined(searchResults);102 if (!searchResults)103 return;104 logResult(searchResults.length, title);105 for (const thisResult of searchResults) {106 const keyin = thisResult.getMatchedValue();107 logResult(keyin);108 assert.isTrue(keyin.length > 0);109 const boldMask: boolean[] = thisResult.getBoldMask();110 logResult(caretStringFromBoldMask(keyin, boldMask));111 }112}113function showSearchResultsUsingIndexApi(title: string, searchResults?: FuzzySearchResults<typeof Tool>) {114 assert.isDefined(searchResults);115 if (!searchResults)116 return;117 logResult(searchResults.length, title);118 // tslint:disablenext-line:prefer-for-of119 for (let resultIndex: number = 0; resultIndex < searchResults.length; resultIndex++) {120 const thisResult: FuzzySearchResult<typeof Tool> | undefined = searchResults.getResult(resultIndex);121 assert.isDefined(thisResult);122 const keyin = thisResult!.getMatchedValue();123 logResult(keyin);124 assert.isTrue(keyin && keyin.length > 0);125 const boldMask: boolean[] | undefined = thisResult!.getBoldMask();126 assert.isTrue(boldMask && boldMask.length > 0);127 logResult(caretStringFromBoldMask(keyin!, boldMask!));128 }129}130function registerTestClass(id: string, keyin: string, ns: I18NNamespace) {131 (class extends Tool {132 public static toolId = id;133 public run(): boolean { lastCommand = keyin; return true; }134 public static get keyin(): string { return keyin; }135 }).register(ns);136}137function createTestTools(): void {138 const testCommandEntries: any = JSON.parse(testCommandsString);139 const ns: I18NNamespace = TestCommandApp.testNamespace!;140 for (const thisEntry of testCommandEntries) {141 // create a tool id by concatenating the words of the keyin.142 const toolId: string = thisEntry.commandString.replace(/ /g, ".");143 registerTestClass(toolId, thisEntry.commandString, ns);144 }145}146const testCommandsString: string = '[\147 {\148 "commandString": "update"\149 },\150 {\151 "commandString": "update 1"\152 },\153 {\154 "commandString": "update 2"\155 },\156 {\157 "commandString": "update 3"\158 },\159 {\160 "commandString": "update 4"\161 },\162 {\163 "commandString": "update 5"\164 },\165 {\166 "commandString": "update 6"\167 },\168 {\169 "commandString": "update 7"\170 },\171 {\172 "commandString": "update 8"\173 },\174 {\175 "commandString": "update right"\176 },\177 {\178 "commandString": "update left"\179 },\180 {\181 "commandString": "update both"\182 },\183 {\184 "commandString": "update all"\185 },\186 {\187 "commandString": "update view"\188 },\189 {\190 "commandString": "update grid"\191 },\192 {\193 "commandString": "update file"\194 },\195 {\196 "commandString": "update fence"\197 },\198 {\199 "commandString": "update fence inside"\200 },\201 {\202 "commandString": "update fence outside"\203 },\204 {\205 "commandString": "fit"\206 },\207 {\208 "commandString": "fit active"\209 },\210 {\211 "commandString": "fit reference"\212 },\213 {\214 "commandString": "fit all"\215 },\216 {\217 "commandString": "fit tofence"\218 },\219 {\220 "commandString": "window"\221 },\222 {\223 "commandString": "window area"\224 },\225 {\226 "commandString": "window center"\227 },\228 {\229 "commandString": "window origin"\230 },\231 {\232 "commandString": "window volume"\233 },\234 {\235 "commandString": "window back"\236 },\237 {\238 "commandString": "window front"\239 },\240 {\241 "commandString": "window move"\242 },\243 {\244 "commandString": "window move tlcorner"\245 },\246 {\247 "commandString": "window move topedge"\248 },\249 {\250 "commandString": "window move trcorner"\251 },\252 {\253 "commandString": "window move rightedge"\254 },\255 {\256 "commandString": "window move brcorner"\257 },\258 {\259 "commandString": "window move btmedge"\260 },\261 {\262 "commandString": "window move blcorner"\263 },\264 {\265 "commandString": "window move leftedge"\266 },\267 {\268 "commandString": "window move allcorners"\269 },\270 {\271 "commandString": "window close"\272 },\273 {\274 "commandString": "window sink"\275 },\276 {\277 "commandString": "window cascade"\278 },\279 {\280 "commandString": "window tile"\281 },\282 {\283 "commandString": "window bottomtotop"\284 },\285 {\286 "commandString": "window restore"\287 },\288 {\289 "commandString": "window minimize"\290 },\291 {\292 "commandString": "window maximize"\293 },\294 {\295 "commandString": "window changescreen"\296 },\297 {\298 "commandString": "window arrange"\299 },\300 {\301 "commandString": "zoom"\302 },\303 {\304 "commandString": "zoom in"\305 },\306 {\307 "commandString": "zoom in center"\308 },\309 {\310 "commandString": "zoom out"\311 },\312 {\313 "commandString": "zoom out center"\314 },\315 {\316 "commandString": "move"\317 },\318 {\319 "commandString": "move left"\320 },\321 {\322 "commandString": "move right"\323 },\324 {\325 "commandString": "move up"\326 },\327 {\328 "commandString": "move down"\329 },\330 {\331 "commandString": "move fence"\332 },\333 {\334 "commandString": "move acs"\335 },\336 {\337 "commandString": "move parallel"\338 },\339 {\340 "commandString": "move parallel distance"\341 },\342 {\343 "commandString": "move parallel keyin"\344 },\345 {\346 "commandString": "move parallel icon"\347 },\348 {\349 "commandString": "set"\350 },\351 {\352 "commandString": "set levels"\353 },\354 {\355 "commandString": "set levels on"\356 },\357 {\358 "commandString": "set levels off"\359 },\360 {\361 "commandString": "set levels toggle"\362 },\363 {\364 "commandString": "set text"\365 },\366 {\367 "commandString": "set text on"\368 },\369 {\370 "commandString": "set text off"\371 },\372 {\373 "commandString": "set text toggle"\374 },\375 {\376 "commandString": "set ed"\377 },\378 {\379 "commandString": "set ed on"\380 },\381 {\382 "commandString": "set ed off"\383 },\384 {\385 "commandString": "set ed toggle"\386 },\387 {\388 "commandString": "set grid"\389 },\390 {\391 "commandString": "set grid on"\392 },\393 {\394 "commandString": "set grid off"\395 },\396 {\397 "commandString": "set grid toggle"\398 },\399 {\400 "commandString": "set prompt"\401 },\402 {\403 "commandString": "set tpmode"\404 },\405 {\406 "commandString": "set tpmode locate"\407 },\408 {\409 "commandString": "set tpmode delta"\410 },\411 {\412 "commandString": "set tpmode distance"\413 },\414 {\415 "commandString": "set tpmode angle2"\416 },\417 {\418 "commandString": "set tpmode vdelta"\419 },\420 {\421 "commandString": "set tpmode acslocate"\422 },\423 {\424 "commandString": "set tpmode acsdelta"\425 },\426 {\427 "commandString": "set function"\428 },\429 {\430 "commandString": "set range"\431 },\432 {\433 "commandString": "set range on"\434 },\435 {\436 "commandString": "set range off"\437 },\438 {\439 "commandString": "set range toggle"\440 },\441 {\442 "commandString": "set ddepth"\443 },\444 {\445 "commandString": "set ddepth absolute"\446 },\447 {\448 "commandString": "set ddepth relative"\449 },\450 {\451 "commandString": "set pattern"\452 },\453 {\454 "commandString": "set pattern on"\455 },\456 {\457 "commandString": "set pattern off"\458 },\459 {\460 "commandString": "set pattern toggle"\461 },\462 {\463 "commandString": "set construct"\464 },\465 {\466 "commandString": "set construct on"\467 },\468 {\469 "commandString": "set construct off"\470 },\471 {\472 "commandString": "set construct toggle"\473 },\474 {\475 "commandString": "set dimension"\476 },\477 {\478 "commandString": "set dimension on"\479 },\480 {\481 "commandString": "set dimension off"\482 },\483 {\484 "commandString": "set dimension toggle"\485 },\486 {\487 "commandString": "set weight"\488 },\489 {\490 "commandString": "set weight on"\491 },\492 {\493 "commandString": "set weight off"\494 },\495 {\496 "commandString": "set weight toggle"\497 },\498 {\499 "commandString": "set nodes"\500 },\501 {\502 "commandString": "set nodes on"\503 },\504 {\505 "commandString": "set nodes off"\506 },\507 {\508 "commandString": "set nodes toggle"\509 },\510 {\511 "commandString": "set healing"\512 },\513 {\514 "commandString": "set healing on"\515 },\516 {\517 "commandString": "set healing off"\518 },\519 {\520 "commandString": "set healing toggle"\521 },\522 {\523 "commandString": "set hilite"\524 },\525 {\526 "commandString": "set hilite black"\527 },\528 {\529 "commandString": "set hilite blue"\530 },\531 {\532 "commandString": "set hilite green"\533 },\534 {\535 "commandString": "set hilite cyan"\536 },\537 {\538 "commandString": "set hilite red"\539 },\540 {\541 "commandString": "set hilite magenta"\542 },\543 {\544 "commandString": "set hilite yellow"\545 },\546 {\547 "commandString": "set hilite white"\548 },\549 {\550 "commandString": "set hilite lgrey"\551 },\552 {\553 "commandString": "set hilite dgrey"\554 },\555 {\556 "commandString": "set mirtext"\557 },\558 {\559 "commandString": "set mirtext on"\560 },\561 {\562 "commandString": "set mirtext off"\563 },\564 {\565 "commandString": "set mirtext toggle"\566 },\567 {\568 "commandString": "set database"\569 },\570 {\571 "commandString": "set stream"\572 },\573 {\574 "commandString": "set stream on"\575 },\576 {\577 "commandString": "set stream off"\578 },\579 {\580 "commandString": "set stream toggle"\581 },\582 {\583 "commandString": "set button"\584 },\585 {\586 "commandString": "set delete"\587 },\588 {\589 "commandString": "set delete on"\590 },\591 {\592 "commandString": "set delete off"\593 },\594 {\595 "commandString": "set delete toggle"\596 },\597 {\598 "commandString": "set control"\599 },\600 {\601 "commandString": "set stackfractions"\602 },\603 {\604 "commandString": "set stackfractions on"\605 },\606 {\607 "commandString": "set stackfractions off"\608 },\609 {\610 "commandString": "set stackfractions toggle"\611 },\612 {\613 "commandString": "set overview"\614 },\615 {\616 "commandString": "set overview on"\617 },\618 {\619 "commandString": "set overview off"\620 },\621 {\622 "commandString": "set overview toggle"\623 },\624 {\625 "commandString": "set overview right"\626 },\627 {\628 "commandString": "set overview left"\629 },\630 {\631 "commandString": "set lvlsymb"\632 },\633 {\634 "commandString": "set lvlsymb on"\635 },\636 {\637 "commandString": "set lvlsymb off"\638 },\639 {\640 "commandString": "set lvlsymb toggle"\641 },\642 {\643 "commandString": "set linewidth"\644 },\645 {\646 "commandString": "set linewidth on"\647 },\648 {\649 "commandString": "set linewidth off"\650 },\651 {\652 "commandString": "set linewidth toggle"\653 },\654 {\655 "commandString": "set linefill"\656 },\657 {\658 "commandString": "set linefill on"\659 },\660 {\661 "commandString": "set linefill off"\662 },\663 {\664 "commandString": "set linefill toggle"\665 },\666 {\667 "commandString": "set fill"\668 },\669 {\670 "commandString": "set fill on"\671 },\672 {\673 "commandString": "set fill off"\674 },\675 {\676 "commandString": "set fill toggle"\677 },\678 {\679 "commandString": "set cursor"\680 },\681 {\682 "commandString": "set cursor small"\683 },\684 {\685 "commandString": "set cursor full"\686 },\687 {\688 "commandString": "set cursor toggle"\689 },\690 {\691 "commandString": "set cursor orthogonal"\692 },\693 {\694 "commandString": "set cursor isometric"\695 },\696 {\697 "commandString": "set undo"\698 },\699 {\700 "commandString": "set undo on"\701 },\702 {\703 "commandString": "set undo off"\704 },\705 {\706 "commandString": "set undo toggle"\707 },\708 {\709 "commandString": "set auxinput"\710 },\711 {\712 "commandString": "set auxinput on"\713 },\714 {\715 "commandString": "set auxinput off"\716 },\717 {\718 "commandString": "set auxinput toggle"\719 },\720 {\721 "commandString": "set autopan"\722 },\723 {\724 "commandString": "set autopan on"\725 },\726 {\727 "commandString": "set autopan off"\728 },\729 {\730 "commandString": "set autopan toggle"\731 },\732 {\733 "commandString": "set maxgrid"\734 },\735 {\736 "commandString": "set edchar"\737 },\738 {\739 "commandString": "set plotter"\740 },\741 {\742 "commandString": "set locate"\743 },\744 {\745 "commandString": "set isoplane"\746 },\747 {\748 "commandString": "set isoplane top"\749 },\750 {\751 "commandString": "set isoplane left"\752 },\753 {\754 "commandString": "set isoplane right"\755 },\756 {\757 "commandString": "set isoplane all"\758 },\759 {\760 "commandString": "set dynosize"\761 },\762 {\763 "commandString": "set xor"\764 },\765 {\766 "commandString": "set xor black"\767 },\768 {\769 "commandString": "set xor blue"\770 },\771 {\772 "commandString": "set xor green"\773 },\774 {\775 "commandString": "set xor cyan"\776 },\777 {\778 "commandString": "set xor red"\779 },\780 {\781 "commandString": "set xor magenta"\782 },\783 {\784 "commandString": "set xor yellow"\785 },\786 {\787 "commandString": "set xor white"\788 },\789 {\790 "commandString": "set xor lgrey"\791 },\792 {\793 "commandString": "set xor dgrey"\794 },\795 {\796 "commandString": "set acsdisplay"\797 },\798 {\799 "commandString": "set acsdisplay on"\800 },\801 {\802 "commandString": "set acsdisplay off"\803 },\804 {\805 "commandString": "set acsdisplay toggle"\806 },\807 {\808 "commandString": "set parseall"\809 },\810 {\811 "commandString": "set parseall on"\812 },\813 {\814 "commandString": "set parseall off"\815 },\816 {\817 "commandString": "set parseall toggle"\818 },\819 {\820 "commandString": "set help"\821 },\822 {\823 "commandString": "set help on"\824 },\825 {\826 "commandString": "set help off"\827 },\828 {\829 "commandString": "set help toggle"\830 },\831 {\832 "commandString": "set smalltext"\833 },\834 {\835 "commandString": "set debug"\836 },\837 {\838 "commandString": "set scanner"\839 },\840 {\841 "commandString": "set scanner old"\842 },\843 {\844 "commandString": "set scanner new"\845 },\846 {\847 "commandString": "set camera"\848 },\849 {\850 "commandString": "set camera definition"\851 },\852 {\853 "commandString": "set camera position"\854 },\855 {\856 "commandString": "set camera target"\857 },\858 {\859 "commandString": "set camera lens"\860 },\861 {\862 "commandString": "set camera lens fisheye"\863 },\864 {\865 "commandString": "set camera lens extrawide"\866 },\867 {\868 "commandString": "set camera lens wide"\869 },\870 {\871 "commandString": "set camera lens normal"\872 },\873 {\874 "commandString": "set camera lens portrait"\875 },\876 {\877 "commandString": "set camera lens telephoto"\878 },\879 {\880 "commandString": "set camera lens telescopic"\881 },\882 {\883 "commandString": "set camera lens length"\884 },\885 {\886 "commandString": "set camera lens angle"\887 },\888 {\889 "commandString": "set camera distance"\890 },\891 {\892 "commandString": "set camera on"\893 },\894 {\895 "commandString": "set camera off"\896 },\897 {\898 "commandString": "set camera icon"\899 },\900 {\901 "commandString": "set camera toggle"\902 },\903 {\904 "commandString": "set view"\905 },\906 {\907 "commandString": "set view wireframe"\908 },\909 {\910 "commandString": "set view hidden"\911 },\912 {\913 "commandString": "set view filled"\914 },\915 {\916 "commandString": "set view smooth"\917 },\918 {\919 "commandString": "set sharecell"\920 },\921 {\922 "commandString": "set sharecell on"\923 },\924 {\925 "commandString": "set sharecell off"\926 },\927 {\928 "commandString": "set sharecell toggle"\929 },\930 {\931 "commandString": "set compatible"\932 },\933 {\934 "commandString": "set compatible off"\935 },\936 {\937 "commandString": "set compatible on"\938 },\939 {\940 "commandString": "set compatible dimension"\941 },\942 {\943 "commandString": "set compatible dimension on"\944 },\945 {\946 "commandString": "set compatible dimension off"\947 },\948 {\949 "commandString": "set compatible dimension toggle"\950 },\951 {\952 "commandString": "set compatible mline"\953 },\954 {\955 "commandString": "set compatible mline on"\956 },\957 {\958 "commandString": "set compatible mline off"\959 },\960 {\961 "commandString": "set compatible mline toggle"\962 },\963 {\964 "commandString": "set refbound"\965 },\966 {\967 "commandString": "set refbound on"\968 },\969 {\970 "commandString": "set refbound off"\971 },\972 {\973 "commandString": "set refbound toggle"\974 },\975 {\976 "commandString": "set background"\977 },\978 {\979 "commandString": "set background on"\980 },\981 {\982 "commandString": "set background off"\983 },\984 {\985 "commandString": "set background toggle"\986 },\987 {\988 "commandString": "set xorslot"\989 },\990 {\991 "commandString": "set confirm"\992 },\993 {\994 "commandString": "set confirm on"\995 },\996 {\997 "commandString": "set confirm off"\998 },\999 {\1000 "commandString": "set confirm toggle"\1001 },\1002 {\1003 "commandString": "set savearea"\1004 },\1005 {\1006 "commandString": "set xordynamics"\1007 },\1008 {\1009 "commandString": "set xordynamics on"\1010 },\1011 {\1012 "commandString": "set xordynamics off"\1013 },\1014 {\1015 "commandString": "set xordynamics toggle"\1016 },\1017 {\1018 "commandString": "set rmdebug"\1019 },\1020 {\1021 "commandString": "set printer"\1022 },\1023 {\1024 "commandString": "set units"\1025 },\1026 {\1027 "commandString": "set invisgeom"\1028 },\1029 {\1030 "commandString": "set invisgeom byelement"\1031 },\1032 {\1033 "commandString": "set invisgeom always"\1034 },\1035 {\1036 "commandString": "set invisgeom never"\1037 },\1038 {\1039 "commandString": "set invisgeom query"\1040 },\1041 {\1042 "commandString": "set refleveloverrides"\1043 },\1044 {\1045 "commandString": "set refleveloverrides on"\1046 },\1047 {\1048 "commandString": "set refleveloverrides off"\1049 },\1050 {\1051 "commandString": "set refleveloverrides toggle"\1052 },\1053 {\1054 "commandString": "set displayset"\1055 },\1056 {\1057 "commandString": "set displayset on"\1058 },\1059 {\1060 "commandString": "set displayset off"\1061 },\1062 {\1063 "commandString": "set displayset toggle"\1064 },\1065 {\1066 "commandString": "set tags"\1067 },\1068 {\1069 "commandString": "set tags on"\1070 },\1071 {\1072 "commandString": "set tags off"\1073 },\1074 {\1075 "commandString": "set tags toggle"\1076 },\1077 {\1078 "commandString": "set limits"\1079 },\1080 {\1081 "commandString": "set item"\1082 },\1083 {\1084 "commandString": "set storageunit"\1085 },\1086 {\1087 "commandString": "set uorperstorageunit"\1088 },\1089 {\1090 "commandString": "set meshsmoothangle"\1091 },\1092 {\1093 "commandString": "set markers"\1094 },\1095 {\1096 "commandString": "set markers on"\1097 },\1098 {\1099 "commandString": "set markers off"\1100 },\1101 {\1102 "commandString": "set markers toggle"\1103 },\1104 {\1105 "commandString": "set lod"\1106 },\1107 {\1108 "commandString": "set lod fine"\1109 },\1110 {\1111 "commandString": "set lod medium"\1112 },\1113 {\1114 "commandString": "set lod coarse"\1115 },\1116 {\1117 "commandString": "set backgroundmap"\1118 },\1119 {\1120 "commandString": "set backgroundmap none"\1121 },\1122 {\1123 "commandString": "set backgroundmap street"\1124 },\1125 {\1126 "commandString": "set backgroundmap aerial"\1127 },\1128 {\1129 "commandString": "set backgroundmap hybrid"\1130 },\1131 {\1132 "commandString": "show"\1133 },\1134 {\1135 "commandString": "show header"\1136 },\1137 {\1138 "commandString": "show printer"\1139 },\1140 {\1141 "commandString": "show plotter"\1142 },\1143 {\1144 "commandString": "show reference"\1145 },\1146 {\1147 "commandString": "show library"\1148 },\1149 {\1150 "commandString": "show eof"\1151 },\1152 {\1153 "commandString": "show uors"\1154 },\1155 {\1156 "commandString": "show ae"\1157 },\1158 {\1159 "commandString": "show font"\1160 },\1161 {\1162 "commandString": "show pattern"\1163 },\1164 {\1165 "commandString": "show depth"\1166 },\1167 {\1168 "commandString": "show depth display"\1169 },\1170 {\1171 "commandString": "show depth active"\1172 },\1173 {\1174 "commandString": "show transactions"\1175 },\1176 {\1177 "commandString": "show elmdpool"\1178 },\1179 {\1180 "commandString": "show camera"\1181 },\1182 {\1183 "commandString": "show camera position"\1184 },\1185 {\1186 "commandString": "show camera target"\1187 },\1188 {\1189 "commandString": "show camera lens"\1190 },\1191 {\1192 "commandString": "show keyins"\1193 },\1194 {\1195 "commandString": "show files"\1196 },\1197 {\1198 "commandString": "show dupfiles"\1199 },\1200 {\1201 "commandString": "show levelcaches"\1202 },\1203 {\1204 "commandString": "show startup"\1205 },\1206 {\1207 "commandString": "show configuration"\1208 },\1209 {\1210 "commandString": "show commandtables"\1211 },\1212 {\1213 "commandString": "view"\1214 },\1215 {\1216 "commandString": "view top"\1217 },\1218 {\1219 "commandString": "view bottom"\1220 },\1221 {\1222 "commandString": "view left"\1223 },\1224 {\1225 "commandString": "view right"\1226 },\1227 {\1228 "commandString": "view front"\1229 },\1230 {\1231 "commandString": "view back"\1232 },\1233 {\1234 "commandString": "view iso"\1235 },\1236 {\1237 "commandString": "view rghtiso"\1238 },\1239 {\1240 "commandString": "view on"\1241 },\1242 {\1243 "commandString": "view on 1"\1244 },\1245 {\1246 "commandString": "view on 2"\1247 },\1248 {\1249 "commandString": "view on 3"\1250 },\1251 {\1252 "commandString": "view on 4"\1253 },\1254 {\1255 "commandString": "view on 5"\1256 },\1257 {\1258 "commandString": "view on 6"\1259 },\1260 {\1261 "commandString": "view on 7"\1262 },\1263 {\1264 "commandString": "view on 8"\1265 },\1266 {\1267 "commandString": "view on right"\1268 },\1269 {\1270 "commandString": "view on left"\1271 },\1272 {\1273 "commandString": "view on all"\1274 },\1275 {\1276 "commandString": "view off"\1277 },\1278 {\1279 "commandString": "view off 1"\1280 },\1281 {\1282 "commandString": "view off 2"\1283 },\1284 {\1285 "commandString": "view off 3"\1286 },\1287 {\1288 "commandString": "view off 4"\1289 },\1290 {\1291 "commandString": "view off 5"\1292 },\1293 {\1294 "commandString": "view off 6"\1295 },\1296 {\1297 "commandString": "view off 7"\1298 },\1299 {\1300 "commandString": "view off 8"\1301 },\1302 {\1303 "commandString": "view off right"\1304 },\1305 {\1306 "commandString": "view off left"\1307 },\1308 {\1309 "commandString": "view off all"\1310 },\1311 {\1312 "commandString": "view toggle"\1313 },\1314 {\1315 "commandString": "view toggle 1"\1316 },\1317 {\1318 "commandString": "view toggle 2"\1319 },\1320 {\1321 "commandString": "view toggle 3"\1322 },\1323 {\1324 "commandString": "view toggle 4"\1325 },\1326 {\1327 "commandString": "view toggle 5"\1328 },\1329 {\1330 "commandString": "view toggle 6"\1331 },\1332 {\1333 "commandString": "view toggle 7"\1334 },\1335 {\1336 "commandString": "view toggle 8"\1337 },\1338 {\1339 "commandString": "view toggle right"\1340 },\1341 {\1342 "commandString": "view toggle left"\1343 },\1344 {\1345 "commandString": "view toggle all"\1346 },\1347 {\1348 "commandString": "view image"\1349 },\1350 {\1351 "commandString": "view clear"\1352 },\1353 {\1354 "commandString": "view previous"\1355 },\1356 {\1357 "commandString": "view next"\1358 },\1359 {\1360 "commandString": "view quickscan"\1361 },\1362 {\1363 "commandString": "view quickscan on"\1364 },\1365 {\1366 "commandString": "view quickscan off"\1367 },\1368 {\1369 "commandString": "view quickscan toggle"\1370 },\1371 {\1372 "commandString": "view quickscan occlusion"\1373 },\1374 {\1375 "commandString": "view quickscan occlusion on"\1376 },\1377 {\1378 "commandString": "view quickscan occlusion off"\1379 },\1380 {\1381 "commandString": "view quickscan occlusion toggle"\1382 },\1383 {\1384 "commandString": "view quickscan statistics"\1385 },\1386 {\1387 "commandString": "view quickscan statistics on"\1388 },\1389 {\1390 "commandString": "view quickscan statistics off"\1391 },\1392 {\1393 "commandString": "view quickscan statistics toggle"\1394 },\1395 {\1396 "commandString": "view quickscan npasses"\1397 },\1398 {\1399 "commandString": "view quickscan maxelementspernode"\1400 },\1401 {\1402 "commandString": "view quickscan test"\1403 },\1404 {\1405 "commandString": "view quickscan testlist"\1406 },\1407 {\1408 "commandString": "view quickscan sort"\1409 },\1410 {\1411 "commandString": "view quickscan sort on"\1412 },\1413 {\1414 "commandString": "view quickscan sort off"\1415 },\1416 {\1417 "commandString": "view quickscan sort toggle"\1418 },\1419 {\1420 "commandString": "view quickscan weight"\1421 },\1422 {\1423 "commandString": "view quickscan weight on"\1424 },\1425 {\1426 "commandString": "view quickscan weight off"\1427 },\1428 {\1429 "commandString": "view quickscan weight toggle"\1430 },\1431 {\1432 "commandString": "view quickscan displayselected"\1433 },\1434 {\1435 "commandString": "view quickscan displayselected on"\1436 },\1437 {\1438 "commandString": "view quickscan displayselected off"\1439 },\1440 {\1441 "commandString": "view quickscan displayselected toggle"\1442 },\1443 {\1444 "commandString": "view quickscan displaytoselected"\1445 },\1446 {\1447 "commandString": "view quickscan displaytoselected on"\1448 },\1449 {\1450 "commandString": "view quickscan displaytoselected off"\1451 },\1452 {\1453 "commandString": "view quickscan displaytoselected toggle"\1454 },\1455 {\1456 "commandString": "view quickscan scanstatistics"\1457 },\1458 {\1459 "commandString": "view quickscan nodestatistics"\1460 },\1461 {\1462 "commandString": "view quickscan split"\1463 },\1464 {\1465 "commandString": "view quickscan tree"\1466 },\1467 {\1468 "commandString": "view quickscan debug"\1469 },\1470 {\1471 "commandString": "view set"\1472 },\1473 {\1474 "commandString": "view set model"\1475 },\1476 {\1477 "commandString": "text"\1478 },\1479 {\1480 "commandString": "text on"\1481 },\1482 {\1483 "commandString": "text off"\1484 },\1485 {\1486 "commandString": "text toggle"\1487 },\1488 {\1489 "commandString": "attach"\1490 },\1491 {\1492 "commandString": "attach menu"\1493 },\1494 {\1495 "commandString": "attach library"\1496 },\1497 {\1498 "commandString": "attach reference"\1499 },\1500 {\1501 "commandString": "attach ae"\1502 },\1503 {\1504 "commandString": "attach ae icon"\1505 },\1506 {\1507 "commandString": "attach colortable"\1508 },\1509 {\1510 "commandString": "attach colortable right"\1511 },\1512 {\1513 "commandString": "attach colortable left"\1514 },\1515 {\1516 "commandString": "attach colortable both"\1517 },\1518 {\1519 "commandString": "attach colortable create"\1520 },\1521 {\1522 "commandString": "attach colortable write"\1523 },\1524 {\1525 "commandString": "attach acs"\1526 },\1527 {\1528 "commandString": "attach da"\1529 },\1530 {\1531 "commandString": "attach librarydir"\1532 },\1533 {\1534 "commandString": "mc"\1535 },\1536 {\1537 "commandString": "rotate"\1538 },\1539 {\1540 "commandString": "rotate 3pts"\1541 },\1542 {\1543 "commandString": "rotate vmatrx"\1544 },\1545 {\1546 "commandString": "rotate view"\1547 },\1548 {\1549 "commandString": "rotate view relative"\1550 },\1551 {\1552 "commandString": "rotate view absolute"\1553 },\1554 {\1555 "commandString": "rotate view points"\1556 },\1557 {\1558 "commandString": "rotate view element"\1559 },\1560 {\1561 "commandString": "rotate acs"\1562 },\1563 {\1564 "commandString": "rotate acs relative"\1565 },\1566 {\1567 "commandString": "rotate acs relative default"\1568 },\1569 {\1570 "commandString": "rotate acs absolute"\1571 },\1572 {\1573 "commandString": "rotate acs absolute default"\1574 },\1575 {\1576 "commandString": "rotate acs icon"\1577 },\1578 {\1579 "commandString": "plot"\1580 },\1581 {\1582 "commandString": "plot preview"\1583 },\1584 {\1585 "commandString": "newfile"\1586 },\1587 {\1588 "commandString": "ne"\1589 },\1590 {\1591 "commandString": "place"\1592 },\1593 {\1594 "commandString": "place fence"\1595 },\1596 {\1597 "commandString": "place fence block"\1598 },\1599 {\1600 "commandString": "place fence shape"\1601 },\1602 {\1603 "commandString": "place fence circle"\1604 },\1605 {\1606 "commandString": "place fence fromshape"\1607 },\1608 {\1609 "commandString": "place fence icon"\1610 },\1611 {\1612 "commandString": "place fence view"\1613 },\1614 {\1615 "commandString": "place fence design"\1616 },\1617 {\1618 "commandString": "place fence active"\1619 },\1620 {\1621 "commandString": "place fence allfiles"\1622 },\1623 {\1624 "commandString": "place fence universe"\1625 },\1626 {\1627 "commandString": "place fence element"\1628 },\1629 {\1630 "commandString": "place fence flood"\1631 },\1632 {\1633 "commandString": "place lstring"\1634 },\1635 {\1636 "commandString": "place lstring space"\1637 },\1638 {\1639 "commandString": "place lstring stream"\1640 },\1641 {\1642 "commandString": "place lstring stream auto"\1643 },\1644 {\1645 "commandString": "place lstring point"\1646 },\1647 {\1648 "commandString": "place circle"\1649 },\1650 {\1651 "commandString": "place circle center"\1652 },\1653 {\1654 "commandString": "place circle edge"\1655 },\1656 {\1657 "commandString": "place circle radius"\1658 },\1659 {\1660 "commandString": "place circle isometric"\1661 },\1662 {\1663 "commandString": "place block"\1664 },\1665 {\1666 "commandString": "place block orthogonal"\1667 },\1668 {\1669 "commandString": "place block rotated"\1670 },\1671 {\1672 "commandString": "place block isometric"\1673 },\1674 {\1675 "commandString": "place block icon"\1676 },\1677 {\1678 "commandString": "place curve"\1679 },\1680 {\1681 "commandString": "place curve space"\1682 },\1683 {\1684 "commandString": "place curve stream"\1685 },\1686 {\1687 "commandString": "place curve point"\1688 },\1689 {\1690 "commandString": "place curve picon"\1691 },\1692 {\1693 "commandString": "place line"\1694 },\1695 {\1696 "commandString": "place line angle"\1697 },\1698 {\1699 "commandString": "place ellipse"\1700 },\1701 {\1702 "commandString": "place ellipse center"\1703 },\1704 {\1705 "commandString": "place ellipse edge"\1706 },\1707 {\1708 "commandString": "place ellipse half"\1709 },\1710 {\1711 "commandString": "place ellipse quarter"\1712 },\1713 {\1714 "commandString": "place ellipse fourth"\1715 },\1716 {\1717 "commandString": "place arc"\1718 },\1719 {\1720 "commandString": "place arc center"\1721 },\1722 {\1723 "commandString": "place arc edge"\1724 },\1725 {\1726 "commandString": "place arc radius"\1727 },\1728 {\1729 "commandString": "place arc tangent"\1730 },\1731 {\1732 "commandString": "place shape"\1733 },\1734 {\1735 "commandString": "place shape orthogonal"\1736 },\1737 {\1738 "commandString": "place shape icon"\1739 },\1740 {\1741 "commandString": "place cylinder"\1742 },\1743 {\1744 "commandString": "place cylinder right"\1745 },\1746 {\1747 "commandString": "place cylinder radius"\1748 },\1749 {\1750 "commandString": "place cylinder capped"\1751 },\1752 {\1753 "commandString": "place cylinder uncapped"\1754 },\1755 {\1756 "commandString": "place cylinder skewed"\1757 },\1758 {\1759 "commandString": "place cone"\1760 },\1761 {\1762 "commandString": "place cone right"\1763 },\1764 {\1765 "commandString": "place cone radius"\1766 },\1767 {\1768 "commandString": "place cone skewed"\1769 },\1770 {\1771 "commandString": "place cell"\1772 },\1773 {\1774 "commandString": "place cell absolute"\1775 },\1776 {\1777 "commandString": "place cell absolute tmatrx"\1778 },\1779 {\1780 "commandString": "place cell relative"\1781 },\1782 {\1783 "commandString": "place cell relative tmatrx"\1784 },\1785 {\1786 "commandString": "place cell interactive"\1787 },\1788 {\1789 "commandString": "place cell interactive absolute"\1790 },\1791 {\1792 "commandString": "place cell interactive relative"\1793 },\1794 {\1795 "commandString": "place cell icon"\1796 },\1797 {\1798 "commandString": "place node"\1799 },\1800 {\1801 "commandString": "place node view"\1802 },\1803 {\1804 "commandString": "place node tmatrix"\1805 },\1806 {\1807 "commandString": "place node icon"\1808 },\1809 {\1810 "commandString": "place terminator"\1811 },\1812 {\1813 "commandString": "place parabola"\1814 },\1815 {\1816 "commandString": "place parabola nomodify"\1817 },\1818 {\1819 "commandString": "place parabola modify"\1820 },\1821 {\1822 "commandString": "place parabola horizontal"\1823 },\1824 {\1825 "commandString": "place parabola horizontal nomodify"\1826 },\1827 {\1828 "commandString": "place parabola horizontal modify"\1829 },\1830 {\1831 "commandString": "place parabola icon"\1832 },\1833 {\1834 "commandString": "place polygon"\1835 },\1836 {\1837 "commandString": "place polygon inscribed"\1838 },\1839 {\1840 "commandString": "place polygon circumscribed"\1841 },\1842 {\1843 "commandString": "place polygon edge"\1844 },\1845 {\1846 "commandString": "place polygon icon"\1847 },\1848 {\1849 "commandString": "place legend"\1850 },\1851 {\1852 "commandString": "place icon"\1853 },\1854 {\1855 "commandString": "active"\1856 },\1857 {\1858 "commandString": "active color"\1859 },\1860 {\1861 "commandString": "active color white"\1862 },\1863 {\1864 "commandString": "active color blue"\1865 },\1866 {\1867 "commandString": "active color green"\1868 },\1869 {\1870 "commandString": "active color red"\1871 },\1872 {\1873 "commandString": "active color yellow"\1874 },\1875 {\1876 "commandString": "active color violet"\1877 },\1878 {\1879 "commandString": "active color orange"\1880 },\1881 {\1882 "commandString": "active color cselect"\1883 },\1884 {\1885 "commandString": "active color outline"\1886 },\1887 {\1888 "commandString": "active color bylevel"\1889 },\1890 {\1891 "commandString": "active color bycell"\1892 },\1893 {\1894 "commandString": "active style"\1895 },\1896 {\1897 "commandString": "active style cselect"\1898 },\1899 {\1900 "commandString": "active style bylevel"\1901 },\1902 {\1903 "commandString": "active style bycell"\1904 },\1905 {\1906 "commandString": "active weight"\1907 },\1908 {\1909 "commandString": "active weight cselect"\1910 },\1911 {\1912 "commandString": "active weight bylevel"\1913 },\1914 {\1915 "commandString": "active weight bycell"\1916 },\1917 {\1918 "commandString": "active level"\1919 },\1920 {\1921 "commandString": "active level filter"\1922 },\1923 {\1924 "commandString": "active angle"\1925 },\1926 {\1927 "commandString": "active angle pt2"\1928 },\1929 {\1930 "commandString": "active angle pt3"\1931 },\1932 {\1933 "commandString": "active font"\1934 },\1935 {\1936 "commandString": "active origin"\1937 },\1938 {\1939 "commandString": "active origin monument"\1940 },\1941 {\1942 "commandString": "active origin center"\1943 },\1944 {\1945 "commandString": "active gridunit"\1946 },\1947 {\1948 "commandString": "active gridref"\1949 },\1950 {\1951 "commandString": "active txsize"\1952 },\1953 {\1954 "commandString": "active txheight"\1955 },\1956 {\1957 "commandString": "active txheight pt2"\1958 },\1959 {\1960 "commandString": "active txwidth"\1961 },\1962 {\1963 "commandString": "active txwidth pt2"\1964 },\1965 {\1966 "commandString": "active scale"\1967 },\1968 {\1969 "commandString": "active scale distance"\1970 },\1971 {\1972 "commandString": "active xscale"\1973 },\1974 {\1975 "commandString": "active yscale"\1976 },\1977 {\1978 "commandString": "active zscale"\1979 },\1980 {\1981 "commandString": "active unitround"\1982 },\1983 {\1984 "commandString": "active txj"\1985 },\1986 {\1987 "commandString": "active txj lt"\1988 },\1989 {\1990 "commandString": "active txj lc"\1991 },\1992 {\1993 "commandString": "active txj lb"\1994 },\1995 {\1996 "commandString": "active txj ct"\1997 },\1998 {\1999 "commandString": "active txj cc"\2000 },\2001 {\2002 "commandString": "active txj cb"\2003 },\2004 {\2005 "commandString": "active txj rt"\2006 },\2007 {\2008 "commandString": "active txj rc"\2009 },\2010 {\2011 "commandString": "active txj rb"\2012 },\2013 {\2014 "commandString": "active tnj"\2015 },\2016 {\2017 "commandString": "active tnj lt"\2018 },\2019 {\2020 "commandString": "active tnj lc"\2021 },\2022 {\2023 "commandString": "active tnj lb"\2024 },\2025 {\2026 "commandString": "active tnj lmt"\2027 },\2028 {\2029 "commandString": "active tnj lmc"\2030 },\2031 {\2032 "commandString": "active tnj lmb"\2033 },\2034 {\2035 "commandString": "active tnj ct"\2036 },\2037 {\2038 "commandString": "active tnj cc"\2039 },\2040 {\2041 "commandString": "active tnj cb"\2042 },\2043 {\2044 "commandString": "active tnj rmt"\2045 },\2046 {\2047 "commandString": "active tnj rmc"\2048 },\2049 {\2050 "commandString": "active tnj rmb"\2051 },\2052 {\2053 "commandString": "active tnj rt"\2054 },\2055 {\2056 "commandString": "active tnj rc"\2057 },\2058 {\2059 "commandString": "active tnj rb"\2060 },\2061 {\2062 "commandString": "active zdepth"\2063 },\2064 {\2065 "commandString": "active zdepth absolute"\2066 },\2067 {\2068 "commandString": "active zdepth relative"\2069 },\2070 {\2071 "commandString": "active cell"\2072 },\2073 {\2074 "commandString": "active line"\2075 },\2076 {\2077 "commandString": "active line length"\2078 },\2079 {\2080 "commandString": "active line space"\2081 },\2082 {\2083 "commandString": "active terminator"\2084 },\2085 {\2086 "commandString": "active tscale"\2087 },\2088 {\2089 "commandString": "active node"\2090 },\2091 {\2092 "commandString": "active tag"\2093 },\2094 {\2095 "commandString": "active tab"\2096 },\2097 {\2098 "commandString": "active stream"\2099 },\2100 {\2101 "commandString": "active stream delta"\2102 },\2103 {\2104 "commandString": "active stream tolerance"\2105 },\2106 {\2107 "commandString": "active stream angle"\2108 },\2109 {\2110 "commandString": "active stream area"\2111 },\2112 {\2113 "commandString": "active point"\2114 },\2115 {\2116 "commandString": "active keypnt"\2117 },\2118 {\2119 "commandString": "active pattern"\2120 },\2121 {\2122 "commandString": "active pattern delta"\2123 },\2124 {\2125 "commandString": "active pattern angle"\2126 },\2127 {\2128 "commandString": "active pattern scale"\2129 },\2130 {\2131 "commandString": "active pattern cell"\2132 },\2133 {\2134 "commandString": "active pattern match"\2135 },\2136 {\2137 "commandString": "active pattern tolerance"\2138 },\2139 {\2140 "commandString": "active area"\2141 },\2142 {\2143 "commandString": "active area solid"\2144 },\2145 {\2146 "commandString": "active area hole"\2147 },\2148 {\2149 "commandString": "active area toggle"\2150 },\2151 {\2152 "commandString": "active linkage"\2153 },\2154 {\2155 "commandString": "active axis"\2156 },\2157 {\2158 "commandString": "active class"\2159 },\2160 {\2161 "commandString": "active class primary"\2162 },\2163 {\2164 "commandString": "active class primary cselect"\2165 },\2166 {\2167 "commandString": "active class construction"\2168 },\2169 {\2170 "commandString": "active class construction cselect"\2171 },\2172 {\2173 "commandString": "active linewidth"\2174 },\2175 {\2176 "commandString": "active axorigin"\2177 },\2178 {\2179 "commandString": "active review"\2180 },\2181 {\2182 "commandString": "active rcell"\2183 },\2184 {\2185 "commandString": "active database"\2186 },\2187 {\2188 "commandString": "active report"\2189 },\2190 {\2191 "commandString": "active text"\2192 },\2193 {\2194 "commandString": "active capmode"\2195 },\2196 {\2197 "commandString": "active capmode on"\2198 },\2199 {\2200 "commandString": "active capmode off"\2201 },\2202 {\2203 "commandString": "active capmode toggle"\2204 },\2205 {\2206 "commandString": "active gridmode"\2207 },\2208 {\2209 "commandString": "active gridmode orthogonal"\2210 },\2211 {\2212 "commandString": "active gridmode offset"\2213 },\2214 {\2215 "commandString": "active gridmode isometric"\2216 },\2217 {\2218 "commandString": "active gridmode toggle"\2219 },\2220 {\2221 "commandString": "active gridratio"\2222 },\2223 {\2224 "commandString": "active datype"\2225 },\2226 {\2227 "commandString": "active background"\2228 },\2229 {\2230 "commandString": "active fill"\2231 },\2232 {\2233 "commandString": "active fill on"\2234 },\2235 {\2236 "commandString": "active fill off"\2237 },\2238 {\2239 "commandString": "active fill toggle"\2240 },\2241 {\2242 "commandString": "active entity"\2243 },\2244 {\2245 "commandString": "active fillcolor"\2246 },\2247 {\2248 "commandString": "active fillcolor white"\2249 },\2250 {\2251 "commandString": "active fillcolor blue"\2252 },\2253 {\2254 "commandString": "active fillcolor green"\2255 },\2256 {\2257 "commandString": "active fillcolor red"\2258 },\2259 {\2260 "commandString": "active fillcolor yellow"\2261 },\2262 {\2263 "commandString": "active fillcolor violet"\2264 },\2265 {\2266 "commandString": "active fillcolor orange"\2267 },\2268 {\2269 "commandString": "active fillcolor cselect"\2270 },\2271 {\2272 "commandString": "active fillcolor outline"\2273 },\2274 {\2275 "commandString": "active fillcolor bylevel"\2276 },\2277 {\2278 "commandString": "active fillcolor bycell"\2279 },\2280 {\2281 "commandString": "active txslant"\2282 },\2283 {\2284 "commandString": "active txcharspace"\2285 },\2286 {\2287 "commandString": "active txunderline"\2288 },\2289 {\2290 "commandString": "active txunderline on"\2291 },\2292 {\2293 "commandString": "active txunderline off"\2294 },\2295 {\2296 "commandString": "active txunderline toggle"\2297 },\2298 {\2299 "commandString": "active txvertical"\2300 },\2301 {\2302 "commandString": "active txvertical on"\2303 },\2304 {\2305 "commandString": "active txvertical off"\2306 },\2307 {\2308 "commandString": "active txvertical toggle"\2309 },\2310 {\2311 "commandString": "active linestylescale"\2312 },\2313 {\2314 "commandString": "active symbology"\2315 },\2316 {\2317 "commandString": "active symbology bylevel"\2318 },\2319 {\2320 "commandString": "active symbology bycell"\2321 },\2322 {\2323 "commandString": "active gridorientation"\2324 },\2325 {\2326 "commandString": "active gridorientation view"\2327 },\2328 {\2329 "commandString": "active gridorientation top"\2330 },\2331 {\2332 "commandString": "active gridorientation right"\2333 },\2334 {\2335 "commandString": "active gridorientation front"\2336 },\2337 {\2338 "commandString": "active gridorientation acs"\2339 },\2340 {\2341 "commandString": "active gridangle"\2342 },\2343 {\2344 "commandString": "active unitratio"\2345 },\2346 {\2347 "commandString": "active priority"\2348 },\2349 {\2350 "commandString": "active priority cselect"\2351 },\2352 {\2353 "commandString": "active priormode"\2354 },\2355 {\2356 "commandString": "active transparency"\2357 },\2358 {\2359 "commandString": "active transparency cselect"\2360 },\2361 {\2362 "commandString": "active mlinestylescale"\2363 },\2364 {\2365 "commandString": "depth"\2366 },\2367 {\2368 "commandString": "depth display"\2369 },\2370 {\2371 "commandString": "depth display primitive"\2372 },\2373 {\2374 "commandString": "depth display interactive"\2375 },\2376 {\2377 "commandString": "depth active"\2378 },\2379 {\2380 "commandString": "depth active primitive"\2381 },\2382 {\2383 "commandString": "depth active interactive"\2384 },\2385 {\2386 "commandString": "accusnap"\2387 },\2388 {\2389 "commandString": "accusnap toggle"\2390 },\2391 {\2392 "commandString": "accusnap suspend"\2393 },\2394 {\2395 "commandString": "accusnap on"\2396 },\2397 {\2398 "commandString": "accusnap off"\2399 },\2400 {\2401 "commandString": "accusnap autolocate"\2402 },\2403 {\2404 "commandString": "accusnap autolocate toggle"\2405 },\2406 {\2407 "commandString": "accusnap autolocate on"\2408 },\2409 {\2410 "commandString": "accusnap autolocate off"\2411 },\2412 {\2413 "commandString": "accusnap resume"\2414 },\2415 {\2416 "commandString": "accusnap enablefortool"\2417 },\2418 {\2419 "commandString": "buttonaction"\2420 },\2421 {\2422 "commandString": "buttonaction data"\2423 },\2424 {\2425 "commandString": "buttonaction reset"\2426 },\2427 {\2428 "commandString": "buttonaction tentative"\2429 },\2430 {\2431 "commandString": "buttonaction 3ddata"\2432 },\2433 {\2434 "commandString": "buttonaction 3dtentative"\2435 },\2436 {\2437 "commandString": "save"\2438 },\2439 {\2440 "commandString": "save function key"\2441 },\2442 {\2443 "commandString": "save view"\2444 },\2445 {\2446 "commandString": "save acs"\2447 },\2448 {\2449 "commandString": "save image"\2450 },\2451 {\2452 "commandString": "save design"\2453 },\2454 {\2455 "commandString": "save design auto"\2456 },\2457 {\2458 "commandString": "save design query"\2459 },\2460 {\2461 "commandString": "save as"\2462 },\2463 {\2464 "commandString": "save as dwg"\2465 },\2466 {\2467 "commandString": "save as dxf"\2468 },\2469 {\2470 "commandString": "save as v8"\2471 },\2472 {\2473 "commandString": "save as v7"\2474 },\2475 {\2476 "commandString": "copy"\2477 },\2478 {\2479 "commandString": "copy view"\2480 },\2481 {\2482 "commandString": "copy parallel"\2483 },\2484 {\2485 "commandString": "copy parallel distance"\2486 },\2487 {\2488 "commandString": "copy parallel keyin"\2489 },\2490 {\2491 "commandString": "copy ed"\2492 },\2493 {\2494 "commandString": "copy acs"\2495 },\2496 {\2497 "commandString": "align"\2498 },\2499 {\2500 "commandString": "point"\2501 },\2502 {\2503 "commandString": "point absolute"\2504 },\2505 {\2506 "commandString": "point distance"\2507 },\2508 {\2509 "commandString": "point delta"\2510 },\2511 {\2512 "commandString": "point vdelta"\2513 },\2514 {\2515 "commandString": "point acsabsolute"\2516 },\2517 {\2518 "commandString": "point acsdelta"\2519 },\2520 {\2521 "commandString": "point default"\2522 },\2523 {\2524 "commandString": "delete"\2525 },\2526 {\2527 "commandString": "delete element"\2528 },\2529 {\2530 "commandString": "delete view"\2531 },\2532 {\2533 "commandString": "delete cell"\2534 },\2535 {\2536 "commandString": "delete acs"\2537 },\2538 {\2539 "commandString": "delete scdefs"\2540 },\2541 {\2542 "commandString": "delete scdefs anonymous"\2543 },\2544 {\2545 "commandString": "delete scdefs named"\2546 },\2547 {\2548 "commandString": "delete scdefs all"\2549 },\2550 {\2551 "commandString": "delete unused"\2552 },\2553 {\2554 "commandString": "delete unused linestyles"\2555 },\2556 {\2557 "commandString": "delete unused textstyles"\2558 },\2559 {\2560 "commandString": "delete unused dimstyles"\2561 },\2562 {\2563 "commandString": "delete unused fonts"\2564 },\2565 {\2566 "commandString": "delete unused levels"\2567 },\2568 {\2569 "commandString": "delete unused leveltables"\2570 },\2571 {\2572 "commandString": "delete unused leveltables all"\2573 },\2574 {\2575 "commandString": "delete unused leveltables primary"\2576 },\2577 {\2578 "commandString": "delete unused leveltables nested"\2579 },\2580 {\2581 "commandString": "delete unused mlinestyles"\2582 },\2583 {\2584 "commandString": "delete unused elementtemplates"\2585 },\2586 {\2587 "commandString": "lock"\2588 },\2589 {\2590 "commandString": "lock snap"\2591 },\2592 {\2593 "commandString": "lock snap on"\2594 },\2595 {\2596 "commandString": "lock snap off"\2597 },\2598 {\2599 "commandString": "lock snap project"\2600 },\2601 {\2602 "commandString": "lock snap keypoint"\2603 },\2604 {\2605 "commandString": "lock snap construction"\2606 },\2607 {\2608 "commandString": "lock snap construction on"\2609 },\2610 {\2611 "commandString": "lock snap construction off"\2612 },\2613 {\2614 "commandString": "lock snap construction toggle"\2615 },\2616 {\2617 "commandString": "lock snap acs"\2618 },\2619 {\2620 "commandString": "lock snap acs on"\2621 },\2622 {\2623 "commandString": "lock snap acs off"\2624 },\2625 {\2626 "commandString": "lock snap acs toggle"\2627 },\2628 {\2629 "commandString": "lock snap intersection"\2630 },\2631 {\2632 "commandString": "lock snap nearest"\2633 },\2634 {\2635 "commandString": "lock snap midpoint"\2636 },\2637 {\2638 "commandString": "lock snap center"\2639 },\2640 {\2641 "commandString": "lock snap origin"\2642 },\2643 {\2644 "commandString": "lock snap bisector"\2645 },\2646 {\2647 "commandString": "lock snap multisnap1"\2648 },\2649 {\2650 "commandString": "lock snap multisnap2"\2651 },\2652 {\2653 "commandString": "lock snap multisnap3"\2654 },\2655 {\2656 "commandString": "lock snap perpendicular"\2657 },\2658 {\2659 "commandString": "lock snap tangency"\2660 },\2661 {\2662 "commandString": "lock snap pttangent"\2663 },\2664 {\2665 "commandString": "lock snap ptperpendicular"\2666 },\2667 {\2668 "commandString": "lock snap parallel"\2669 },\2670 {\2671 "commandString": "lock snap ptthrough"\2672 },\2673 {\2674 "commandString": "lock snap pointon"\2675 },\2676 {\2677 "commandString": "lock grid"\2678 },\2679 {\2680 "commandString": "lock grid on"\2681 },\2682 {\2683 "commandString": "lock grid off"\2684 },\2685 {\2686 "commandString": "lock grid toggle"\2687 },\2688 {\2689 "commandString": "lock unit"\2690 },\2691 {\2692 "commandString": "lock unit on"\2693 },\2694 {\2695 "commandString": "lock unit off"\2696 },\2697 {\2698 "commandString": "lock unit toggle"\2699 },\2700 {\2701 "commandString": "lock angle"\2702 },\2703 {\2704 "commandString": "lock angle on"\2705 },\2706 {\2707 "commandString": "lock angle off"\2708 },\2709 {\2710 "commandString": "lock angle toggle"\2711 },\2712 {\2713 "commandString": "lock axis"\2714 },\2715 {\2716 "commandString": "lock axis on"\2717 },\2718 {\2719 "commandString": "lock axis off"\2720 },\2721 {\2722 "commandString": "lock axis toggle"\2723 },\2724 {\2725 "commandString": "lock scale"\2726 },\2727 {\2728 "commandString": "lock scale on"\2729 },\2730 {\2731 "commandString": "lock scale off"\2732 },\2733 {\2734 "commandString": "lock scale toggle"\2735 },\2736 {\2737 "commandString": "lock ggroup"\2738 },\2739 {\2740 "commandString": "lock ggroup on"\2741 },\2742 {\2743 "commandString": "lock ggroup off"\2744 },\2745 {\2746 "commandString": "lock ggroup toggle"\2747 },\2748 {\2749 "commandString": "lock level"\2750 },\2751 {\2752 "commandString": "lock level on"\2753 },\2754 {\2755 "commandString": "lock level off"\2756 },\2757 {\2758 "commandString": "lock level toggle"\2759 },\2760 {\2761 "commandString": "lock fence"\2762 },\2763 {\2764 "commandString": "lock fence overlap"\2765 },\2766 {\2767 "commandString": "lock fence inside"\2768 },\2769 {\2770 "commandString": "lock fence clip"\2771 },\2772 {\2773 "commandString": "lock fence void"\2774 },\2775 {\2776 "commandString": "lock fence void overlap"\2777 },\2778 {\2779 "commandString": "lock fence void outside"\2780 },\2781 {\2782 "commandString": "lock fence void clip"\2783 },\2784 {\2785 "commandString": "lock cellstretch"\2786 },\2787 {\2788 "commandString": "lock cellstretch on"\2789 },\2790 {\2791 "commandString": "lock cellstretch off"\2792 },\2793 {\2794 "commandString": "lock cellstretch toggle"\2795 },\2796 {\2797 "commandString": "lock acs"\2798 },\2799 {\2800 "commandString": "lock acs on"\2801 },\2802 {\2803 "commandString": "lock acs off"\2804 },\2805 {\2806 "commandString": "lock acs toggle"\2807 },\2808 {\2809 "commandString": "lock construction"\2810 },\2811 {\2812 "commandString": "lock construction on"\2813 },\2814 {\2815 "commandString": "lock construction off"\2816 },\2817 {\2818 "commandString": "lock construction toggle"\2819 },\2820 {\2821 "commandString": "lock isometric"\2822 },\2823 {\2824 "commandString": "lock isometric on"\2825 },\2826 {\2827 "commandString": "lock isometric off"\2828 },\2829 {\2830 "commandString": "lock isometric toggle"\2831 },\2832 {\2833 "commandString": "lock association"\2834 },\2835 {\2836 "commandString": "lock association on"\2837 },\2838 {\2839 "commandString": "lock association off"\2840 },\2841 {\2842 "commandString": "lock association toggle"\2843 },\2844 {\2845 "commandString": "lock depth"\2846 },\2847 {\2848 "commandString": "lock depth on"\2849 },\2850 {\2851 "commandString": "lock depth off"\2852 },\2853 {\2854 "commandString": "lock depth toggle"\2855 },\2856 {\2857 "commandString": "lock acsperpendicular"\2858 },\2859 {\2860 "commandString": "lock acsperpendicular on"\2861 },\2862 {\2863 "commandString": "lock acsperpendicular off"\2864 },\2865 {\2866 "commandString": "lock acsperpendicular toggle"\2867 },\2868 {\2869 "commandString": "lock useannotationscale"\2870 },\2871 {\2872 "commandString": "lock useannotationscale on"\2873 },\2874 {\2875 "commandString": "lock useannotationscale off"\2876 },\2877 {\2878 "commandString": "lock useannotationscale toggle"\2879 },\2880 {\2881 "commandString": "lock acscontext"\2882 },\2883 {\2884 "commandString": "lock acscontext on"\2885 },\2886 {\2887 "commandString": "lock acscontext off"\2888 },\2889 {\2890 "commandString": "lock acscontext toggle"\2891 },\2892 {\2893 "commandString": "lock templateassociation"\2894 },\2895 {\2896 "commandString": "lock templateassociation on"\2897 },\2898 {\2899 "commandString": "lock templateassociation off"\2900 },\2901 {\2902 "commandString": "lock templateassociation toggle"\2903 },\2904 {\2905 "commandString": "change"\2906 },\2907 {\2908 "commandString": "change color"\2909 },\2910 {\2911 "commandString": "change color element"\2912 },\2913 {\2914 "commandString": "change color fill"\2915 },\2916 {\2917 "commandString": "change color outline"\2918 },\2919 {\2920 "commandString": "change style"\2921 },\2922 {\2923 "commandString": "change weight"\2924 },\2925 {\2926 "commandString": "change symbology"\2927 },\2928 {\2929 "commandString": "change area"\2930 },\2931 {\2932 "commandString": "change fill"\2933 },\2934 {\2935 "commandString": "change level"\2936 },\2937 {\2938 "commandString": "change class"\2939 },\2940 {\2941 "commandString": "change lock"\2942 },\2943 {\2944 "commandString": "change unlock"\2945 },\2946 {\2947 "commandString": "change mline"\2948 },\2949 {\2950 "commandString": "change transparency"\2951 },\2952 {\2953 "commandString": "change priority"\2954 },\2955 {\2956 "commandString": "change displaystyle"\2957 },\2958 {\2959 "commandString": "construct"\2960 },\2961 {\2962 "commandString": "construct bisector"\2963 },\2964 {\2965 "commandString": "construct bisector angle"\2966 },\2967 {\2968 "commandString": "construct bisector line"\2969 },\2970 {\2971 "commandString": "construct line"\2972 },\2973 {\2974 "commandString": "construct line aa"\2975 },\2976 {\2977 "commandString": "construct line aa 1"\2978 },\2979 {\2980 "commandString": "construct line aa 2"\2981 },\2982 {\2983 "commandString": "construct line aa 2 default"\2984 },\2985 {\2986 "commandString": "construct line aa 3"\2987 },\2988 {\2989 "commandString": "construct line aa 4"\2990 },\2991 {\2992 "commandString": "construct line aa 4 default"\2993 },\2994 {\2995 "commandString": "construct line aa icon"\2996 },\2997 {\2998 "commandString": "construct line minimum"\2999 },\3000 {\3001 "commandString": "construct tangent"\3002 },\3003 {\3004 "commandString": "construct tangent from"\3005 },\3006 {\3007 "commandString": "construct tangent to"\3008 },\3009 {\3010 "commandString": "construct tangent circle"\3011 },\3012 {\3013 "commandString": "construct tangent circle 1"\3014 },\3015 {\3016 "commandString": "construct tangent circle 3"\3017 },\3018 {\3019 "commandString": "construct tangent between"\3020 },\3021 {\3022 "commandString": "construct tangent perpendicular"\3023 },\3024 {\3025 "commandString": "construct tangent arc"\3026 },\3027 {\3028 "commandString": "construct tangent arc 1"\3029 },\3030 {\3031 "commandString": "construct tangent arc 3"\3032 },\3033 {\3034 "commandString": "construct perpendicular"\3035 },\3036 {\3037 "commandString": "construct perpendicular from"\3038 },\3039 {\3040 "commandString": "construct perpendicular to"\3041 },\3042 {\3043 "commandString": "filedesign"\3044 },\3045 {\3046 "commandString": "modify"\3047 },\3048 {\3049 "commandString": "modify fence"\3050 },\3051 {\3052 "commandString": "modify fence icon"\3053 },\3054 {\3055 "commandString": "modify arc"\3056 },\3057 {\3058 "commandString": "modify arc radius"\3059 },\3060 {\3061 "commandString": "modify arc angle"\3062 },\3063 {\3064 "commandString": "modify arc axis"\3065 },\3066 {\3067 "commandString": "compress"\3068 },\3069 {\3070 "commandString": "compress design"\3071 },\3072 {\3073 "commandString": "compress design confirm"\3074 },\3075 {\3076 "commandString": "compress design includerefs"\3077 },\3078 {\3079 "commandString": "compress library"\3080 },\3081 {\3082 "commandString": "fence"\3083 },\3084 {\3085 "commandString": "fence delete"\3086 },\3087 {\3088 "commandString": "fence change"\3089 },\3090 {\3091 "commandString": "fence change color"\3092 },\3093 {\3094 "commandString": "fence change style"\3095 },\3096 {\3097 "commandString": "fence change weight"\3098 },\3099 {\3100 "commandString": "fence change symbology"\3101 },\3102 {\3103 "commandString": "fence change area"\3104 },\3105 {\3106 "commandString": "fence change level"\3107 },\3108 {\3109 "commandString": "fence change class"\3110 },\3111 {\3112 "commandString": "fence change lock"\3113 },\3114 {\3115 "commandString": "fence change unlock"\3116 },\3117 {\3118 "commandString": "fence change transparency"\3119 },\3120 {\3121 "commandString": "fence change priority"\3122 },\3123 {\3124 "commandString": "fence report"\3125 },\3126 {\3127 "commandString": "fence attach"\3128 },\3129 {\3130 "commandString": "fence detach"\3131 },\3132 {\3133 "commandString": "fence wset"\3134 },\3135 {\3136 "commandString": "fence wset add"\3137 },\3138 {\3139 "commandString": "fence wset copy"\3140 },\3141 {\3142 "commandString": "fence file"\3143 },\3144 {\3145 "commandString": "fence separate"\3146 },\3147 {\3148 "commandString": "fence load"\3149 },\3150 {\3151 "commandString": "fence surface"\3152 },\3153 {\3154 "commandString": "fence surface projection"\3155 },\3156 {\3157 "commandString": "fence surface revolution"\3158 },\3159 {\3160 "commandString": "fence surface revolution default"\3161 },\3162 {\3163 "commandString": "fence freeze"\3164 },\3165 {\3166 "commandString": "fence thaw"\3167 },\3168 {\3169 "commandString": "fence named"\3170 },\3171 {\3172 "commandString": "fence named attach"\3173 },\3174 {\3175 "commandString": "fence named save"\3176 },\3177 {\3178 "commandString": "fence named delete"\3179 },\3180 {\3181 "commandString": "fence copy"\3182 },\3183 {\3184 "commandString": "fence copy tofile"\3185 },\3186 {\3187 "commandString": "untitledfile"\3188 },\3189 {\3190 "commandString": "pause"\3191 },\3192 {\3193 "commandString": "selview"\3194 },\3195 {\3196 "commandString": "fillet"\3197 },\3198 {\3199 "commandString": "fillet single"\3200 },\3201 {\3202 "commandString": "fillet modify"\3203 },\3204 {\3205 "commandString": "fillet nomodify"\3206 },\3207 {\3208 "commandString": "fillet icon"\3209 },\3210 {\3211 "commandString": "noecho"\3212 },\3213 {\3214 "commandString": "echo"\3215 },\3216 {\3217 "commandString": "include"\3218 },\3219 {\3220 "commandString": "edit"\3221 },\3222 {\3223 "commandString": "edit ae"\3224 },\3225 {\3226 "commandString": "reference"\3227 },\3228 {\3229 "commandString": "reference rotate"\3230 },\3231 {\3232 "commandString": "reference rotate angle"\3233 },\3234 {\3235 "commandString": "reference rotate points"\3236 },\3237 {\3238 "commandString": "reference scale"\3239 },\3240 {\3241 "commandString": "reference scale factor"\3242 },\3243 {\3244 "commandString": "reference scale absolute"\3245 },\3246 {\3247 "commandString": "reference scale points"\3248 },\3249 {\3250 "commandString": "reference move"\3251 },\3252 {\3253 "commandString": "reference detach"\3254 },\3255 {\3256 "commandString": "reference levels"\3257 },\3258 {\3259 "commandString": "reference levels on"\3260 },\3261 {\3262 "commandString": "reference levels off"\3263 },\3264 {\3265 "commandString": "reference levels toggle"\3266 },\3267 {\3268 "commandString": "reference snap"\3269 },\3270 {\3271 "commandString": "reference snap on"\3272 },\3273 {\3274 "commandString": "reference snap off"\3275 },\3276 {\3277 "commandString": "reference snap toggle"\3278 },\3279 {\3280 "commandString": "reference locate"\3281 },\3282 {\3283 "commandString": "reference locate on"\3284 },\3285 {\3286 "commandString": "reference locate off"\3287 },\3288 {\3289 "commandString": "reference locate toggle"\3290 },\3291 {\3292 "commandString": "reference display"\3293 },\3294 {\3295 "commandString": "reference display on"\3296 },\3297 {\3298 "commandString": "reference display off"\3299 },\3300 {\3301 "commandString": "reference display toggle"\3302 },\3303 {\3304 "commandString": "reference clip"\3305 },\3306 {\3307 "commandString": "reference clip boundary"\3308 },\3309 {\3310 "commandString": "reference clip front"\3311 },\3312 {\3313 "commandString": "reference clip back"\3314 },\3315 {\3316 "commandString": "reference clip mask"\3317 },\3318 {\3319 "commandString": "reference clip rotate"\3320 },\3321 {\3322 "commandString": "reference clip rotate on"\3323 },\3324 {\3325 "commandString": "reference clip rotate off"\3326 },\3327 {\3328 "commandString": "reference clip rotate toggle"\3329 },\3330 {\3331 "commandString": "reference clip delete"\3332 },\3333 {\3334 "commandString": "reference clip forcedelete"\3335 },\3336 {\3337 "commandString": "reference clip restoredefault"\3338 },\3339 {\3340 "commandString": "reference attach"\3341 },\3342 {\3343 "commandString": "reference attach default"\3344 },\3345 {\3346 "commandString": "reference mirror"\3347 },\3348 {\3349 "commandString": "reference mirror horizontal"\3350 },\3351 {\3352 "commandString": "reference mirror vertical"\3353 },\3354 {\3355 "commandString": "reference reload"\3356 },\3357 {\3358 "commandString": "reference reload force"\3359 },\3360 {\3361 "commandString": "reference fit"\3362 },\3363 {\3364 "commandString": "reference update"\3365 },\3366 {\3367 "commandString": "reference copy"\3368 },\3369 {\3370 "commandString": "reference copy folded"\3371 },\3372 {\3373 "commandString": "reference copy folded horizontal"\3374 },\3375 {\3376 "commandString": "reference copy folded vertical"\3377 },\3378 {\3379 "commandString": "reference copy folded line"\3380 },\3381 {\3382 "commandString": "reference presentation"\3383 },\3384 {\3385 "commandString": "reference exchange"\3386 },\3387 {\3388 "commandString": "reference synchronize"\3389 },\3390 {\3391 "commandString": "reference synchronize levels"\3392 },\3393 {\3394 "commandString": "reference synchronize levels custom"\3395 },\3396 {\3397 "commandString": "reference synchronize levels all"\3398 },\3399 {\3400 "commandString": "reference synchronize levels bylevelsymbology"\3401 },\3402 {\3403 "commandString": "reference synchronize levels overridesymbology"\3404 },\3405 {\3406 "commandString": "reference synchronize levels display"\3407 },\3408 {\3409 "commandString": "reference adjustcolors"\3410 },\3411 {\3412 "commandString": "reference adjustcolors dialog"\3413 },\3414 {\3415 "commandString": "reference makedirect"\3416 },\3417 {\3418 "commandString": "reference newsession"\3419 },\3420 {\3421 "commandString": "reference filechanged"\3422 },\3423 {\3424 "commandString": "reference set"\3425 },\3426 {\3427 "commandString": "reference xchange"\3428 },\3429 {\3430 "commandString": "reference activate"\3431 },\3432 {\3433 "commandString": "reference activate dialog"\3434 },\3435 {\3436 "commandString": "reference deactivate"\3437 },\3438 {\3439 "commandString": "reference releasewritelock"\3440 },\3441 {\3442 "commandString": "reference releasewritelock dialog"\3443 },\3444 {\3445 "commandString": "reference centernamedview"\3446 },\3447 {\3448 "commandString": "reference centernamedview coincident"\3449 },\3450 {\3451 "commandString": "reference centernamedview bydrawingarea"\3452 },\3453 {\3454 "commandString": "reference centerstandardview"\3455 },\3456 {\3457 "commandString": "reference centerstandardview coincident"\3458 },\3459 {\3460 "commandString": "reference centerstandardview bydrawingarea"\3461 },\3462 {\3463 "commandString": "reference properties"\3464 },\3465 {\3466 "commandString": "reference attachview"\3467 },\3468 {\3469 "commandString": "reference updatefromsavedview"\3470 },\3471 {\3472 "commandString": "reference pushtosavedview"\3473 },\3474 {\3475 "commandString": "reference visibleedges"\3476 },\3477 {\3478 "commandString": "reference visibleedges dynamic"\3479 },\3480 {\3481 "commandString": "reference visibleedges cached"\3482 },\3483 {\3484 "commandString": "reference visibleedges cached synchronize"\3485 },\3486 {\3487 "commandString": "reference visibleedges cached hide"\3488 },\3489 {\3490 "commandString": "reference visibleedges cached copyhide"\3491 },\3492 {\3493 "commandString": "reference visibleedges cached copyhide all"\3494 },\3495 {\3496 "commandString": "reference visibleedges cached unhide"\3497 },\3498 {\3499 "commandString": "reference visibleedges cached unhide all"\3500 },\3501 {\3502 "commandString": "reference visibleedges cached hiddentoggle"\3503 },\3504 {\3505 "commandString": "reference visibleedges cached autosynchronize"\3506 },\3507 {\3508 "commandString": "reference visibleedges legacy"\3509 },\3510 {\3511 "commandString": "reference visibleedges allmodels"\3512 },\3513 {\3514 "commandString": "reference visibleedges allmodels dynamic"\3515 },\3516 {\3517 "commandString": "reference visibleedges allmodels cached"\3518 },\3519 {\3520 "commandString": "reference visibleedges allmodels synchronizecache"\3521 },\3522 {\3523 "commandString": "reference visibleedges cvesynch"\3524 },\3525 {\3526 "commandString": "reference visibleedges cvesynch manual"\3527 },\3528 {\3529 "commandString": "reference visibleedges cvesynch alert"\3530 },\3531 {\3532 "commandString": "reference visibleedges cvesynch automatic"\3533 },\3534 {\3535 "commandString": "reference visibleedges cvesynch disconnected"\3536 },\3537 {\3538 "commandString": "reference visibleedges allattachments"\3539 },\3540 {\3541 "commandString": "reference visibleedges allattachments dynamic"\3542 },\3543 {\3544 "commandString": "reference visibleedges allattachments cached"\3545 },\3546 {\3547 "commandString": "reference visibleedges allattachments synchronizecache"\3548 },\3549 {\3550 "commandString": "reference imodel"\3551 },\3552 {\3553 "commandString": "reference imodel attach"\3554 },\3555 {\3556 "commandString": "backup"\3557 },\3558 {\3559 "commandString": "free"\3560 },\3561 {\3562 "commandString": "justify"\3563 },\3564 {\3565 "commandString": "justify left"\3566 },\3567 {\3568 "commandString": "justify center"\3569 },\3570 {\3571 "commandString": "justify right"\3572 },\3573 {\3574 "commandString": "identify"\3575 },\3576 {\3577 "commandString": "identify cell"\3578 },\3579 {\3580 "commandString": "identify text"\3581 },\3582 {\3583 "commandString": "select"\3584 },\3585 {\3586 "commandString": "select cell"\3587 },\3588 {\3589 "commandString": "select cell absolute"\3590 },\3591 {\3592 "commandString": "select cell absolute tmatrx"\3593 },\3594 {\3595 "commandString": "select cell relative"\3596 },\3597 {\3598 "commandString": "select cell relative tmatrx"\3599 },\3600 {\3601 "commandString": "select cell icon"\3602 },\3603 {\3604 "commandString": "define"\3605 },\3606 {\3607 "commandString": "define cell"\3608 },\3609 {\3610 "commandString": "define cell origin"\3611 },\3612 {\3613 "commandString": "define cell attributes"\3614 },\3615 {\3616 "commandString": "define ae"\3617 },\3618 {\3619 "commandString": "define search"\3620 },\3621 {\3622 "commandString": "define acs"\3623 },\3624 {\3625 "commandString": "define acs view"\3626 },\3627 {\3628 "commandString": "define acs view rectangular"\3629 },\3630 {\3631 "commandString": "define acs view cylindrical"\3632 },\3633 {\3634 "commandString": "define acs view spherical"\3635 },\3636 {\3637 "commandString": "define acs view default"\3638 },\3639 {\3640 "commandString": "define acs element"\3641 },\3642 {\3643 "commandString": "define acs element rectangular"\3644 },\3645 {\3646 "commandString": "define acs element cylindrical"\3647 },\3648 {\3649 "commandString": "define acs element spherical"\3650 },\3651 {\3652 "commandString": "define acs element default"\3653 },\3654 {\3655 "commandString": "define acs points"\3656 },\3657 {\3658 "commandString": "define acs points rectangular"\3659 },\3660 {\3661 "commandString": "define acs points cylindrical"\3662 },\3663 {\3664 "commandString": "define acs points spherical"\3665 },\3666 {\3667 "commandString": "define acs points default"\3668 },\3669 {\3670 "commandString": "define acs reference"\3671 },\3672 {\3673 "commandString": "define acs reference rectangular"\3674 },\3675 {\3676 "commandString": "define acs reference cylindrical"\3677 },\3678 {\3679 "commandString": "define acs reference spherical"\3680 },\3681 {\3682 "commandString": "define acs reference default"\3683 },\3684 {\3685 "commandString": "define north"\3686 },\3687 {\3688 "commandString": "define lights"\3689 },\3690 {\3691 "commandString": "define materials"\3692 },\3693 {\3694 "commandString": "create"\3695 },\3696 {\3697 "commandString": "create cell"\3698 },\3699 {\3700 "commandString": "create chain"\3701 },\3702 {\3703 "commandString": "create chain manual"\3704 },\3705 {\3706 "commandString": "create chain automatic"\3707 },\3708 {\3709 "commandString": "create chain icon"\3710 },\3711 {\3712 "commandString": "create shape"\3713 },\3714 {\3715 "commandString": "create shape manual"\3716 },\3717 {\3718 "commandString": "create shape automatic"\3719 },\3720 {\3721 "commandString": "create shape automatic default"\3722 },\3723 {\3724 "commandString": "create shape icon"\3725 },\3726 {\3727 "commandString": "create entity"\3728 },\3729 {\3730 "commandString": "create library"\3731 },\3732 {\3733 "commandString": "create drawing"\3734 },\3735 {\3736 "commandString": "rename"\3737 },\3738 {\3739 "commandString": "rename cell"\3740 },\3741 {\3742 "commandString": "rename cell default"\3743 },\3744 {\3745 "commandString": "matrix"\3746 },\3747 {\3748 "commandString": "matrix cell"\3749 },\3750 {\3751 "commandString": "matrix cell default"\3752 },\3753 {\3754 "commandString": "dimension"\3755 },\3756 {\3757 "commandString": "dimension placement"\3758 },\3759 {\3760 "commandString": "dimension placement auto"\3761 },\3762 {\3763 "commandString": "dimension placement manual"\3764 },\3765 {\3766 "commandString": "dimension placement semiauto"\3767 },\3768 {\3769 "commandString": "dimension witness"\3770 },\3771 {\3772 "commandString": "dimension witness off"\3773 },\3774 {\3775 "commandString": "dimension witness on"\3776 },\3777 {\3778 "commandString": "dimension witness toggle"\3779 },\3780 {\3781 "commandString": "dimension witness left"\3782 },\3783 {\3784 "commandString": "dimension witness left on"\3785 },\3786 {\3787 "commandString": "dimension witness left off"\3788 },\3789 {\3790 "commandString": "dimension witness left toggle"\3791 },\3792 {\3793 "commandString": "dimension witness right"\3794 },\3795 {\3796 "commandString": "dimension witness right on"\3797 },\3798 {\3799 "commandString": "dimension witness right off"\3800 },\3801 {\3802 "commandString": "dimension witness right toggle"\3803 },\3804 {\3805 "commandString": "dimension witness top"\3806 },\3807 {\3808 "commandString": "dimension witness top on"\3809 },\3810 {\3811 "commandString": "dimension witness top off"\3812 },\3813 {\3814 "commandString": "dimension witness top toggle"\3815 },\3816 {\3817 "commandString": "dimension witness bottom"\3818 },\3819 {\3820 "commandString": "dimension witness bottom on"\3821 },\3822 {\3823 "commandString": "dimension witness bottom off"\3824 },\3825 {\3826 "commandString": "dimension witness bottom toggle"\3827 },\3828 {\3829 "commandString": "dimension justification"\3830 },\3831 {\3832 "commandString": "dimension justification left"\3833 },\3834 {\3835 "commandString": "dimension justification center"\3836 },\3837 {\3838 "commandString": "dimension justification right"\3839 },\3840 {\3841 "commandString": "dimension terminator"\3842 },\3843 {\3844 "commandString": "dimension terminator first"\3845 },\3846 {\3847 "commandString": "dimension terminator first off"\3848 },\3849 {\3850 "commandString": "dimension terminator first arrow"\3851 },\3852 {\3853 "commandString": "dimension terminator first stroke"\3854 },\3855 {\3856 "commandString": "dimension terminator first origin"\3857 },\3858 {\3859 "commandString": "dimension terminator left"\3860 },\3861 {\3862 "commandString": "dimension terminator left off"\3863 },\3864 {\3865 "commandString": "dimension terminator left arrow"\3866 },\3867 {\3868 "commandString": "dimension terminator left stroke"\3869 },\3870 {\3871 "commandString": "dimension terminator left origin"\3872 },\3873 {\3874 "commandString": "dimension terminator right"\3875 },\3876 {\3877 "commandString": "dimension terminator right off"\3878 },\3879 {\3880 "commandString": "dimension terminator right arrow"\3881 },\3882 {\3883 "commandString": "dimension terminator right stroke"\3884 },\3885 {\3886 "commandString": "dimension terminator right origin"\3887 },\3888 {\3889 "commandString": "dimension axis"\3890 },\3891 {\3892 "commandString": "dimension axis view"\3893 },\3894 {\3895 "commandString": "dimension axis drawing"\3896 },\3897 {\3898 "commandString": "dimension axis true"\3899 },\3900 {\3901 "commandString": "dimension axis arbitrary"\3902 },\3903 {\3904 "commandString": "dimension level"\3905 },\3906 {\3907 "commandString": "dimension level active"\3908 },\3909 {\3910 "commandString": "dimension tolerance"\3911 },\3912 {\3913 "commandString": "dimension tolerance upper"\3914 },\3915 {\3916 "commandString": "dimension tolerance lower"\3917 },\3918 {\3919 "commandString": "dimension tolerance scale"\3920 },\3921 {\3922 "commandString": "dimension scale"\3923 },\3924 {\3925 "commandString": "dimension scale reset"\3926 },\3927 {\3928 "commandString": "dimension units"\3929 },\3930 {\3931 "commandString": "dimension units length"\3932 },\3933 {\3934 "commandString": "dimension units degrees"\3935 },\3936 {\3937 "commandString": "dimension file"\3938 },\3939 {\3940 "commandString": "dimension file active"\3941 },\3942 {\3943 "commandString": "dimension file reference"\3944 },\3945 {\3946 "commandString": "dimension color"\3947 },\3948 {\3949 "commandString": "dimension color white"\3950 },\3951 {\3952 "commandString": "dimension color blue"\3953 },\3954 {\3955 "commandString": "dimension color green"\3956 },\3957 {\3958 "commandString": "dimension color red"\3959 },\3960 {\3961 "commandString": "dimension color yellow"\3962 },\3963 {\3964 "commandString": "dimension color violet"\3965 },\3966 {\3967 "commandString": "dimension color orange"\3968 },\3969 {\3970 "commandString": "dimension color cselect"\3971 },\3972 {\3973 "commandString": "dimension color outline"\3974 },\3975 {\3976 "commandString": "dimension color bylevel"\3977 },\3978 {\3979 "commandString": "dimension color bycell"\3980 },\3981 {\3982 "commandString": "dimension weight"\3983 },\3984 {\3985 "commandString": "dimension weight active"\3986 },\3987 {\3988 "commandString": "dimension weight bylevel"\3989 },\3990 {\3991 "commandString": "dimension weight bycell"\3992 },\3993 {\3994 "commandString": "dimension text"\3995 },\3996 {\3997 "commandString": "dimension text color"\3998 },\3999 {\4000 "commandString": "dimension text color white"\4001 },\4002 {\4003 "commandString": "dimension text color blue"\4004 },\4005 {\4006 "commandString": "dimension text color green"\4007 },\4008 {\4009 "commandString": "dimension text color red"\4010 },\4011 {\4012 "commandString": "dimension text color yellow"\4013 },\4014 {\4015 "commandString": "dimension text color violet"\4016 },\4017 {\4018 "commandString": "dimension text color orange"\4019 },\4020 {\4021 "commandString": "dimension text color cselect"\4022 },\4023 {\4024 "commandString": "dimension text color outline"\4025 },\4026 {\4027 "commandString": "dimension text color bylevel"\4028 },\4029 {\4030 "commandString": "dimension text color bycell"\4031 },\4032 {\4033 "commandString": "dimension text weight"\4034 },\4035 {\4036 "commandString": "dimension text weight active"\4037 },\4038 {\4039 "commandString": "dimension text weight bylevel"\4040 },\4041 {\4042 "commandString": "dimension text weight bycell"\4043 },\4044 {\4045 "commandString": "dimension text box"\4046 },\4047 {\4048 "commandString": "dimension text box on"\4049 },\4050 {\4051 "commandString": "dimension text box off"\4052 },\4053 {\4054 "commandString": "dimension text box toggle"\4055 },\4056 {\4057 "commandString": "dimension text capsule"\4058 },\4059 {\4060 "commandString": "dimension text capsule on"\4061 },\4062 {\4063 "commandString": "dimension text capsule off"\4064 },\4065 {\4066 "commandString": "dimension text capsule toggle"\4067 },\4068 {\4069 "commandString": "dimension font"\4070 },\4071 {\4072 "commandString": "dimension font active"\4073 },\4074 {\4075 "commandString": "dimension center"\4076 },\4077 {\4078 "commandString": "dimension center size"\4079 },\4080 {\4081 "commandString": "dimension center off"\4082 },\4083 {\4084 "commandString": "dimension center on"\4085 },\4086 {\4087 "commandString": "dimension pre"\4088 },\4089 {\4090 "commandString": "dimension pre off"\4091 },\4092 {\4093 "commandString": "dimension pre diameter"\4094 },\4095 {\4096 "commandString": "dimension pre radius"\4097 },\4098 {\4099 "commandString": "dimension pre square"\4100 },\4101 {\4102 "commandString": "dimension post"\4103 },\4104 {\4105 "commandString": "dimension post off"\4106 },\4107 {\4108 "commandString": "dimension post diameter"\4109 },\4110 {\4111 "commandString": "dimension post radius"\4112 },\4113 {\4114 "commandString": "dimension post square"\4115 },\4116 {\4117 "commandString": "dimension stacked"\4118 },\4119 {\4120 "commandString": "dimension stacked on"\4121 },\4122 {\4123 "commandString": "dimension stacked off"\4124 },\4125 {\4126 "commandString": "dimension stacked toggle"\4127 },\4128 {\4129 "commandString": "dimension arclength"\4130 },\4131 {\4132 "commandString": "dimension arclength on"\4133 },\4134 {\4135 "commandString": "dimension arclength off"\4136 },\4137 {\4138 "commandString": "dimension arclength toggle"\4139 },\4140 {\4141 "commandString": "dimension vertical"\4142 },\4143 {\4144 "commandString": "dimension vertical off"\4145 },\4146 {\4147 "commandString": "dimension vertical mixed"\4148 },\4149 {\4150 "commandString": "dimension vertical on"\4151 },\4152 {\4153 "commandString": "dimension extension"\4154 },\4155 {\4156 "commandString": "dimension extension off"\4157 },\4158 {\4159 "commandString": "dimension extension on"\4160 },\4161 {\4162 "commandString": "dimension extension toggle"\4163 },\4164 {\4165 "commandString": "dimension extension left"\4166 },\4167 {\4168 "commandString": "dimension extension left on"\4169 },\4170 {\4171 "commandString": "dimension extension left off"\4172 },\4173 {\4174 "commandString": "dimension extension left toggle"\4175 },\4176 {\4177 "commandString": "dimension extension right"\4178 },\4179 {\4180 "commandString": "dimension extension right on"\4181 },\4182 {\4183 "commandString": "dimension extension right off"\4184 },\4185 {\4186 "commandString": "dimension extension right toggle"\4187 },\4188 {\4189 "commandString": "dimension extension top"\4190 },\4191 {\4192 "commandString": "dimension extension top on"\4193 },\4194 {\4195 "commandString": "dimension extension top off"\4196 },\4197 {\4198 "commandString": "dimension extension top toggle"\4199 },\4200 {\4201 "commandString": "dimension extension bottom"\4202 },\4203 {\4204 "commandString": "dimension extension bottom on"\4205 },\4206 {\4207 "commandString": "dimension extension bottom off"\4208 },\4209 {\4210 "commandString": "dimension extension bottom toggle"\4211 },\4212 {\4213 "commandString": "reset"\4214 },\4215 {\4216 "commandString": "increment"\4217 },\4218 {\4219 "commandString": "increment text"\4220 },\4221 {\4222 "commandString": "increment ed"\4223 },\4224 {\4225 "commandString": "group"\4226 },\4227 {\4228 "commandString": "group add"\4229 },\4230 {\4231 "commandString": "group add immediate"\4232 },\4233 {\4234 "commandString": "group add nosettings"\4235 },\4236 {\4237 "commandString": "group drop"\4238 },\4239 {\4240 "commandString": "group drop nosettings"\4241 },\4242 {\4243 "commandString": "group selection"\4244 },\4245 {\4246 "commandString": "group holes"\4247 },\4248 {\4249 "commandString": "group createquick"\4250 },\4251 {\4252 "commandString": "group activatequick"\4253 },\4254 {\4255 "commandString": "usercommand"\4256 },\4257 {\4258 "commandString": "null"\4259 },\4260 {\4261 "commandString": "locele"\4262 },\4263 {\4264 "commandString": "digitizer"\4265 },\4266 {\4267 "commandString": "digitizer partition"\4268 },\4269 {\4270 "commandString": "digitizer setup"\4271 },\4272 {\4273 "commandString": "digitizer download"\4274 },\4275 {\4276 "commandString": "find"\4277 },\4278 {\4279 "commandString": "review"\4280 },\4281 {\4282 "commandString": "detach"\4283 },\4284 {\4285 "commandString": "detach database"\4286 },\4287 {\4288 "commandString": "detach library"\4289 },\4290 {\4291 "commandString": "detach databaseicon"\4292 },\4293 {\4294 "commandString": "ucc"\4295 },\4296 {\4297 "commandString": "iupdate"\4298 },\4299 {\4300 "commandString": "iupdate 1"\4301 },\4302 {\4303 "commandString": "iupdate 2"\4304 },\4305 {\4306 "commandString": "iupdate 3"\4307 },\4308 {\4309 "commandString": "iupdate 4"\4310 },\4311 {\4312 "commandString": "iupdate 5"\4313 },\4314 {\4315 "commandString": "iupdate 6"\4316 },\4317 {\4318 "commandString": "iupdate 7"\4319 },\4320 {\4321 "commandString": "iupdate 8"\4322 },\4323 {\4324 "commandString": "iupdate right"\4325 },\4326 {\4327 "commandString": "iupdate left"\4328 },\4329 {\4330 "commandString": "iupdate both"\4331 },\4332 {\4333 "commandString": "iupdate all"\4334 },\4335 {\4336 "commandString": "iupdate view"\4337 },\4338 {\4339 "commandString": "iupdate grid"\4340 },\4341 {\4342 "commandString": "iupdate file"\4343 },\4344 {\4345 "commandString": "iupdate fence"\4346 },\4347 {\4348 "commandString": "iupdate fence inside"\4349 },\4350 {\4351 "commandString": "iupdate fence outside"\4352 },\4353 {\4354 "commandString": "version"\4355 },\4356 {\4357 "commandString": "wset"\4358 },\4359 {\4360 "commandString": "wset add"\4361 },\4362 {\4363 "commandString": "wset copy"\4364 },\4365 {\4366 "commandString": "wset drop"\4367 },\4368 {\4369 "commandString": "snap"\4370 },\4371 {\4372 "commandString": "snap on"\4373 },\4374 {\4375 "commandString": "snap off"\4376 },\4377 {\4378 "commandString": "snap project"\4379 },\4380 {\4381 "commandString": "snap keypoint"\4382 },\4383 {\4384 "commandString": "snap construction"\4385 },\4386 {\4387 "commandString": "snap construction on"\4388 },\4389 {\4390 "commandString": "snap construction off"\4391 },\4392 {\4393 "commandString": "snap construction toggle"\4394 },\4395 {\4396 "commandString": "snap acs"\4397 },\4398 {\4399 "commandString": "snap acs on"\4400 },\4401 {\4402 "commandString": "snap acs off"\4403 },\4404 {\4405 "commandString": "snap acs toggle"\4406 },\4407 {\4408 "commandString": "snap intersection"\4409 },\4410 {\4411 "commandString": "snap nearest"\4412 },\4413 {\4414 "commandString": "snap midpoint"\4415 },\4416 {\4417 "commandString": "snap center"\4418 },\4419 {\4420 "commandString": "snap origin"\4421 },\4422 {\4423 "commandString": "snap bisector"\4424 },\4425 {\4426 "commandString": "snap multisnap1"\4427 },\4428 {\4429 "commandString": "snap multisnap2"\4430 },\4431 {\4432 "commandString": "snap multisnap3"\4433 },\4434 {\4435 "commandString": "snap perpendicular"\4436 },\4437 {\4438 "commandString": "snap tangency"\4439 },\4440 {\4441 "commandString": "snap pttangent"\4442 },\4443 {\4444 "commandString": "snap ptperpendicular"\4445 },\4446 {\4447 "commandString": "snap parallel"\4448 },\4449 {\4450 "commandString": "snap ptthrough"\4451 },\4452 {\4453 "commandString": "snap pointon"\4454 },\4455 {\4456 "commandString": "activesnap"\4457 },\4458 {\4459 "commandString": "activesnap on"\4460 },\4461 {\4462 "commandString": "activesnap off"\4463 },\4464 {\4465 "commandString": "activesnap project"\4466 },\4467 {\4468 "commandString": "activesnap keypoint"\4469 },\4470 {\4471 "commandString": "activesnap construction"\4472 },\4473 {\4474 "commandString": "activesnap construction on"\4475 },\4476 {\4477 "commandString": "activesnap construction off"\4478 },\4479 {\4480 "commandString": "activesnap construction toggle"\4481 },\4482 {\4483 "commandString": "activesnap acs"\4484 },\4485 {\4486 "commandString": "activesnap acs on"\4487 },\4488 {\4489 "commandString": "activesnap acs off"\4490 },\4491 {\4492 "commandString": "activesnap acs toggle"\4493 },\4494 {\4495 "commandString": "activesnap intersection"\4496 },\4497 {\4498 "commandString": "activesnap nearest"\4499 },\4500 {\4501 "commandString": "activesnap midpoint"\4502 },\4503 {\4504 "commandString": "activesnap center"\4505 },\4506 {\4507 "commandString": "activesnap origin"\4508 },\4509 {\4510 "commandString": "activesnap bisector"\4511 },\4512 {\4513 "commandString": "activesnap multisnap1"\4514 },\4515 {\4516 "commandString": "activesnap multisnap2"\4517 },\4518 {\4519 "commandString": "activesnap multisnap3"\4520 },\4521 {\4522 "commandString": "activesnap perpendicular"\4523 },\4524 {\4525 "commandString": "activesnap tangency"\4526 },\4527 {\4528 "commandString": "activesnap pttangent"\4529 },\4530 {\4531 "commandString": "activesnap ptperpendicular"\4532 },\4533 {\4534 "commandString": "activesnap parallel"\4535 },\4536 {\4537 "commandString": "activesnap ptthrough"\4538 },\4539 {\4540 "commandString": "activesnap pointon"\4541 },\4542 {\4543 "commandString": "nocommand"\4544 },\4545 {\4546 "commandString": "display"\4547 },\4548 {\4549 "commandString": "display hilite"\4550 },\4551 {\4552 "commandString": "display erase"\4553 },\4554 {\4555 "commandString": "display set"\4556 },\4557 {\4558 "commandString": "type"\4559 },\4560 {\4561 "commandString": "undo"\4562 },\4563 {\4564 "commandString": "undo all"\4565 },\4566 {\4567 "commandString": "undo all noconfirm"\4568 },\4569 {\4570 "commandString": "undo mark"\4571 },\4572 {\4573 "commandString": "undo nowarn"\4574 },\4575 {\4576 "commandString": "redo"\4577 },\4578 {\4579 "commandString": "redo element"\4580 },\4581 {\4582 "commandString": "mark"\4583 },\4584 {\4585 "commandString": "chamfer"\4586 },\4587 {\4588 "commandString": "submenu"\4589 },\4590 {\4591 "commandString": "popmenu"\4592 },\4593 {\4594 "commandString": "beep"\4595 },\4596 {\4597 "commandString": "level"\4598 },\4599 {\4600 "commandString": "level create"\4601 },\4602 {\4603 "commandString": "level delete"\4604 },\4605 {\4606 "commandString": "level library"\4607 },\4608 {\4609 "commandString": "level library attach"\4610 },\4611 {\4612 "commandString": "level library detach"\4613 },\4614 {\4615 "commandString": "level library import"\4616 },\4617 {\4618 "commandString": "level library export"\4619 },\4620 {\4621 "commandString": "level library sync"\4622 },\4623 {\4624 "commandString": "level table"\4625 },\4626 {\4627 "commandString": "level table readonly"\4628 },\4629 {\4630 "commandString": "level filter"\4631 },\4632 {\4633 "commandString": "level filter create"\4634 },\4635 {\4636 "commandString": "level filter delete"\4637 },\4638 {\4639 "commandString": "level filter group"\4640 },\4641 {\4642 "commandString": "level filter import"\4643 },\4644 {\4645 "commandString": "level filter child"\4646 },\4647 {\4648 "commandString": "level filter set"\4649 },\4650 {\4651 "commandString": "level filter set name"\4652 },\4653 {\4654 "commandString": "level filter set description"\4655 },\4656 {\4657 "commandString": "level filter set color"\4658 },\4659 {\4660 "commandString": "level filter set style"\4661 },\4662 {\4663 "commandString": "level filter set weight"\4664 },\4665 {\4666 "commandString": "level filter set material"\4667 },\4668 {\4669 "commandString": "level filter set display"\4670 },\4671 {\4672 "commandString": "level filter set freeze"\4673 },\4674 {\4675 "commandString": "level filter set plot"\4676 },\4677 {\4678 "commandString": "level filter set used"\4679 },\4680 {\4681 "commandString": "level filter set priority"\4682 },\4683 {\4684 "commandString": "level filter set transparency"\4685 },\4686 {\4687 "commandString": "level set"\4688 },\4689 {\4690 "commandString": "level set frozen"\4691 },\4692 {\4693 "commandString": "level set frozen on"\4694 },\4695 {\4696 "commandString": "level set frozen off"\4697 },\4698 {\4699 "commandString": "level set frozen toggle"\4700 },\4701 {\4702 "commandString": "level set display"\4703 },\4704 {\4705 "commandString": "level set display on"\4706 },\4707 {\4708 "commandString": "level set display off"\4709 },\4710 {\4711 "commandString": "level set display toggle"\4712 },\4713 {\4714 "commandString": "level set lock"\4715 },\4716 {\4717 "commandString": "level set lock on"\4718 },\4719 {\4720 "commandString": "level set lock off"\4721 },\4722 {\4723 "commandString": "level set lock toggle"\4724 },\4725 {\4726 "commandString": "level set plot"\4727 },\4728 {\4729 "commandString": "level set plot on"\4730 },\4731 {\4732 "commandString": "level set plot off"\4733 },\4734 {\4735 "commandString": "level set plot toggle"\4736 },\4737 {\4738 "commandString": "level set name"\4739 },\4740 {\4741 "commandString": "level set number"\4742 },\4743 {\4744 "commandString": "level set description"\4745 },\4746 {\4747 "commandString": "level set bylevel"\4748 },\4749 {\4750 "commandString": "level set bylevel color"\4751 },\4752 {\4753 "commandString": "level set bylevel style"\4754 },\4755 {\4756 "commandString": "level set bylevel weight"\4757 },\4758 {\4759 "commandString": "level set bylevel material"\4760 },\4761 {\4762 "commandString": "level set override"\4763 },\4764 {\4765 "commandString": "level set override color"\4766 },\4767 {\4768 "commandString": "level set override color on"\4769 },\4770 {\4771 "commandString": "level set override color off"\4772 },\4773 {\4774 "commandString": "level set override color toggle"\4775 },\4776 {\4777 "commandString": "level set override style"\4778 },\4779 {\4780 "commandString": "level set override style on"\4781 },\4782 {\4783 "commandString": "level set override style off"\4784 },\4785 {\4786 "commandString": "level set override style toggle"\4787 },\4788 {\4789 "commandString": "level set override weight"\4790 },\4791 {\4792 "commandString": "level set override weight on"\4793 },\4794 {\4795 "commandString": "level set override weight off"\4796 },\4797 {\4798 "commandString": "level set override weight toggle"\4799 },\4800 {\4801 "commandString": "level set override material"\4802 },\4803 {\4804 "commandString": "level set override material on"\4805 },\4806 {\4807 "commandString": "level set override material off"\4808 },\4809 {\4810 "commandString": "level set override material toggle"\4811 },\4812 {\4813 "commandString": "level set priority"\4814 },\4815 {\4816 "commandString": "level set transparency"\4817 },\4818 {\4819 "commandString": "level set vpfrozen"\4820 },\4821 {\4822 "commandString": "level set vpfrozen on"\4823 },\4824 {\4825 "commandString": "level set vpfrozen off"\4826 },\4827 {\4828 "commandString": "level set vpfrozen toggle"\4829 },\4830 {\4831 "commandString": "level set autonumber"\4832 },\4833 {\4834 "commandString": "level set autonumber on"\4835 },\4836 {\4837 "commandString": "level set autonumber off"\4838 },\4839 {\4840 "commandString": "level set autonumber toggle"\4841 },\4842 {\4843 "commandString": "level set active"\4844 },\4845 {\4846 "commandString": "level draw"\4847 },\4848 {\4849 "commandString": "level usage"\4850 },\4851 {\4852 "commandString": "level element"\4853 },\4854 {\4855 "commandString": "level element move"\4856 },\4857 {\4858 "commandString": "level element copy"\4859 },\4860 {\4861 "commandString": "level element select"\4862 },\4863 {\4864 "commandString": "level element delete"\4865 },\4866 {\4867 "commandString": "level element bylevel"\4868 },\4869 {\4870 "commandString": "level element bylevel set"\4871 },\4872 {\4873 "commandString": "level element bylevel unset"\4874 },\4875 {\4876 "commandString": "level purge"\4877 },\4878 {\4879 "commandString": "level copy"\4880 },\4881 {\4882 "commandString": "level renumber"\4883 },\4884 {\4885 "commandString": "choose"\4886 },\4887 {\4888 "commandString": "choose all"\4889 },\4890 {\4891 "commandString": "choose none"\4892 },\4893 {\4894 "commandString": "choose previous"\4895 },\4896 {\4897 "commandString": "choose last"\4898 },\4899 {\4900 "commandString": "choose group"\4901 },\4902 {\4903 "commandString": "choose group set"\4904 },\4905 {\4906 "commandString": "choose group set nochildgroups"\4907 },\4908 {\4909 "commandString": "choose group set childgroups"\4910 },\4911 {\4912 "commandString": "choose group add"\4913 },\4914 {\4915 "commandString": "choose group add nochildgroups"\4916 },\4917 {\4918 "commandString": "choose group add childgroups"\4919 },\4920 {\4921 "commandString": "choose group remove"\4922 },\4923 {\4924 "commandString": "choose group remove nochildgroups"\4925 },\4926 {\4927 "commandString": "choose group remove childgroups"\4928 },\4929 {\4930 "commandString": "print"\4931 },\4932 {\4933 "commandString": "page"\4934 },\4935 {\4936 "commandString": "page setup"\4937 },\4938 {\4939 "commandString": "help"\4940 },\4941 {\4942 "commandString": "help context"\4943 },\4944 {\4945 "commandString": "ungroup"\4946 },\4947 {\4948 "commandString": "load"\4949 },\4950 {\4951 "commandString": "load da"\4952 },\4953 {\4954 "commandString": "load daicon"\4955 },\4956 {\4957 "commandString": "nonprivilegedtoolerr"\4958 },\4959 {\4960 "commandString": "start"\4961 },\4962 {\4963 "commandString": "readonlyerr"\4964 },\4965 {\4966 "commandString": "dialog"\4967 },\4968 {\4969 "commandString": "dialog locks"\4970 },\4971 {\4972 "commandString": "dialog toolbox"\4973 },\4974 {\4975 "commandString": "dialog toolbox fillet"\4976 },\4977 {\4978 "commandString": "dialog toolbox arc"\4979 },\4980 {\4981 "commandString": "dialog toolbox text"\4982 },\4983 {\4984 "commandString": "dialog toolbox change"\4985 },\4986 {\4987 "commandString": "dialog toolbox modify"\4988 },\4989 {\4990 "commandString": "dialog toolbox drop"\4991 },\4992 {\4993 "commandString": "dialog toolbox acs"\4994 },\4995 {\4996 "commandString": "dialog toolbox database"\4997 },\4998 {\4999 "commandString": "dialog toolbox reference"\5000 },\5001 {\5002 "commandString": "dialog toolbox references"\5003 },\5004 {\5005 "commandString": "dialog toolbox measure"\5006 },\5007 {\5008 "commandString": "dialog toolbox cloud"\5009 },\5010 {\5011 "commandString": "dialog toolbox fence"\5012 },\5013 {\5014 "commandString": "dialog toolbox detailingsymbols"\5015 },\5016 {\5017 "commandString": "dialog toolbox xyztxt"\5018 },\5019 {\5020 "commandString": "dialog toolbox visualization"\5021 },\5022 {\5023 "commandString": "dialog toolbox primary"\5024 },\5025 {\5026 "commandString": "dialog toolbox line"\5027 },\5028 {\5029 "commandString": "dialog toolbox linear"\5030 },\5031 {\5032 "commandString": "dialog toolbox polygons"\5033 },\5034 {\5035 "commandString": "dialog toolbox groups"\5036 },\5037 {\5038 "commandString": "dialog toolbox manipulate"\5039 },\5040 {\5041 "commandString": "dialog toolbox cells"\5042 },\5043 {\5044 "commandString": "dialog toolbox selection"\5045 },\5046 {\5047 "commandString": "dialog toolbox points"\5048 },\5049 {\5050 "commandString": "dialog toolbox 2dviewing"\5051 },\5052 {\5053 "commandString": "dialog toolbox 3dviewing"\5054 },\5055 {\5056 "commandString": "dialog toolbox dimension"\5057 },\5058 {\5059 "commandString": "dialog toolbox dimensions"\5060 },\5061 {\5062 "commandString": "dialog toolbox isometric"\5063 },\5064 {\5065 "commandString": "dialog toolbox tags"\5066 },\5067 {\5068 "commandString": "dialog toolbox annotate"\5069 },\5070 {\5071 "commandString": "dialog toolbox annotation"\5072 },\5073 {\5074 "commandString": "dialog toolbox standard"\5075 },\5076 {\5077 "commandString": "dialog toolbox redline"\5078 },\5079 {\5080 "commandString": "dialog toolbox mainclassic"\5081 },\5082 {\5083 "commandString": "dialog toolbox common"\5084 },\5085 {\5086 "commandString": "dialog toolbox links"\5087 },\5088 {\5089 "commandString": "dialog toolbox dimangular"\5090 },\5091 {\5092 "commandString": "dialog toolbox attributes"\5093 },\5094 {\5095 "commandString": "dialog toolbox viewcontrol"\5096 },\5097 {\5098 "commandString": "dialog toolbox tasknavigation"\5099 },\5100 {\5101 "commandString": "dialog toolbox viewrotate"\5102 },\5103 {\5104 "commandString": "dialog toolbox viewdisplaymode"\5105 },\5106 {\5107 "commandString": "dialog toolbox viewperspective"\5108 },\5109 {\5110 "commandString": "dialog toolbox viewproperties"\5111 },\5112 {\5113 "commandString": "dialog toolbox locks"\5114 },\5115 {\5116 "commandString": "dialog toolbox clipvolume"\5117 },\5118 {\5119 "commandString": "dialog toolbox viewgroups"\5120 },\5121 {\5122 "commandString": "dialog toolbox history"\5123 },\5124 {\5125 "commandString": "dialog toolbox digitalsignatures"\5126 },\5127 {\5128 "commandString": "dialog toolbox maintask"\5129 },\5130 {\5131 "commandString": "dialog toolbox animation"\5132 },\5133 {\5134 "commandString": "dialog toolbox basegeometry"\5135 },\5136 {\5137 "commandString": "dialog toolbox changetracking"\5138 },\5139 {\5140 "commandString": "dialog toolbox configuration"\5141 },\5142 {\5143 "commandString": "dialog toolbox coordinatesystems"\5144 },\5145 {\5146 "commandString": "dialog toolbox customlinestyles"\5147 },\5148 {\5149 "commandString": "dialog toolbox featuresolids"\5150 },\5151 {\5152 "commandString": "dialog toolbox models"\5153 },\5154 {\5155 "commandString": "dialog toolbox screenmenus"\5156 },\5157 {\5158 "commandString": "dialog toolbox ole"\5159 },\5160 {\5161 "commandString": "dialog toolbox viewwindow"\5162 },\5163 {\5164 "commandString": "dialog toolbox projectnavigation"\5165 },\5166 {\5167 "commandString": "dialog toolbox properties"\5168 },\5169 {\5170 "commandString": "dialog toolbox raster"\5171 },\5172 {\5173 "commandString": "dialog toolbox security"\5174 },\5175 {\5176 "commandString": "dialog toolbox sheetcomposition"\5177 },\5178 {\5179 "commandString": "dialog toolbox itemtypes"\5180 },\5181 {\5182 "commandString": "dialog toolbox uicustomization"\5183 },\5184 {\5185 "commandString": "dialog toolbox view"\5186 },\5187 {\5188 "commandString": "dialog toolbox geographic"\5189 },\5190 {\5191 "commandString": "dialog toolbox savedview"\5192 },\5193 {\5194 "commandString": "dialog toolbox manipulateclassic"\5195 },\5196 {\5197 "commandString": "dialog toolbox changeclassic"\5198 },\5199 {\5200 "commandString": "dialog toolbox linearclassic"\5201 },\5202 {\5203 "commandString": "dialog toolbox groupsclassic"\5204 },\5205 {\5206 "commandString": "dialog toolbox modifyclassic"\5207 },\5208 {\5209 "commandString": "dialog toolbox textclassic"\5210 },\5211 {\5212 "commandString": "dialog toolbox clashdetection"\5213 },\5214 {\5215 "commandString": "dialog toolbox pointcloud"\5216 },\5217 {\5218 "commandString": "dialog toolbox terrainmodel"\5219 },\5220 {\5221 "commandString": "dialog attributes"\5222 },\5223 {\5224 "commandString": "dialog readout"\5225 },\5226 {\5227 "commandString": "dialog command"\5228 },\5229 {\5230 "commandString": "dialog focus"\5231 },\5232 {\5233 "commandString": "dialog focus command"\5234 },\5235 {\5236 "commandString": "dialog standardalert"\5237 },\5238 {\5239 "commandString": "dialog accusnap"\5240 },\5241 {\5242 "commandString": "dialog snapvertical"\5243 },\5244 {\5245 "commandString": "dialog advisory"\5246 },\5247 {\5248 "commandString": "dialog closetoolboxes"\5249 },\5250 {\5251 "commandString": "dialog tasknavigation"\5252 },\5253 {\5254 "commandString": "dialog database"\5255 },\5256 {\5257 "commandString": "dialog viewrotation"\5258 },\5259 {\5260 "commandString": "dialog cellmaintenance"\5261 },\5262 {\5263 "commandString": "dialog cellmaintenance on"\5264 },\5265 {\5266 "commandString": "dialog cellmaintenance off"\5267 },\5268 {\5269 "commandString": "dialog cellmaintenance toggle"\5270 },\5271 {\5272 "commandString": "dialog cellmaintenance popup"\5273 },\5274 {\5275 "commandString": "dialog activeangle"\5276 },\5277 {\5278 "commandString": "dialog plot"\5279 },\5280 {\5281 "commandString": "dialog preview"\5282 },\5283 {\5284 "commandString": "dialog aboutdigitalrights"\5285 },\5286 {\5287 "commandString": "dialog viewsettings"\5288 },\5289 {\5290 "commandString": "dialog viewsettings on"\5291 },\5292 {\5293 "commandString": "dialog viewsettings off"\5294 },\5295 {\5296 "commandString": "dialog viewsettings toggle"\5297 },\5298 {\5299 "commandString": "dialog viewsettings popup"\5300 },\5301 {\5302 "commandString": "dialog cmdbrowse"\5303 },\5304 {\5305 "commandString": "dialog cmdbrowse on"\5306 },\5307 {\5308 "commandString": "dialog cmdbrowse off"\5309 },\5310 {\5311 "commandString": "dialog cmdbrowse toggle"\5312 },\5313 {\5314 "commandString": "dialog cmdbrowse popup"\5315 },\5316 {\5317 "commandString": "dialog activescale"\5318 },\5319 {\5320 "commandString": "dialog color"\5321 },\5322 {\5323 "commandString": "dialog grid"\5324 },\5325 {\5326 "commandString": "dialog camera"\5327 },\5328 {\5329 "commandString": "dialog aboutconfiguration"\5330 },\5331 {\5332 "commandString": "dialog funckeys"\5333 },\5334 {\5335 "commandString": "dialog mdl"\5336 },\5337 {\5338 "commandString": "dialog openfile"\5339 },\5340 {\5341 "commandString": "dialog digitizing"\5342 },\5343 {\5344 "commandString": "dialog aboutworkmode"\5345 },\5346 {\5347 "commandString": "dialog display"\5348 },\5349 {\5350 "commandString": "dialog toolsettings"\5351 },\5352 {\5353 "commandString": "dialog image"\5354 },\5355 {\5356 "commandString": "dialog aboutustn"\5357 },\5358 {\5359 "commandString": "dialog locktoggles"\5360 },\5361 {\5362 "commandString": "dialog saveas"\5363 },\5364 {\5365 "commandString": "dialog dialogmessages"\5366 },\5367 {\5368 "commandString": "dialog buttonmap"\5369 },\5370 {\5371 "commandString": "dialog buttonmap2"\5372 },\5373 {\5374 "commandString": "dialog lstylesetup"\5375 },\5376 {\5377 "commandString": "dialog lstyleedit"\5378 },\5379 {\5380 "commandString": "dialog licensemore"\5381 },\5382 {\5383 "commandString": "dialog morewindows"\5384 },\5385 {\5386 "commandString": "dialog updatesequence"\5387 },\5388 {\5389 "commandString": "dialog snaps"\5390 },\5391 {\5392 "commandString": "dialog export"\5393 },\5394 {\5395 "commandString": "dialog multisnap"\5396 },\5397 {\5398 "commandString": "dialog cbook"\5399 },\5400 {\5401 "commandString": "dialog select"\5402 },\5403 {\5404 "commandString": "dialog select row"\5405 },\5406 {\5407 "commandString": "dialog licensing"\5408 },\5409 {\5410 "commandString": "dialog hline"\5411 },\5412 {\5413 "commandString": "dialog saveimage"\5414 },\5415 {\5416 "commandString": "dialog cvesettings"\5417 },\5418 {\5419 "commandString": "dialog keyboardshortcuts"\5420 },\5421 {\5422 "commandString": "dialog exportdgn"\5423 },\5424 {\5425 "commandString": "dialog exportdwg"\5426 },\5427 {\5428 "commandString": "dialog exportdxf"\5429 },\5430 {\5431 "commandString": "dialog exportdgnlib"\5432 },\5433 {\5434 "commandString": "dialog exportrdl"\5435 },\5436 {\5437 "commandString": "dialog exportv7"\5438 },\5439 {\5440 "commandString": "dialog exportv8"\5441 },\5442 {\5443 "commandString": "mdl"\5444 },\5445 {\5446 "commandString": "mdl load"\5447 },\5448 {\5449 "commandString": "mdl unload"\5450 },\5451 {\5452 "commandString": "mdl debug"\5453 },\5454 {\5455 "commandString": "mdl command"\5456 },\5457 {\5458 "commandString": "mdl heap"\5459 },\5460 {\5461 "commandString": "mdl dlogload"\5462 },\5463 {\5464 "commandString": "mdl silentload"\5465 },\5466 {\5467 "commandString": "mdl keyin"\5468 },\5469 {\5470 "commandString": "mdl silentunload"\5471 },\5472 {\5473 "commandString": "mdl method"\5474 },\5475 {\5476 "commandString": "clr"\5477 },\5478 {\5479 "commandString": "clr load"\5480 },\5481 {\5482 "commandString": "clr load app"\5483 },\5484 {\5485 "commandString": "clr load configlist"\5486 },\5487 {\5488 "commandString": "clr unload"\5489 },\5490 {\5491 "commandString": "clr unload app"\5492 },\5493 {\5494 "commandString": "clr unload domain"\5495 },\5496 {\5497 "commandString": "clr dialog"\5498 },\5499 {\5500 "commandString": "clr gc"\5501 },\5502 {\5503 "commandString": "clr gc collect"\5504 },\5505 {\5506 "commandString": "clr gc gettotalmemory"\5507 },\5508 {\5509 "commandString": "cbook"\5510 },\5511 {\5512 "commandString": "cbook new"\5513 },\5514 {\5515 "commandString": "cbook save"\5516 },\5517 {\5518 "commandString": "cbook saveas"\5519 },\5520 {\5521 "commandString": "cbook delete"\5522 },\5523 {\5524 "commandString": "cbook open"\5525 },\5526 {\5527 "commandString": "cbook import"\5528 },\5529 {\5530 "commandString": "cbook export"\5531 },\5532 {\5533 "commandString": "cbook color"\5534 },\5535 {\5536 "commandString": "cbook color new"\5537 },\5538 {\5539 "commandString": "cbook color delete"\5540 },\5541 {\5542 "commandString": "cbook color select"\5543 },\5544 {\5545 "commandString": "cbook color modify"\5546 },\5547 {\5548 "commandString": "cbook color rename"\5549 },\5550 {\5551 "commandString": "cbook test"\5552 },\5553 {\5554 "commandString": "forms"\5555 },\5556 {\5557 "commandString": "forms on"\5558 },\5559 {\5560 "commandString": "forms off"\5561 },\5562 {\5563 "commandString": "forms display"\5564 },\5565 {\5566 "commandString": "forms mode"\5567 },\5568 {\5569 "commandString": "forms mode text"\5570 },\5571 {\5572 "commandString": "forms mode dialog"\5573 },\5574 {\5575 "commandString": "forms mode none"\5576 },\5577 {\5578 "commandString": "freeze"\5579 },\5580 {\5581 "commandString": "thaw"\5582 },\5583 {\5584 "commandString": "dmsg"\5585 },\5586 {\5587 "commandString": "dmsg closedialog"\5588 },\5589 {\5590 "commandString": "dmsg cancel"\5591 },\5592 {\5593 "commandString": "dmsg assert"\5594 },\5595 {\5596 "commandString": "dmsg dialogdebug"\5597 },\5598 {\5599 "commandString": "dmsg dialogdebug on"\5600 },\5601 {\5602 "commandString": "dmsg dialogdebug off"\5603 },\5604 {\5605 "commandString": "dmsg dialogdebug toggle"\5606 },\5607 {\5608 "commandString": "dmsg itemdebug"\5609 },\5610 {\5611 "commandString": "dmsg itemdebug on"\5612 },\5613 {\5614 "commandString": "dmsg itemdebug off"\5615 },\5616 {\5617 "commandString": "dmsg itemdebug toggle"\5618 },\5619 {\5620 "commandString": "dmsg handlerdebug"\5621 },\5622 {\5623 "commandString": "dmsg handlerdebug on"\5624 },\5625 {\5626 "commandString": "dmsg handlerdebug off"\5627 },\5628 {\5629 "commandString": "dmsg handlerdebug toggle"\5630 },\5631 {\5632 "commandString": "dmsg handlerdebug before"\5633 },\5634 {\5635 "commandString": "dmsg handlerdebug before on"\5636 },\5637 {\5638 "commandString": "dmsg handlerdebug before off"\5639 },\5640 {\5641 "commandString": "dmsg handlerdebug before toggle"\5642 },\5643 {\5644 "commandString": "dmsg handlerdebug after"\5645 },\5646 {\5647 "commandString": "dmsg handlerdebug after on"\5648 },\5649 {\5650 "commandString": "dmsg handlerdebug after off"\5651 },\5652 {\5653 "commandString": "dmsg handlerdebug after toggle"\5654 },\5655 {\5656 "commandString": "dmsg verbosedebug"\5657 },\5658 {\5659 "commandString": "dmsg verbosedebug on"\5660 },\5661 {\5662 "commandString": "dmsg verbosedebug off"\5663 },\5664 {\5665 "commandString": "dmsg verbosedebug toggle"\5666 },\5667 {\5668 "commandString": "dmsg auxmsgdebug"\5669 },\5670 {\5671 "commandString": "dmsg auxmsgdebug on"\5672 },\5673 {\5674 "commandString": "dmsg auxmsgdebug off"\5675 },\5676 {\5677 "commandString": "dmsg auxmsgdebug toggle"\5678 },\5679 {\5680 "commandString": "dmsg cleardebug"\5681 },\5682 {\5683 "commandString": "dmsg openmsgfile"\5684 },\5685 {\5686 "commandString": "dmsg appendmsgfile"\5687 },\5688 {\5689 "commandString": "dmsg closemsgfile"\5690 },\5691 {\5692 "commandString": "dmsg cursor"\5693 },\5694 {\5695 "commandString": "dmsg cursor blink"\5696 },\5697 {\5698 "commandString": "dmsg cursor blink on"\5699 },\5700 {\5701 "commandString": "dmsg cursor blink off"\5702 },\5703 {\5704 "commandString": "dmsg cursor blink toggle"\5705 },\5706 {\5707 "commandString": "dmsg cursor left"\5708 },\5709 {\5710 "commandString": "dmsg cursor right"\5711 },\5712 {\5713 "commandString": "dmsg cursor up"\5714 },\5715 {\5716 "commandString": "dmsg cursor down"\5717 },\5718 {\5719 "commandString": "dmsg cursor wordleft"\5720 },\5721 {\5722 "commandString": "dmsg cursor wordright"\5723 },\5724 {\5725 "commandString": "dmsg cursor linebegin"\5726 },\5727 {\5728 "commandString": "dmsg cursor lineend"\5729 },\5730 {\5731 "commandString": "dmsg cursor pageup"\5732 },\5733 {\5734 "commandString": "dmsg cursor pagedown"\5735 },\5736 {\5737 "commandString": "dmsg cursor databegin"\5738 },\5739 {\5740 "commandString": "dmsg cursor dataend"\5741 },\5742 {\5743 "commandString": "dmsg cursor nextfield"\5744 },\5745 {\5746 "commandString": "dmsg cursor previousfield"\5747 },\5748 {\5749 "commandString": "dmsg cursor deleteleft"\5750 },\5751 {\5752 "commandString": "dmsg cursor deleteright"\5753 },\5754 {\5755 "commandString": "dmsg cursor deleteleftword"\5756 },\5757 {\5758 "commandString": "dmsg cursor deleterightword"\5759 },\5760 {\5761 "commandString": "dmsg cursor deletedatabegin"\5762 },\5763 {\5764 "commandString": "dmsg cursor deletedataend"\5765 },\5766 {\5767 "commandString": "dmsg cursor selectall"\5768 },\5769 {\5770 "commandString": "dmsg cursor localdirection"\5771 },\5772 {\5773 "commandString": "dmsg cursor globaldirection"\5774 },\5775 {\5776 "commandString": "dmsg cursor toggleinsertmode"\5777 },\5778 {\5779 "commandString": "dmsg cursor nextwindow"\5780 },\5781 {\5782 "commandString": "dmsg cursor previouswindow"\5783 },\5784 {\5785 "commandString": "dmsg cursor deselectall"\5786 },\5787 {\5788 "commandString": "dmsg cursor nextdocument"\5789 },\5790 {\5791 "commandString": "dmsg cursor previousdocument"\5792 },\5793 {\5794 "commandString": "dmsg cursor nextpane"\5795 },\5796 {\5797 "commandString": "dmsg cursor previouspane"\5798 },\5799 {\5800 "commandString": "dmsg cursor previousprioritywindow"\5801 },\5802 {\5803 "commandString": "dmsg cursor focusup"\5804 },\5805 {\5806 "commandString": "dmsg cursor focusdown"\5807 },\5808 {\5809 "commandString": "dmsg clipboard"\5810 },\5811 {\5812 "commandString": "dmsg clipboard cut"\5813 },\5814 {\5815 "commandString": "dmsg clipboard copy"\5816 },\5817 {\5818 "commandString": "dmsg clipboard paste"\5819 },\5820 {\5821 "commandString": "dmsg clipboard undo"\5822 },\5823 {\5824 "commandString": "dmsg clipboard redo"\5825 },\5826 {\5827 "commandString": "dmsg clipboard clear"\5828 },\5829 {\5830 "commandString": "dmsg clipboard delete"\5831 },\5832 {\5833 "commandString": "dmsg clipboard inserttext"\5834 },\5835 {\5836 "commandString": "dmsg action"\5837 },\5838 {\5839 "commandString": "dmsg action okay"\5840 },\5841 {\5842 "commandString": "dmsg action cancel"\5843 },\5844 {\5845 "commandString": "dmsg action sysmenupull"\5846 },\5847 {\5848 "commandString": "dmsg action sysmenurestore"\5849 },\5850 {\5851 "commandString": "dmsg action sysmenumove"\5852 },\5853 {\5854 "commandString": "dmsg action sysmenusize"\5855 },\5856 {\5857 "commandString": "dmsg action sysmenuminimize"\5858 },\5859 {\5860 "commandString": "dmsg action sysmenumaximize"\5861 },\5862 {\5863 "commandString": "dmsg action sysmenulower"\5864 },\5865 {\5866 "commandString": "dmsg action sysmenuclose"\5867 },\5868 {\5869 "commandString": "dmsg action showaccelerators"\5870 },\5871 {\5872 "commandString": "dmsg action select"\5873 },\5874 {\5875 "commandString": "dmsg action addmode"\5876 },\5877 {\5878 "commandString": "dmsg action addmode on"\5879 },\5880 {\5881 "commandString": "dmsg action addmode off"\5882 },\5883 {\5884 "commandString": "dmsg action addmode toggle"\5885 },\5886 {\5887 "commandString": "dmsg action keyin"\5888 },\5889 {\5890 "commandString": "dmsg action extendmode"\5891 },\5892 {\5893 "commandString": "dmsg action extendmode on"\5894 },\5895 {\5896 "commandString": "dmsg action extendmode off"\5897 },\5898 {\5899 "commandString": "dmsg action extendmode toggle"\5900 },\5901 {\5902 "commandString": "dmsg action menubar"\5903 },\5904 {\5905 "commandString": "dmsg action menubar on"\5906 },\5907 {\5908 "commandString": "dmsg action menubar off"\5909 },\5910 {\5911 "commandString": "dmsg action menubar toggle"\5912 },\5913 {\5914 "commandString": "dmsg action popup"\5915 },\5916 {\5917 "commandString": "dmsg action popup on"\5918 },\5919 {\5920 "commandString": "dmsg action popup off"\5921 },\5922 {\5923 "commandString": "dmsg action popup toggle"\5924 },\5925 {\5926 "commandString": "dmsg action sysmenusink"\5927 },\5928 {\5929 "commandString": "dmsg action qpopup"\5930 },\5931 {\5932 "commandString": "dmsg action qnextwindow"\5933 },\5934 {\5935 "commandString": "dmsg action qprevwindow"\5936 },\5937 {\5938 "commandString": "dmsg action docmenuclose"\5939 },\5940 {\5941 "commandString": "dmsg action showmnemonics"\5942 },\5943 {\5944 "commandString": "dmsg action funckey"\5945 },\5946 {\5947 "commandString": "dmsg action sysmenuchngscrn"\5948 },\5949 {\5950 "commandString": "dmsg showversions"\5951 },\5952 {\5953 "commandString": "dmsg fileproperties"\5954 },\5955 {\5956 "commandString": "dmsg createcolorbook"\5957 },\5958 {\5959 "commandString": "dmsg navigation"\5960 },\5961 {\5962 "commandString": "dmsg navigation dialog"\5963 },\5964 {\5965 "commandString": "dmsg navigation dialog on"\5966 },\5967 {\5968 "commandString": "dmsg navigation dialog off"\5969 },\5970 {\5971 "commandString": "dmsg navigation dialog toggle"\5972 },\5973 {\5974 "commandString": "dmsg navigation menubar"\5975 },\5976 {\5977 "commandString": "dmsg navigation menubar on"\5978 },\5979 {\5980 "commandString": "dmsg navigation menubar off"\5981 },\5982 {\5983 "commandString": "dmsg navigation menubar toggle"\5984 },\5985 {\5986 "commandString": "dmsg focusdialog"\5987 },\5988 {\5989 "commandString": "dmsg focusdialog locks"\5990 },\5991 {\5992 "commandString": "dmsg focusdialog toolbox"\5993 },\5994 {\5995 "commandString": "dmsg focusdialog toolbox fillet"\5996 },\5997 {\5998 "commandString": "dmsg focusdialog toolbox arc"\5999 },\6000 {\6001 "commandString": "dmsg focusdialog toolbox text"\6002 },\6003 {\6004 "commandString": "dmsg focusdialog toolbox change"\6005 },\6006 {\6007 "commandString": "dmsg focusdialog toolbox modify"\6008 },\6009 {\6010 "commandString": "dmsg focusdialog toolbox drop"\6011 },\6012 {\6013 "commandString": "dmsg focusdialog toolbox acs"\6014 },\6015 {\6016 "commandString": "dmsg focusdialog toolbox database"\6017 },\6018 {\6019 "commandString": "dmsg focusdialog toolbox reference"\6020 },\6021 {\6022 "commandString": "dmsg focusdialog toolbox references"\6023 },\6024 {\6025 "commandString": "dmsg focusdialog toolbox measure"\6026 },\6027 {\6028 "commandString": "dmsg focusdialog toolbox cloud"\6029 },\6030 {\6031 "commandString": "dmsg focusdialog toolbox fence"\6032 },\6033 {\6034 "commandString": "dmsg focusdialog toolbox detailingsymbols"\6035 },\6036 {\6037 "commandString": "dmsg focusdialog toolbox xyztxt"\6038 },\6039 {\6040 "commandString": "dmsg focusdialog toolbox visualization"\6041 },\6042 {\6043 "commandString": "dmsg focusdialog toolbox primary"\6044 },\6045 {\6046 "commandString": "dmsg focusdialog toolbox line"\6047 },\6048 {\6049 "commandString": "dmsg focusdialog toolbox linear"\6050 },\6051 {\6052 "commandString": "dmsg focusdialog toolbox polygons"\6053 },\6054 {\6055 "commandString": "dmsg focusdialog toolbox groups"\6056 },\6057 {\6058 "commandString": "dmsg focusdialog toolbox manipulate"\6059 },\6060 {\6061 "commandString": "dmsg focusdialog toolbox cells"\6062 },\6063 {\6064 "commandString": "dmsg focusdialog toolbox selection"\6065 },\6066 {\6067 "commandString": "dmsg focusdialog toolbox points"\6068 },\6069 {\6070 "commandString": "dmsg focusdialog toolbox 2dviewing"\6071 },\6072 {\6073 "commandString": "dmsg focusdialog toolbox 3dviewing"\6074 },\6075 {\6076 "commandString": "dmsg focusdialog toolbox dimension"\6077 },\6078 {\6079 "commandString": "dmsg focusdialog toolbox dimensions"\6080 },\6081 {\6082 "commandString": "dmsg focusdialog toolbox isometric"\6083 },\6084 {\6085 "commandString": "dmsg focusdialog toolbox tags"\6086 },\6087 {\6088 "commandString": "dmsg focusdialog toolbox annotate"\6089 },\6090 {\6091 "commandString": "dmsg focusdialog toolbox annotation"\6092 },\6093 {\6094 "commandString": "dmsg focusdialog toolbox standard"\6095 },\6096 {\6097 "commandString": "dmsg focusdialog toolbox redline"\6098 },\6099 {\6100 "commandString": "dmsg focusdialog toolbox mainclassic"\6101 },\6102 {\6103 "commandString": "dmsg focusdialog toolbox common"\6104 },\6105 {\6106 "commandString": "dmsg focusdialog toolbox links"\6107 },\6108 {\6109 "commandString": "dmsg focusdialog toolbox dimangular"\6110 },\6111 {\6112 "commandString": "dmsg focusdialog toolbox attributes"\6113 },\6114 {\6115 "commandString": "dmsg focusdialog toolbox viewcontrol"\6116 },\6117 {\6118 "commandString": "dmsg focusdialog toolbox tasknavigation"\6119 },\6120 {\6121 "commandString": "dmsg focusdialog toolbox viewrotate"\6122 },\6123 {\6124 "commandString": "dmsg focusdialog toolbox viewdisplaymode"\6125 },\6126 {\6127 "commandString": "dmsg focusdialog toolbox viewperspective"\6128 },\6129 {\6130 "commandString": "dmsg focusdialog toolbox viewproperties"\6131 },\6132 {\6133 "commandString": "dmsg focusdialog toolbox locks"\6134 },\6135 {\6136 "commandString": "dmsg focusdialog toolbox clipvolume"\6137 },\6138 {\6139 "commandString": "dmsg focusdialog toolbox viewgroups"\6140 },\6141 {\6142 "commandString": "dmsg focusdialog toolbox history"\6143 },\6144 {\6145 "commandString": "dmsg focusdialog toolbox digitalsignatures"\6146 },\6147 {\6148 "commandString": "dmsg focusdialog toolbox maintask"\6149 },\6150 {\6151 "commandString": "dmsg focusdialog toolbox animation"\6152 },\6153 {\6154 "commandString": "dmsg focusdialog toolbox basegeometry"\6155 },\6156 {\6157 "commandString": "dmsg focusdialog toolbox changetracking"\6158 },\6159 {\6160 "commandString": "dmsg focusdialog toolbox configuration"\6161 },\6162 {\6163 "commandString": "dmsg focusdialog toolbox coordinatesystems"\6164 },\6165 {\6166 "commandString": "dmsg focusdialog toolbox customlinestyles"\6167 },\6168 {\6169 "commandString": "dmsg focusdialog toolbox featuresolids"\6170 },\6171 {\6172 "commandString": "dmsg focusdialog toolbox models"\6173 },\6174 {\6175 "commandString": "dmsg focusdialog toolbox screenmenus"\6176 },\6177 {\6178 "commandString": "dmsg focusdialog toolbox ole"\6179 },\6180 {\6181 "commandString": "dmsg focusdialog toolbox viewwindow"\6182 },\6183 {\6184 "commandString": "dmsg focusdialog toolbox projectnavigation"\6185 },\6186 {\6187 "commandString": "dmsg focusdialog toolbox properties"\6188 },\6189 {\6190 "commandString": "dmsg focusdialog toolbox raster"\6191 },\6192 {\6193 "commandString": "dmsg focusdialog toolbox security"\6194 },\6195 {\6196 "commandString": "dmsg focusdialog toolbox sheetcomposition"\6197 },\6198 {\6199 "commandString": "dmsg focusdialog toolbox itemtypes"\6200 },\6201 {\6202 "commandString": "dmsg focusdialog toolbox uicustomization"\6203 },\6204 {\6205 "commandString": "dmsg focusdialog toolbox view"\6206 },\6207 {\6208 "commandString": "dmsg focusdialog toolbox geographic"\6209 },\6210 {\6211 "commandString": "dmsg focusdialog toolbox savedview"\6212 },\6213 {\6214 "commandString": "dmsg focusdialog toolbox manipulateclassic"\6215 },\6216 {\6217 "commandString": "dmsg focusdialog toolbox changeclassic"\6218 },\6219 {\6220 "commandString": "dmsg focusdialog toolbox linearclassic"\6221 },\6222 {\6223 "commandString": "dmsg focusdialog toolbox groupsclassic"\6224 },\6225 {\6226 "commandString": "dmsg focusdialog toolbox modifyclassic"\6227 },\6228 {\6229 "commandString": "dmsg focusdialog toolbox textclassic"\6230 },\6231 {\6232 "commandString": "dmsg focusdialog toolbox clashdetection"\6233 },\6234 {\6235 "commandString": "dmsg focusdialog toolbox pointcloud"\6236 },\6237 {\6238 "commandString": "dmsg focusdialog toolbox terrainmodel"\6239 },\6240 {\6241 "commandString": "dmsg focusdialog attributes"\6242 },\6243 {\6244 "commandString": "dmsg focusdialog readout"\6245 },\6246 {\6247 "commandString": "dmsg focusdialog command"\6248 },\6249 {\6250 "commandString": "dmsg focusdialog focus"\6251 },\6252 {\6253 "commandString": "dmsg focusdialog focus command"\6254 },\6255 {\6256 "commandString": "dmsg focusdialog standardalert"\6257 },\6258 {\6259 "commandString": "dmsg focusdialog accusnap"\6260 },\6261 {\6262 "commandString": "dmsg focusdialog snapvertical"\6263 },\6264 {\6265 "commandString": "dmsg focusdialog advisory"\6266 },\6267 {\6268 "commandString": "dmsg focusdialog closetoolboxes"\6269 },\6270 {\6271 "commandString": "dmsg focusdialog tasknavigation"\6272 },\6273 {\6274 "commandString": "dmsg focusdialog database"\6275 },\6276 {\6277 "commandString": "dmsg focusdialog viewrotation"\6278 },\6279 {\6280 "commandString": "dmsg focusdialog cellmaintenance"\6281 },\6282 {\6283 "commandString": "dmsg focusdialog cellmaintenance on"\6284 },\6285 {\6286 "commandString": "dmsg focusdialog cellmaintenance off"\6287 },\6288 {\6289 "commandString": "dmsg focusdialog cellmaintenance toggle"\6290 },\6291 {\6292 "commandString": "dmsg focusdialog cellmaintenance popup"\6293 },\6294 {\6295 "commandString": "dmsg focusdialog activeangle"\6296 },\6297 {\6298 "commandString": "dmsg focusdialog plot"\6299 },\6300 {\6301 "commandString": "dmsg focusdialog preview"\6302 },\6303 {\6304 "commandString": "dmsg focusdialog aboutdigitalrights"\6305 },\6306 {\6307 "commandString": "dmsg focusdialog viewsettings"\6308 },\6309 {\6310 "commandString": "dmsg focusdialog viewsettings on"\6311 },\6312 {\6313 "commandString": "dmsg focusdialog viewsettings off"\6314 },\6315 {\6316 "commandString": "dmsg focusdialog viewsettings toggle"\6317 },\6318 {\6319 "commandString": "dmsg focusdialog viewsettings popup"\6320 },\6321 {\6322 "commandString": "dmsg focusdialog cmdbrowse"\6323 },\6324 {\6325 "commandString": "dmsg focusdialog cmdbrowse on"\6326 },\6327 {\6328 "commandString": "dmsg focusdialog cmdbrowse off"\6329 },\6330 {\6331 "commandString": "dmsg focusdialog cmdbrowse toggle"\6332 },\6333 {\6334 "commandString": "dmsg focusdialog cmdbrowse popup"\6335 },\6336 {\6337 "commandString": "dmsg focusdialog activescale"\6338 },\6339 {\6340 "commandString": "dmsg focusdialog color"\6341 },\6342 {\6343 "commandString": "dmsg focusdialog grid"\6344 },\6345 {\6346 "commandString": "dmsg focusdialog camera"\6347 },\6348 {\6349 "commandString": "dmsg focusdialog aboutconfiguration"\6350 },\6351 {\6352 "commandString": "dmsg focusdialog funckeys"\6353 },\6354 {\6355 "commandString": "dmsg focusdialog mdl"\6356 },\6357 {\6358 "commandString": "dmsg focusdialog openfile"\6359 },\6360 {\6361 "commandString": "dmsg focusdialog digitizing"\6362 },\6363 {\6364 "commandString": "dmsg focusdialog aboutworkmode"\6365 },\6366 {\6367 "commandString": "dmsg focusdialog display"\6368 },\6369 {\6370 "commandString": "dmsg focusdialog toolsettings"\6371 },\6372 {\6373 "commandString": "dmsg focusdialog image"\6374 },\6375 {\6376 "commandString": "dmsg focusdialog aboutustn"\6377 },\6378 {\6379 "commandString": "dmsg focusdialog locktoggles"\6380 },\6381 {\6382 "commandString": "dmsg focusdialog saveas"\6383 },\6384 {\6385 "commandString": "dmsg focusdialog dialogmessages"\6386 },\6387 {\6388 "commandString": "dmsg focusdialog buttonmap"\6389 },\6390 {\6391 "commandString": "dmsg focusdialog buttonmap2"\6392 },\6393 {\6394 "commandString": "dmsg focusdialog lstylesetup"\6395 },\6396 {\6397 "commandString": "dmsg focusdialog lstyleedit"\6398 },\6399 {\6400 "commandString": "dmsg focusdialog licensemore"\6401 },\6402 {\6403 "commandString": "dmsg focusdialog morewindows"\6404 },\6405 {\6406 "commandString": "dmsg focusdialog updatesequence"\6407 },\6408 {\6409 "commandString": "dmsg focusdialog snaps"\6410 },\6411 {\6412 "commandString": "dmsg focusdialog export"\6413 },\6414 {\6415 "commandString": "dmsg focusdialog multisnap"\6416 },\6417 {\6418 "commandString": "dmsg focusdialog cbook"\6419 },\6420 {\6421 "commandString": "dmsg focusdialog select"\6422 },\6423 {\6424 "commandString": "dmsg focusdialog select row"\6425 },\6426 {\6427 "commandString": "dmsg focusdialog licensing"\6428 },\6429 {\6430 "commandString": "dmsg focusdialog hline"\6431 },\6432 {\6433 "commandString": "dmsg focusdialog saveimage"\6434 },\6435 {\6436 "commandString": "dmsg focusdialog cvesettings"\6437 },\6438 {\6439 "commandString": "dmsg focusdialog keyboardshortcuts"\6440 },\6441 {\6442 "commandString": "dmsg focusdialog exportdgn"\6443 },\6444 {\6445 "commandString": "dmsg focusdialog exportdwg"\6446 },\6447 {\6448 "commandString": "dmsg focusdialog exportdxf"\6449 },\6450 {\6451 "commandString": "dmsg focusdialog exportdgnlib"\6452 },\6453 {\6454 "commandString": "dmsg focusdialog exportrdl"\6455 },\6456 {\6457 "commandString": "dmsg focusdialog exportv7"\6458 },\6459 {\6460 "commandString": "dmsg focusdialog exportv8"\6461 },\6462 {\6463 "commandString": "dmsg colorsquare"\6464 },\6465 {\6466 "commandString": "dmsg focusitem"\6467 },\6468 {\6469 "commandString": "dmsg closealldialogs"\6470 },\6471 {\6472 "commandString": "dmsg closeallframes"\6473 },\6474 {\6475 "commandString": "dmsg resetframes"\6476 },\6477 {\6478 "commandString": "dmsg dump"\6479 },\6480 {\6481 "commandString": "dmsg dump locks"\6482 },\6483 {\6484 "commandString": "dmsg dump toolbox"\6485 },\6486 {\6487 "commandString": "dmsg dump toolbox fillet"\6488 },\6489 {\6490 "commandString": "dmsg dump toolbox arc"\6491 },\6492 {\6493 "commandString": "dmsg dump toolbox text"\6494 },\6495 {\6496 "commandString": "dmsg dump toolbox change"\6497 },\6498 {\6499 "commandString": "dmsg dump toolbox modify"\6500 },\6501 {\6502 "commandString": "dmsg dump toolbox drop"\6503 },\6504 {\6505 "commandString": "dmsg dump toolbox acs"\6506 },\6507 {\6508 "commandString": "dmsg dump toolbox database"\6509 },\6510 {\6511 "commandString": "dmsg dump toolbox reference"\6512 },\6513 {\6514 "commandString": "dmsg dump toolbox references"\6515 },\6516 {\6517 "commandString": "dmsg dump toolbox measure"\6518 },\6519 {\6520 "commandString": "dmsg dump toolbox cloud"\6521 },\6522 {\6523 "commandString": "dmsg dump toolbox fence"\6524 },\6525 {\6526 "commandString": "dmsg dump toolbox detailingsymbols"\6527 },\6528 {\6529 "commandString": "dmsg dump toolbox xyztxt"\6530 },\6531 {\6532 "commandString": "dmsg dump toolbox visualization"\6533 },\6534 {\6535 "commandString": "dmsg dump toolbox primary"\6536 },\6537 {\6538 "commandString": "dmsg dump toolbox line"\6539 },\6540 {\6541 "commandString": "dmsg dump toolbox linear"\6542 },\6543 {\6544 "commandString": "dmsg dump toolbox polygons"\6545 },\6546 {\6547 "commandString": "dmsg dump toolbox groups"\6548 },\6549 {\6550 "commandString": "dmsg dump toolbox manipulate"\6551 },\6552 {\6553 "commandString": "dmsg dump toolbox cells"\6554 },\6555 {\6556 "commandString": "dmsg dump toolbox selection"\6557 },\6558 {\6559 "commandString": "dmsg dump toolbox points"\6560 },\6561 {\6562 "commandString": "dmsg dump toolbox 2dviewing"\6563 },\6564 {\6565 "commandString": "dmsg dump toolbox 3dviewing"\6566 },\6567 {\6568 "commandString": "dmsg dump toolbox dimension"\6569 },\6570 {\6571 "commandString": "dmsg dump toolbox dimensions"\6572 },\6573 {\6574 "commandString": "dmsg dump toolbox isometric"\6575 },\6576 {\6577 "commandString": "dmsg dump toolbox tags"\6578 },\6579 {\6580 "commandString": "dmsg dump toolbox annotate"\6581 },\6582 {\6583 "commandString": "dmsg dump toolbox annotation"\6584 },\6585 {\6586 "commandString": "dmsg dump toolbox standard"\6587 },\6588 {\6589 "commandString": "dmsg dump toolbox redline"\6590 },\6591 {\6592 "commandString": "dmsg dump toolbox mainclassic"\6593 },\6594 {\6595 "commandString": "dmsg dump toolbox common"\6596 },\6597 {\6598 "commandString": "dmsg dump toolbox links"\6599 },\6600 {\6601 "commandString": "dmsg dump toolbox dimangular"\6602 },\6603 {\6604 "commandString": "dmsg dump toolbox attributes"\6605 },\6606 {\6607 "commandString": "dmsg dump toolbox viewcontrol"\6608 },\6609 {\6610 "commandString": "dmsg dump toolbox tasknavigation"\6611 },\6612 {\6613 "commandString": "dmsg dump toolbox viewrotate"\6614 },\6615 {\6616 "commandString": "dmsg dump toolbox viewdisplaymode"\6617 },\6618 {\6619 "commandString": "dmsg dump toolbox viewperspective"\6620 },\6621 {\6622 "commandString": "dmsg dump toolbox viewproperties"\6623 },\6624 {\6625 "commandString": "dmsg dump toolbox locks"\6626 },\6627 {\6628 "commandString": "dmsg dump toolbox clipvolume"\6629 },\6630 {\6631 "commandString": "dmsg dump toolbox viewgroups"\6632 },\6633 {\6634 "commandString": "dmsg dump toolbox history"\6635 },\6636 {\6637 "commandString": "dmsg dump toolbox digitalsignatures"\6638 },\6639 {\6640 "commandString": "dmsg dump toolbox maintask"\6641 },\6642 {\6643 "commandString": "dmsg dump toolbox animation"\6644 },\6645 {\6646 "commandString": "dmsg dump toolbox basegeometry"\6647 },\6648 {\6649 "commandString": "dmsg dump toolbox changetracking"\6650 },\6651 {\6652 "commandString": "dmsg dump toolbox configuration"\6653 },\6654 {\6655 "commandString": "dmsg dump toolbox coordinatesystems"\6656 },\6657 {\6658 "commandString": "dmsg dump toolbox customlinestyles"\6659 },\6660 {\6661 "commandString": "dmsg dump toolbox featuresolids"\6662 },\6663 {\6664 "commandString": "dmsg dump toolbox models"\6665 },\6666 {\6667 "commandString": "dmsg dump toolbox screenmenus"\6668 },\6669 {\6670 "commandString": "dmsg dump toolbox ole"\6671 },\6672 {\6673 "commandString": "dmsg dump toolbox viewwindow"\6674 },\6675 {\6676 "commandString": "dmsg dump toolbox projectnavigation"\6677 },\6678 {\6679 "commandString": "dmsg dump toolbox properties"\6680 },\6681 {\6682 "commandString": "dmsg dump toolbox raster"\6683 },\6684 {\6685 "commandString": "dmsg dump toolbox security"\6686 },\6687 {\6688 "commandString": "dmsg dump toolbox sheetcomposition"\6689 },\6690 {\6691 "commandString": "dmsg dump toolbox itemtypes"\6692 },\6693 {\6694 "commandString": "dmsg dump toolbox uicustomization"\6695 },\6696 {\6697 "commandString": "dmsg dump toolbox view"\6698 },\6699 {\6700 "commandString": "dmsg dump toolbox geographic"\6701 },\6702 {\6703 "commandString": "dmsg dump toolbox savedview"\6704 },\6705 {\6706 "commandString": "dmsg dump toolbox manipulateclassic"\6707 },\6708 {\6709 "commandString": "dmsg dump toolbox changeclassic"\6710 },\6711 {\6712 "commandString": "dmsg dump toolbox linearclassic"\6713 },\6714 {\6715 "commandString": "dmsg dump toolbox groupsclassic"\6716 },\6717 {\6718 "commandString": "dmsg dump toolbox modifyclassic"\6719 },\6720 {\6721 "commandString": "dmsg dump toolbox textclassic"\6722 },\6723 {\6724 "commandString": "dmsg dump toolbox clashdetection"\6725 },\6726 {\6727 "commandString": "dmsg dump toolbox pointcloud"\6728 },\6729 {\6730 "commandString": "dmsg dump toolbox terrainmodel"\6731 },\6732 {\6733 "commandString": "dmsg dump attributes"\6734 },\6735 {\6736 "commandString": "dmsg dump readout"\6737 },\6738 {\6739 "commandString": "dmsg dump command"\6740 },\6741 {\6742 "commandString": "dmsg dump focus"\6743 },\6744 {\6745 "commandString": "dmsg dump focus command"\6746 },\6747 {\6748 "commandString": "dmsg dump standardalert"\6749 },\6750 {\6751 "commandString": "dmsg dump accusnap"\6752 },\6753 {\6754 "commandString": "dmsg dump snapvertical"\6755 },\6756 {\6757 "commandString": "dmsg dump advisory"\6758 },\6759 {\6760 "commandString": "dmsg dump closetoolboxes"\6761 },\6762 {\6763 "commandString": "dmsg dump tasknavigation"\6764 },\6765 {\6766 "commandString": "dmsg dump database"\6767 },\6768 {\6769 "commandString": "dmsg dump viewrotation"\6770 },\6771 {\6772 "commandString": "dmsg dump cellmaintenance"\6773 },\6774 {\6775 "commandString": "dmsg dump cellmaintenance on"\6776 },\6777 {\6778 "commandString": "dmsg dump cellmaintenance off"\6779 },\6780 {\6781 "commandString": "dmsg dump cellmaintenance toggle"\6782 },\6783 {\6784 "commandString": "dmsg dump cellmaintenance popup"\6785 },\6786 {\6787 "commandString": "dmsg dump activeangle"\6788 },\6789 {\6790 "commandString": "dmsg dump plot"\6791 },\6792 {\6793 "commandString": "dmsg dump preview"\6794 },\6795 {\6796 "commandString": "dmsg dump aboutdigitalrights"\6797 },\6798 {\6799 "commandString": "dmsg dump viewsettings"\6800 },\6801 {\6802 "commandString": "dmsg dump viewsettings on"\6803 },\6804 {\6805 "commandString": "dmsg dump viewsettings off"\6806 },\6807 {\6808 "commandString": "dmsg dump viewsettings toggle"\6809 },\6810 {\6811 "commandString": "dmsg dump viewsettings popup"\6812 },\6813 {\6814 "commandString": "dmsg dump cmdbrowse"\6815 },\6816 {\6817 "commandString": "dmsg dump cmdbrowse on"\6818 },\6819 {\6820 "commandString": "dmsg dump cmdbrowse off"\6821 },\6822 {\6823 "commandString": "dmsg dump cmdbrowse toggle"\6824 },\6825 {\6826 "commandString": "dmsg dump cmdbrowse popup"\6827 },\6828 {\6829 "commandString": "dmsg dump activescale"\6830 },\6831 {\6832 "commandString": "dmsg dump color"\6833 },\6834 {\6835 "commandString": "dmsg dump grid"\6836 },\6837 {\6838 "commandString": "dmsg dump camera"\6839 },\6840 {\6841 "commandString": "dmsg dump aboutconfiguration"\6842 },\6843 {\6844 "commandString": "dmsg dump funckeys"\6845 },\6846 {\6847 "commandString": "dmsg dump mdl"\6848 },\6849 {\6850 "commandString": "dmsg dump openfile"\6851 },\6852 {\6853 "commandString": "dmsg dump digitizing"\6854 },\6855 {\6856 "commandString": "dmsg dump aboutworkmode"\6857 },\6858 {\6859 "commandString": "dmsg dump display"\6860 },\6861 {\6862 "commandString": "dmsg dump toolsettings"\6863 },\6864 {\6865 "commandString": "dmsg dump image"\6866 },\6867 {\6868 "commandString": "dmsg dump aboutustn"\6869 },\6870 {\6871 "commandString": "dmsg dump locktoggles"\6872 },\6873 {\6874 "commandString": "dmsg dump saveas"\6875 },\6876 {\6877 "commandString": "dmsg dump dialogmessages"\6878 },\6879 {\6880 "commandString": "dmsg dump buttonmap"\6881 },\6882 {\6883 "commandString": "dmsg dump buttonmap2"\6884 },\6885 {\6886 "commandString": "dmsg dump lstylesetup"\6887 },\6888 {\6889 "commandString": "dmsg dump lstyleedit"\6890 },\6891 {\6892 "commandString": "dmsg dump licensemore"\6893 },\6894 {\6895 "commandString": "dmsg dump morewindows"\6896 },\6897 {\6898 "commandString": "dmsg dump updatesequence"\6899 },\6900 {\6901 "commandString": "dmsg dump snaps"\6902 },\6903 {\6904 "commandString": "dmsg dump export"\6905 },\6906 {\6907 "commandString": "dmsg dump multisnap"\6908 },\6909 {\6910 "commandString": "dmsg dump cbook"\6911 },\6912 {\6913 "commandString": "dmsg dump select"\6914 },\6915 {\6916 "commandString": "dmsg dump select row"\6917 },\6918 {\6919 "commandString": "dmsg dump licensing"\6920 },\6921 {\6922 "commandString": "dmsg dump hline"\6923 },\6924 {\6925 "commandString": "dmsg dump saveimage"\6926 },\6927 {\6928 "commandString": "dmsg dump cvesettings"\6929 },\6930 {\6931 "commandString": "dmsg dump keyboardshortcuts"\6932 },\6933 {\6934 "commandString": "dmsg dump exportdgn"\6935 },\6936 {\6937 "commandString": "dmsg dump exportdwg"\6938 },\6939 {\6940 "commandString": "dmsg dump exportdxf"\6941 },\6942 {\6943 "commandString": "dmsg dump exportdgnlib"\6944 },\6945 {\6946 "commandString": "dmsg dump exportrdl"\6947 },\6948 {\6949 "commandString": "dmsg dump exportv7"\6950 },\6951 {\6952 "commandString": "dmsg dump exportv8"\6953 },\6954 {\6955 "commandString": "dmsg sinkall"\6956 },\6957 {\6958 "commandString": "dmsg sinkall on"\6959 },\6960 {\6961 "commandString": "dmsg sinkall off"\6962 },\6963 {\6964 "commandString": "dmsg sinkall toggle"\6965 },\6966 {\6967 "commandString": "dmsg focusdebug"\6968 },\6969 {\6970 "commandString": "dmsg closetoolboxes"\6971 },\6972 {\6973 "commandString": "dmsg closetoolboxes docked"\6974 },\6975 {\6976 "commandString": "dmsg closetoolboxes undocked"\6977 },\6978 {\6979 "commandString": "dmsg closetoolboxes all"\6980 },\6981 {\6982 "commandString": "dmsg iconborders"\6983 },\6984 {\6985 "commandString": "dmsg iconborders on"\6986 },\6987 {\6988 "commandString": "dmsg iconborders off"\6989 },\6990 {\6991 "commandString": "dmsg iconborders toggle"\6992 },\6993 {\6994 "commandString": "dmsg updatenonviewcontents"\6995 },\6996 {\6997 "commandString": "dmsg reopenalldialogs"\6998 },\6999 {\7000 "commandString": "dmsg dialogfont"\7001 },\7002 {\7003 "commandString": "dmsg activatetoolbypath"\7004 },\7005 {\7006 "commandString": "dmsg activatetoolbyhash"\7007 },\7008 {\7009 "commandString": "dmsg tasknavigationtoggle"\7010 },\7011 {\7012 "commandString": "dmsg allowtoolselection"\7013 },\7014 {\7015 "commandString": "dmsg synchnamedtoggleicons"\7016 },\7017 {\7018 "commandString": "dmsg updatedialog"\7019 },\7020 {\7021 "commandString": "dmsg postprocessnamedtoolactivation"\7022 },\7023 {\7024 "commandString": "dmsg suspendtaskrefreshes"\7025 },\7026 {\7027 "commandString": "dmsg resumetaskrefreshes"\7028 },\7029 {\7030 "commandString": "dmsg colorscheme"\7031 },\7032 {\7033 "commandString": "dmsg activeview"\7034 },\7035 {\7036 "commandString": "dmsg debugitemrects"\7037 },\7038 {\7039 "commandString": "dmsg debugitemrects on"\7040 },\7041 {\7042 "commandString": "dmsg debugitemrects off"\7043 },\7044 {\7045 "commandString": "dmsg debugitemrects toggle"\7046 },\7047 {\7048 "commandString": "dmsg debugitemoverlap"\7049 },\7050 {\7051 "commandString": "dmsg debugitemoverlap on"\7052 },\7053 {\7054 "commandString": "dmsg debugitemoverlap off"\7055 },\7056 {\7057 "commandString": "dmsg debugitemoverlap toggle"\7058 },\7059 {\7060 "commandString": "dmsg debugitemoverrun"\7061 },\7062 {\7063 "commandString": "dmsg debugitemoverrun on"\7064 },\7065 {\7066 "commandString": "dmsg debugitemoverrun off"\7067 },\7068 {\7069 "commandString": "dmsg debugitemoverrun toggle"\7070 },\7071 {\7072 "commandString": "dmsg messageboxes"\7073 },\7074 {\7075 "commandString": "dmsg messageboxes standardalert"\7076 },\7077 {\7078 "commandString": "dmsg messageboxes mediumalert"\7079 },\7080 {\7081 "commandString": "dmsg messageboxes largealert"\7082 },\7083 {\7084 "commandString": "dmsg messageboxes largeyesno"\7085 },\7086 {\7087 "commandString": "dmsg messageboxes standardinfo"\7088 },\7089 {\7090 "commandString": "dmsg messageboxes mediuminfo"\7091 },\7092 {\7093 "commandString": "dmsg messageboxes largeinfo"\7094 },\7095 {\7096 "commandString": "dmsg messageboxes standardync"\7097 },\7098 {\7099 "commandString": "dmsg messageboxes mediumync"\7100 },\7101 {\7102 "commandString": "dmsg messageboxes standardyanc"\7103 },\7104 {\7105 "commandString": "dmsg messageboxes standardyanac"\7106 },\7107 {\7108 "commandString": "dmsg messageboxes standardyan"\7109 },\7110 {\7111 "commandString": "dmsg messageboxes standardyn"\7112 },\7113 {\7114 "commandString": "dmsg messageboxes mediumyn"\7115 },\7116 {\7117 "commandString": "dmsg messageboxes standardopt"\7118 },\7119 {\7120 "commandString": "dmsg messageboxes standardoptokc"\7121 },\7122 {\7123 "commandString": "dmsg messageboxes standardoptokcw"\7124 },\7125 {\7126 "commandString": "dmsg messageboxes v7designfile"\7127 },\7128 {\7129 "commandString": "dmsg messageboxes dwgaecfile"\7130 },\7131 {\7132 "commandString": "dmsg messageboxes resetmenuoptions"\7133 },\7134 {\7135 "commandString": "dmsg messageboxes balloontooltip"\7136 },\7137 {\7138 "commandString": "dmsg messageboxes worksetconflict"\7139 },\7140 {\7141 "commandString": "dmsg messageboxes unassociatedfile"\7142 },\7143 {\7144 "commandString": "dmsg messageboxes invalidactiveworkset"\7145 },\7146 {\7147 "commandString": "dmsg messageboxes worksetnotfound"\7148 },\7149 {\7150 "commandString": "dmsg messageboxes attachsourcefiles"\7151 },\7152 {\7153 "commandString": "dmsg messageboxes v7celllibconvert"\7154 },\7155 {\7156 "commandString": "dmsg advisory"\7157 },\7158 {\7159 "commandString": "dmsg advisory standard"\7160 },\7161 {\7162 "commandString": "dmsg advisory academic"\7163 },\7164 {\7165 "commandString": "dmsg password"\7166 },\7167 {\7168 "commandString": "dmsg password standard"\7169 },\7170 {\7171 "commandString": "dmsg modelchoose"\7172 },\7173 {\7174 "commandString": "dmsg deletingusedstyles"\7175 },\7176 {\7177 "commandString": "dmsg customscale"\7178 },\7179 {\7180 "commandString": "dmsg customsheetsize"\7181 },\7182 {\7183 "commandString": "dmsg createdrawing"\7184 },\7185 {\7186 "commandString": "dmsg ribbon"\7187 },\7188 {\7189 "commandString": "dmsg ribbon openbackstage"\7190 },\7191 {\7192 "commandString": "dmsg ribbon setactivetab"\7193 },\7194 {\7195 "commandString": "dmsg setuivisiblekey"\7196 },\7197 {\7198 "commandString": "dmsg clearuivisiblekey"\7199 },\7200 {\7201 "commandString": "dmsg setuienabledkey"\7202 },\7203 {\7204 "commandString": "dmsg clearuienabledkey"\7205 },\7206 {\7207 "commandString": "dmsg updateribbonsize"\7208 },\7209 {\7210 "commandString": "dmsg setribbonsize"\7211 },\7212 {\7213 "commandString": "dmsg setribbonsize standard"\7214 },\7215 {\7216 "commandString": "dmsg setribbonsize medium"\7217 },\7218 {\7219 "commandString": "dmsg setribbonsize touch"\7220 },\7221 {\7222 "commandString": "dmsg dumpxcommands"\7223 },\7224 {\7225 "commandString": "dmsg senduisyncmessage"\7226 },\7227 {\7228 "commandString": "dmsg readdialogcensus"\7229 },\7230 {\7231 "commandString": "close"\7232 },\7233 {\7234 "commandString": "close element"\7235 },\7236 {\7237 "commandString": "close design"\7238 },\7239 {\7240 "commandString": "render"\7241 },\7242 {\7243 "commandString": "render view"\7244 },\7245 {\7246 "commandString": "render view hidden"\7247 },\7248 {\7249 "commandString": "render view filled"\7250 },\7251 {\7252 "commandString": "render view smooth"\7253 },\7254 {\7255 "commandString": "render all"\7256 },\7257 {\7258 "commandString": "render all hidden"\7259 },\7260 {\7261 "commandString": "render all filled"\7262 },\7263 {\7264 "commandString": "render all smooth"\7265 },\7266 {\7267 "commandString": "render fence"\7268 },\7269 {\7270 "commandString": "render fence hidden"\7271 },\7272 {\7273 "commandString": "render fence filled"\7274 },\7275 {\7276 "commandString": "render fence smooth"\7277 },\7278 {\7279 "commandString": "render element"\7280 },\7281 {\7282 "commandString": "render element hidden"\7283 },\7284 {\7285 "commandString": "render element filled"\7286 },\7287 {\7288 "commandString": "render element smooth"\7289 },\7290 {\7291 "commandString": "render icon"\7292 },\7293 {\7294 "commandString": "exchangefile"\7295 },\7296 {\7297 "commandString": "resourcefile"\7298 },\7299 {\7300 "commandString": "resourcefile open"\7301 },\7302 {\7303 "commandString": "preview"\7304 },\7305 {\7306 "commandString": "qvision"\7307 },\7308 {\7309 "commandString": "qvision cleardag"\7310 },\7311 {\7312 "commandString": "qvision status"\7313 },\7314 {\7315 "commandString": "displayset"\7316 },\7317 {\7318 "commandString": "displayset set"\7319 },\7320 {\7321 "commandString": "displayset set selection"\7322 },\7323 {\7324 "commandString": "displayset set group"\7325 },\7326 {\7327 "commandString": "displayset set group nochildgroups"\7328 },\7329 {\7330 "commandString": "displayset set group childgroups"\7331 },\7332 {\7333 "commandString": "displayset add"\7334 },\7335 {\7336 "commandString": "displayset add selection"\7337 },\7338 {\7339 "commandString": "displayset add group"\7340 },\7341 {\7342 "commandString": "displayset add group nochildgroups"\7343 },\7344 {\7345 "commandString": "displayset add group childgroups"\7346 },\7347 {\7348 "commandString": "displayset remove"\7349 },\7350 {\7351 "commandString": "displayset remove selection"\7352 },\7353 {\7354 "commandString": "displayset remove group"\7355 },\7356 {\7357 "commandString": "displayset remove group nochildgroups"\7358 },\7359 {\7360 "commandString": "displayset remove group childgroups"\7361 },\7362 {\7363 "commandString": "displayset clear"\7364 },\7365 {\7366 "commandString": "order"\7367 },\7368 {\7369 "commandString": "order element"\7370 },\7371 {\7372 "commandString": "order element front"\7373 },\7374 {\7375 "commandString": "mlinestyle"\7376 },\7377 {\7378 "commandString": "mlinestyle active"\7379 },\7380 {\7381 "commandString": "multisnap"\7382 },\7383 {\7384 "commandString": "multisnap 1"\7385 },\7386 {\7387 "commandString": "multisnap 2"\7388 },\7389 {\7390 "commandString": "multisnap 3"\7391 },\7392 {\7393 "commandString": "multisnap guimvup"\7394 },\7395 {\7396 "commandString": "multisnap guimvdn"\7397 },\7398 {\7399 "commandString": "multisnap guiselall"\7400 },\7401 {\7402 "commandString": "multisnap guiselnone"\7403 },\7404 {\7405 "commandString": "multisnap guiresdef"\7406 },\7407 {\7408 "commandString": "note"\7409 },\7410 {\7411 "commandString": "note upgrade"\7412 },\7413 {\7414 "commandString": "newsession"\7415 },\7416 {\7417 "commandString": "export"\7418 },\7419 {\7420 "commandString": "export dwg"\7421 },\7422 {\7423 "commandString": "export dxf"\7424 },\7425 {\7426 "commandString": "export v8"\7427 },\7428 {\7429 "commandString": "export v7"\7430 },\7431 {\7432 "commandString": "dgnaudit"\7433 },\7434 {\7435 "commandString": "dgnaudit run"\7436 },\7437 {\7438 "commandString": "dgnaudit logfile"\7439 },\7440 {\7441 "commandString": "dgnaudit logfile set"\7442 },\7443 {\7444 "commandString": "dgnaudit logfile clear"\7445 },\7446 {\7447 "commandString": "dgnaudit tablecounts"\7448 },\7449 {\7450 "commandString": "dgnaudit internalids"\7451 },\7452 {\7453 "commandString": "dgnaudit graphicgroup"\7454 },\7455 {\7456 "commandString": "dgnaudit textnode"\7457 },\7458 {\7459 "commandString": "dgnaudit modelrefs"\7460 },\7461 {\7462 "commandString": "sectionclip"\7463 },\7464 {\7465 "commandString": "sectionclip createstep"\7466 },\7467 {\7468 "commandString": "sectionclip toggleclip"\7469 },\7470 {\7471 "commandString": "sectionclip flipdirection"\7472 },\7473 {\7474 "commandString": "sectionclip clipallsides"\7475 },\7476 {\7477 "commandString": "sectionclip unclipallsides"\7478 },\7479 {\7480 "commandString": "sectionclip apply"\7481 },\7482 {\7483 "commandString": "sectionclip fitview"\7484 },\7485 {\7486 "commandString": "sectionclip createdynamicview"\7487 },\7488 {\7489 "commandString": "sectionclip namedboundaryfitview"\7490 },\7491 {\7492 "commandString": "consolidate"\7493 },\7494 {\7495 "commandString": "inputmanager"\7496 },\7497 {\7498 "commandString": "inputmanager menu"\7499 },\7500 {\7501 "commandString": "inputmanager runtool"\7502 },\7503 {\7504 "commandString": "inputmanager transparency"\7505 },\7506 {\7507 "commandString": "inputmanager home"\7508 },\7509 {\7510 "commandString": "inputmanager training"\7511 },\7512 {\7513 "commandString": "inputmanager training off"\7514 },\7515 {\7516 "commandString": "inputmanager training on"\7517 },\7518 {\7519 "commandString": "inputmanager training refresh"\7520 },\7521 {\7522 "commandString": "inputmanager training hint"\7523 },\7524 {\7525 "commandString": "inputmanager popupitem"\7526 },\7527 {\7528 "commandString": "inputmanager popuprawitem"\7529 },\7530 {\7531 "commandString": "inputmanager currenttask"\7532 },\7533 {\7534 "commandString": "inputmanager cmdbrowse"\7535 },\7536 {\7537 "commandString": "task"\7538 },\7539 {\7540 "commandString": "task menu"\7541 },\7542 {\7543 "commandString": "task active"\7544 },\7545 {\7546 "commandString": "task init"\7547 },\7548 {\7549 "commandString": "task reload"\7550 },\7551 {\7552 "commandString": "task back"\7553 },\7554 {\7555 "commandString": "task forward"\7556 },\7557 {\7558 "commandString": "task sendtaskchangedasync"\7559 },\7560 {\7561 "commandString": "task reloadmain"\7562 },\7563 {\7564 "commandString": " xgraphics"\7565 },\7566 {\7567 "commandString": " xgraphics dump"\7568 },\7569 {\7570 "commandString": " xgraphics symboldump"\7571 },\7572 {\7573 "commandString": " xgraphics iddump"\7574 },\7575 {\7576 "commandString": " xgraphics compress"\7577 },\7578 {\7579 "commandString": " xgraphics statistics"\7580 },\7581 {\7582 "commandString": " xgraphics quick"\7583 },\7584 {\7585 "commandString": " xgraphics quick add"\7586 },\7587 {\7588 "commandString": " xgraphics quick delete"\7589 },\7590 {\7591 "commandString": " xgraphics quick force"\7592 },\7593 {\7594 "commandString": " xgraphics quick unforce"\7595 },\7596 {\7597 "commandString": " xgraphics quick statistics"\7598 },\7599 {\7600 "commandString": " xgraphics quick unstatistics"\7601 },\7602 {\7603 "commandString": " xgraphics quick dump"\7604 },\7605 {\7606 "commandString": " xgraphics synch"\7607 },\7608 {\7609 "commandString": " xgraphics unify"\7610 },\7611 {\7612 "commandString": " xgraphics debugbody"\7613 },\7614 {\7615 "commandString": "ribbon"\7616 },\7617 {\7618 "commandString": "ribbon activatekeytips"\7619 },\7620 {\7621 "commandString": "keyboardshortcuts"\7622 },\7623 {\7624 "commandString": "keyboardshortcuts displaymenu"\7625 },\7626 {\7627 "commandString": "keyboardshortcuts new"\7628 },\7629 {\7630 "commandString": "keyboardshortcuts newchild"\7631 },\7632 {\7633 "commandString": "keyboardshortcuts delete"\7634 },\7635 {\7636 "commandString": "keyboardshortcuts editchar"\7637 },\7638 {\7639 "commandString": "keyboardshortcuts editlabel"\7640 },\7641 {\7642 "commandString": "keyboardshortcuts editkeyin"\7643 },\7644 {\7645 "commandString": "keyboardshortcuts up"\7646 },\7647 {\7648 "commandString": "keyboardshortcuts down"\7649 },\7650 {\7651 "commandString": "keyboardshortcuts close"\7652 },\7653 {\7654 "commandString": "keyboardshortcuts apply"\7655 },\7656 {\7657 "commandString": "calculator"\7658 },\7659 {\7660 "commandString": "calculator format"\7661 },\7662 {\7663 "commandString": "calculator format int"\7664 },\7665 {\7666 "commandString": "calculator format double"\7667 },\7668 {\7669 "commandString": "calculator declare"\7670 },\7671 {\7672 "commandString": "calculator declare int"\7673 },\7674 {\7675 "commandString": "calculator declare double"\7676 },\7677 {\7678 "commandString": "calculator show"\7679 },\7680 {\7681 "commandString": "calculator show variables"\7682 },\7683 {\7684 "commandString": "calculator show functions"\7685 },\7686 {\7687 "commandString": "uccalc"\7688 },\7689 {\7690 "commandString": "preprocessor"\7691 },\7692 {\7693 "commandString": "preprocessor format"\7694 },\7695 {\7696 "commandString": "preprocessor format int"\7697 },\7698 {\7699 "commandString": "preprocessor format double"\7700 },\7701 {\7702 "commandString": "preprocessor toggle"\7703 },\7704 {\7705 "commandString": "preprocessor on"\7706 },\7707 {\7708 "commandString": "preprocessor off"\7709 },\7710 {\7711 "commandString": "preprocessor start"\7712 },\7713 {\7714 "commandString": "preprocessor end"\7715 },\7716 {\7717 "commandString": "preprocessor status"\7718 },\7719 {\7720 "commandString": "file"\7721 },\7722 {\7723 "commandString": "file associateworkset"\7724 },\7725 {\7726 "commandString": "file disassociateworkset"\7727 },\7728 {\7729 "commandString": "runxcommand"\7730 },\7731 {\7732 "commandString": "v8workspace"\7733 },\7734 {\7735 "commandString": "v8workspace convert"\7736 },\7737 {\7738 "commandString": "backgroundmap"\7739 },\7740 {\7741 "commandString": "backgroundmap cachedelete"\7742 },\7743 {\7744 "commandString": "backgroundmap showproviders"\7745 },\7746 {\7747 "commandString": "backgroundmap statistics"\7748 },\7749 {\7750 "commandString": "backgroundmap resetstatistics"\7751 },\7752 {\7753 "commandString": "backgroundmap showtermsofuse"\7754 },\7755 {\7756 "commandString": "exit"\7757 },\7758 {\7759 "commandString": "exit query"\7760 },\7761 {\7762 "commandString": "exit nouc"\7763 },\7764 {\7765 "commandString": "quit"\7766 },\7767 {\7768 "commandString": "quit query"\7769 },\7770 {\7771 "commandString": "quit nouc"\7772 },\7773 {\7774 "commandString": "ex"\7775 },\7776 {\7777 "commandString": "qu"\7778 }\...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1import { commandString } from 'storybook-root';2commandString('echo hello world');3import { commandString } from 'storybook-root';4commandString('echo hello world');5import { commandString } from 'storybook-root';6commandString('echo hello world')7 .then((output) => console.log(output))8 .catch((error) => console.log(error));9import { commandString } from 'storybook-root';10commandString('echo hello world')11 .then((output) => console.log(output))12 .catch((error) => console.log(error));13import { commandString } from 'storybook-root';14commandString('echo hello world')15 .then((output) => console.log(output))16 .catch((error) => console.log(error));17import { commandString } from 'storybook-root';18commandString('echo hello world')19 .then((output) => console.log(output))20 .catch((error) => console.log(error));21import { commandString } from 'storybook-root';22commandString('echo hello world')23 .then((output) => console.log(output))24 .catch((error) => console.log(error));25import { commandString } from 'storybook-root';26commandString('echo hello world')27 .then((output) => console.log(output))28 .catch((error) => console.log(error));

Full Screen

Using AI Code Generation

copy

Full Screen

1var storybookRoot = document.querySelector('storybook-root');2storybookRoot.commandString('selectStory', 'button', 'primary');3var storybookRoot = document.querySelector('storybook-root');4storybookRoot.commandString('selectStory', 'button', 'primary');5var storybookRoot = document.querySelector('storybook-root');6storybookRoot.commandString('selectStory', 'button', 'primary');7var storybookRoot = document.querySelector('storybook-root');8storybookRoot.commandString('selectStory', 'button', 'primary');9var storybookRoot = document.querySelector('storybook-root');10storybookRoot.commandString('selectStory', 'button', 'primary');11var storybookRoot = document.querySelector('storybook-root');12storybookRoot.commandString('selectStory', 'button', 'primary');13var storybookRoot = document.querySelector('storybook-root');14storybookRoot.commandString('selectStory', 'button', 'primary');15var storybookRoot = document.querySelector('storybook-root');16storybookRoot.commandString('selectStory', 'button', 'primary');17var storybookRoot = document.querySelector('storybook-root');18storybookRoot.commandString('selectStory', 'button', 'primary');19var storybookRoot = document.querySelector('storybook-root');20storybookRoot.commandString('selectStory', 'button', 'primary');21var storybookRoot = document.querySelector('storybook-root');22storybookRoot.commandString('selectStory', 'button', 'primary');23var storybookRoot = document.querySelector('storybook-root');

Full Screen

Using AI Code Generation

copy

Full Screen

1var storybook = require('storybook-root');2storybook.commandString("some command string", function (err, data) {3 console.log(data);4});5var storybook = require('storybook-root');6storybook.commandString("some command string", function (err, data) {7 console.log(data);8});9var storybook = require('storybook-root');10storybook.commandString("some command string", function (err, data) {11 console.log(data);12});13var storybook = require('storybook-root');14storybook.commandString("some command string", function (err, data) {15 console.log(data);16});17var storybook = require('storybook-root');18storybook.commandString("some command string", function (err, data) {19 console.log(data);20});21var storybook = require('storybook-root');22storybook.commandString("some command string", function (err, data) {23 console.log(data);24});25var storybook = require('storybook-root');26storybook.commandString("some command string", function (err, data) {27 console.log(data);28});29var storybook = require('storybook-root');30storybook.commandString("some command string", function (err, data) {31 console.log(data);32});33var storybook = require('storybook-root');34storybook.commandString("some command string", function (err, data) {35 console.log(data);36});37var storybook = require('storybook-root');38storybook.commandString("some command string", function (err, data) {39 console.log(data);40});41var storybook = require('storybook-root

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run storybook-root automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful