跳转至

CAD命令信息

读取CAD命令信息

public static CustomizationSection GetManCui(out string expand)
{
    expand = "";
    //打开主CUI文件,可以考虑局部cui文件
    string old = (string)Application.GetSystemVariable("MENUNAME");
    var mainCuiFile = old;
    if (mainCuiFile == null)
    {
        return default;
    }
    if (File.Exists(mainCuiFile + ".cuix"))
    {
        mainCuiFile += ".cuix";//高版本
        expand = ".cuix";
    }
    else if (File.Exists(mainCuiFile + ".cui"))
    {
        mainCuiFile += ".cui";//低版本08
        expand = ".cui";
    }
    if (mainCuiFile == old)
    {
        return default;
    }
    return new CustomizationSection(mainCuiFile);
}

var cs = GetManCui(out var expand);
var list = cs.MenuGroup.MacroGroups;
var str = new StringBuilder();
str.AppendLine("|元素ID|命令名称|说明|宏|");
str.AppendLine("|---|---|---|---|");
for (int i = 0; i < list.Count; i++)
{
    var macroGroup = list[i];
    for (int j = 0; j < macroGroup.MenuMacros.Count; j++)
    {
        var mMc = macroGroup.MenuMacros[j];
        str.AppendLine($"| {mMc.ElementID} | {mMc.macro.Name} | {mMc.macro.HelpString?.Replace("\r\n", "")} | `{mMc.macro.Command?.Replace("\n", " ")}`| ");
    }
}
Console.WriteLine(str.ToString());

英文版

元素ID 命令名称 说明
MM_0001 Grips Menu $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,5),GRIP_),$P0=ACAD.GRIPS $P0=*);
MM_0002 Snap Menu $P0=SNAP $p0=*
MM_0003 Cancel ^C^C
MM_0004 Toggle Snap ^B
MM_0005 Toggle Ortho ^O
MM_0006 Toggle Grid ^G
MM_0007 Toggle Coords '_.coords $M=$(if,$(and,$(getvar,coords),2),0,$(+,$(getvar,coords),1))
MM_0008 Toggle Isoplane ^E
MM_0009 Toggle Tablet ^T
ID_Tracking Snap, Temporary track point Creates a temporary point used by Osnaps _tt
ID_From Snap, From Locates a point offset from a reference point within a command _from
ID_MidTwoPts Snap, Mid Between 2 Points Finds the mid between two points _m2p
ID_PointFilx Snap, Point Filters, .X Specifies a .X point filter .X
ID_PointFily Snap, Point Filters, .Y Specifies a .Y point filter .Y
ID_PointFilz Snap, Point Filters, .Z Specifies a .Z point filter .Z
ID_PointFixy Snap, Point Filters, .XY Specifies a .XY point filter .XY
ID_PointFixz Snap, Point Filters, .XZ Specifies a .XZ point filter .XZ
ID_PointFiyz Snap, Point Filters, .YZ Specifies a .YZ point filter .YZ
ID_OsnapEndp Snap, Endpoint Snaps to the closest endpoint of an object _endp
ID_OsnapMidp Snap, Midpoint Snaps to the midpoint of an object _mid
ID_OsnapInte Snap, Intersection Snaps to the intersection of two objects _int
ID_OsnapAppa Snap, Apparent Intersect Snaps to the apparent intersection of two objects _appint
ID_OsnapExte Snap, Extension Snaps to the phantom extension of an arc or line _ext
ID_OsnapCent Snap, Center Snaps to the center of an arc, circle, ellipse, or elliptical arc _cen
ID_OsnapQuad Snap, Quadrant Snaps to a quadrant point of an arc, circle, ellipse, or elliptical arc _qua
ID_OsnapTang Snap, Tangent Snaps to the tangent of an arc, circle, ellipse, elliptical arc, or spline _tan
ID_OsnapPerp Snap, Perpendicular Snaps to a point perpendicular to an object _per
ID_OsnapPara Snap, Parallel Snaps parallel to a specified line _par
ID_OsnapNode Snap, Node Snaps to a point object _nod
ID_OsnapInse Snap, Insert Snaps to the insertion point of objects such as text, blocks, or attributes _ins
ID_OsnapNear Snap, Nearest Snaps to the nearest point on an object _nea
ID_OsnapNone Snap, None Suppresses running object snap for the current selection _non
ID_Osnap Snap, Osnap Settings... Sets running object snap modes '_+dsettings 2
ID_3dOsnapVert Vertex Snaps to the closest vertex of an edge _zvert
ID_3dOsnapMidEdge Midpoint on Edge Snaps to the midpoint of an edge _zmid
ID_3dOsnapNearFace Nearest to Face Snaps to the nearest point on a surface _znea
ID_3dOsnapKnot Snap, Node Snaps to a point spline knot _zkno
ID_3dOsnapCentFace Center of Face Snaps to the center of a surface _zcen
ID_3dOsnapPerp Perpendicular Snaps to a point perpendicular to an object _zper
ID_3dOsnapNone None Suppresses running 3D object snap for the current selection _znon
ID_3dOsnap 3D Osnap Settings... Sets running 3D object snap modes '_+dsettings 5
ID_PCOsnapNode Node of point cloud Snaps to closest point in point cloud _pnod
ID_PCOsnapNearPlane Nearest plane of point cloud Snaps to the nearest point on planar segment of point cloud _pnea
ID_PCOsnapPerp Perpendicular to point cloud Snaps perpendicular to a planar segment of point cloud _pper
ID_PCOsnapPint Intersection of point cloud Snaps to intersection point of section line vectors _pint
ID_PCOsnapPedg Nearest to edge of point cloud Snaps to nearest point on intersection line of two planes _pedg
ID_PCOsnapPped Perpendicular to edge of point cloud Snaps perpendicular to the intersection line of two planes _pped
ID_PCOsnapPcl Intersection of 3 planes Snaps to intersection point of 3 planes _pcl
ID_PCOsnapPcor nearest point on centerline of cylinder Snaps nearest point on centerline of cylinder _pcor
ID_PC_SAVE_CROP_SATE New Crop State Saves the current crop state to a name ^C^C_pointcloudcropstate _save
ID_New New... Creates a new drawing file ^C^C_new
ID_NewSheet New Sheet Set... Creates a new sheet set ^c^c_newsheetset
ID_Open Open... Opens an existing drawing file ^C^C_open
ID_OpenSheet Open Sheet Set... Opens a specified sheet set ^c^c_opensheetset
ID_OpenMarkupDWF Load Markup Set... Loads a DWF file that contains markups ^c^c_opendwfmarkup
ID_DWG_CLOSE Close Closes the current drawing ^C^C_close
ID_PartialOp Partial Load Loads additional geometry into a partially opened drawing ^C^C_partiaload
ID_Save Save Saves the current drawing ^C^C_qsave
ID_UIE_Save Save Saves the current drawing ^C^C_save
ID_Saveas Save As... Saves a copy of the current drawing under a new file name ^C^C_saveas
ID_ETransmit eTransmit... Packages a set of files for Internet transmission ^C^C_etransmit
ID_Export Export... Saves the objects in a drawing to a different file format ^C^C_export
ID_PlotSetup Page Setup Controls the page layout, plotting device, paper size, and other settings for each new layout ^C^C_pagesetup
ID_PlotMgr Plotter Manager... Displays the Plotter Manager, where you can add or edit a plotter configuration ^C^C_plottermanager
ID_PlotStyMgr Plot Style Manager... Opens a file folder, where you can add or edit a plot style table ^C^C_stylesmanager
ID_Preview Plot Preview Displays the drawing as it will be plotted ^C^C_preview
ID_Print Plot... Prints a drawing to a plotter, printer, or file ^C^C_plot
ID_Pub Publish... Publishes drawings to an electronic sheet set (DWF, DWFx, or PDF files) or to a plotter ^C^C_publish
ID_PubDetails View Plot and Publish Details... Displays information about plot and publish jobs completed in the current session ^C^c_viewplotdetails
ID_Audit Audit Evaluates the integrity of a drawing and corrects some errors ^C^C_audit
ID_Recover Recover... Repairs and then opens a damaged drawing file ^C^C_recover
ID_OpenDR Drawing Recovery Manager... Displays a list of drawing files that can be recovered after a program or system failure ^C^C_drawingrecovery
ID_BupdateA Update Block Icons Generates preview images for blocks displayed in DesignCenter ^C^C_blockicon
ID_Purge Purge... Removes unused named items, such as block definitions and layers, from the drawing ^C^C_+purge 0
ID_PLUSPurge Find Non-Purgeable Items Previews objects that you can't purge and finds those objects in the current drawing ^C^C_+purge 1
ID_ExportLayout Export Layout to Model... Creates a visual representation of the current layout in the model space of a new drawing ^C^C_exportlayout
ID_SendMail Send... Sends the current drawing file as an email attachment or FAX ``
ID_Props Drawing Properties... Sets and displays the file properties of the current drawing ^C^C_dwgprops
ID_MRU Drawing History Opens this drawing ``
ID_Quit Exit Quit the application; prompts to save documents ^C^C_quit
ID_U Undo Reverses the most recent action _u
ID_Redo Redo Reverses the effects of the previous UNDO or U command ^C^C_mredo 1
ID_UIE_Redo Redo Reverses the effects of the previous UNDO or U command ^C^C_redo
ID_Cutclip Cut Copies selected objects to the Clipboard and removes them from the drawing ^C^C_cutclip
ID_Copyclip Copy Clip Copies selected objects to the Clipboard ^C^C_copyclip
ID_Copybase Copy with Base Point Copies selected objects to the Clipboard along with a specified base point ^C^C_copybase
ID_Copylink Copy Link Copies the current view to the Clipboard for linking to other OLE applications ^C^C_copylink
ID_Pasteclip Paste Pastes objects from the Clipboard into the current drawing ^C^C_pasteclip
ID_Pastebloc Paste as Block Pastes objects from the Clipboard into the current drawing as a block ^C^C_pasteblock
ID_Pastehlnk Paste as Hyperlink Creates a hyperlink to a file, and associates it with a selected object ^C^C_pasteashyperlink
ID_Pasteorig Paste to Original Coordinates Pastes objects from the Clipboard into the current drawing using the original coordinates ^C^C_pasteorig
ID_Pastesp Paste Special... Pastes objects from the Clipboard into the current drawing and controls the format of the data ^C^C_pastespec
ID_Erase Erase Removes objects from a drawing ^C^C_erase
ID_SelAll Select All Selects all objects in either model space or the current layout, except those objects on frozen or on locked layers ^C^C_ai_selall
ID_Links OLE Links... Updates, changes, and cancels existing OLE links ^C^C_olelinks
ID_TextFind Find... Finds, replaces, selects, or zooms to specified text ^C^C_find
ID_Redrawall Redraw Refreshes the display of all viewports '_redrawall
ID_Regen Regen Regenerates the entire drawing from the drawing database ^C^C_regen
ID_Regenall Regen All ^C^C_regenall
ID_ZoomRealt Zoom Realtime Zooms to increase or decrease the apparent size of objects in the current viewport '_zoom ;
ID_ZoomPrevi Zoom, Previous Zooms to display the previous view '_zoom _p
ID_ZoomWindo Zoom Window Zooms to display an area specified by a rectangular window '_zoom _w
ID_ZoomDynam Zoom, Dynamic Pans and zooms using a rectangular viewbox '_zoom _d
ID_ZoomScale Zoom, Scale Zooms to change the magnification of a view using a scale factor '_zoom _s
ID_ZoomCente Zoom, Center Zooms to display a view defined by a center point and a magnification value or a height '_zoom _c
ID_ZoomObjec Zoom, Object Zooms to display one or more selected objects as large as possible and in the center of the view '_zoom _o
ID_ZoomIn Zoom, In Zooms to increase the magnification of the current view by a factor of 2 '_zoom 2x
ID_ZoomOut Zoom, Out Zooms to decrease the magnification of the current view by a factor of 2 '_zoom .5x
ID_ZoomAll Zoom, All Zooms to display all visible objects and visual aids '_zoom _all
ID_ZoomExten Zoom Extents Zooms to display the maximum extents of all objects '_zoom _e
ID_Pan Pan, Realtime Moves the view in the current viewport '_pan
ID_PanPick Pan, Point Moves the view by the specified distance '_-pan
ID_PanLeft Pan, Left Moves the view to the left ^P'_-pan (trans (list (* -0.2 (getvar "viewsize")) 0) 0 1) ;^P
ID_PanRight Pan, Right Moves the view to the right ^P'_-pan (trans (list (* 0.2 (getvar "viewsize")) 0) 0 1) ;^P
ID_PanUp Pan, Up Moves the view up ^P'_-pan (trans (list 0 (* 0.2 (getvar "viewsize"))) 0 1) ;^P
ID_PanDown Pan, Down Moves the view down ^P'_-pan (trans (list 0 (* -0.2 (getvar "viewsize"))) 0 1) ;^P
ID_CleanScreen Clean Screen Toggles clean screen mode on and off $M=$(if,$(and,$(getvar,CleanScreenState),1),^C^C_CleanScreenOFF,^C^C_CleanScreenON)
ID_Ai_tiledv Viewports, Named Viewports... Displays a list of saved viewport configurations in the drawing ^C^C_+vports 1
ID_VportsSav Viewports, New Viewports... Displays the Viewports dialog box for creating new or restoring saved viewport configurations ^C^C_+vports 0
ID_VportsSin Viewports, 1 Viewport Returns the drawing to a single viewport view, using the view from the active viewport ^C^C$M=$(if,$(eq,$(getvar,tilemode),1),^C^C_-vports _si,^C^C_-vports)
ID_Vports2 Viewports, 2 Viewports Creates two equal viewports ^C^C_-vports _2
ID_Vports3 Viewports, 3 Viewports Creates three viewports ^C^C_-vports _3
ID_Vports4 Viewports, 4 Viewports Creates four viewports of equal size ^C^C_-vports _4
ID_VportsRes Viewports, Polygonal Viewport Creates an irregularly shaped viewport defined by specifying points ^C^C_-vports _p
ID_VportsDel Viewports, Object Specifies a closed polyline, ellipse, spline, region, or circle to convert into a viewport ^C^C_-vports _o
ID_VportsJoi Viewports, Join Combines two adjacent model viewports into one larger viewport ^C^C_-vports _j
ID_Ddview Named Views... Manages Named Views. Allows creating, deleting, renaming, and editing named views. ^C^C_view
ID_Ddvpoint View, Viewpoint Presets... Sets the three-dimensional viewing direction ^C^C_vpoint
ID_CurScale View, CurrentScale Show current scale only ^C^C_ANNOALLVISIBLE 0
ID_AllScale View, AllScale Show all scales ^C^C_ANNOALLVISIBLE 1
ID_VpointTri View, Viewpoint Displays a compass and tripod for defining a view direction in model space ^C^C_-vpoint ;
ID_PlanCurre Plan, Current UCS Displays the plan view of a specified user coordinate system ^C^C_plan ;
ID_PlanWorld Plan, World UCS Displays the plan view of the World Coordinate System ^C^C_plan _w
ID_PlanUCS Plan, Named UCS Displays the plan view of a previously saved user coordinate system ^C^C_plan _u
ID_VpointTop View, Top Sets the view point to top ^C^C_-view _top
ID_VpointBot View, Bottom Sets the view point to bottom ^C^C_-view _bottom
ID_VpointLef View, Left Sets the view point to left ^C^C_-view _left
ID_VpointRig View, Right Sets the view point to right ^C^C_-view _right
ID_VpointFro View, Front Sets the view point to front ^C^C_-view _front
ID_VpointBac View, Back Sets the view point to back ^C^C_-view _back
ID_VpointSW View, SW Isometric Sets the view point to southwest isometric ^C^C_-view _swiso
ID_VpointSE View, SE Isometric Sets the view point to southeast isometric ^C^C_-view _seiso
ID_VpointNE View, NE Isometric Sets the view point to northeast isometric ^C^C_-view _neiso
ID_VpointNW View, NW Isometric Sets the view point to northwest isometric ^C^C_-view _nwiso
ID_3d_orbit 3D Orbit Controls the interactive viewing of objects in 3D '_3dorbit
ID_Hide Hide Regenerates a 3D model with hidden lines suppressed ^C^C_hide
ID_2doptim Shademode, 2D Wireframe Set viewport to 2D wireframe $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_shademode,^C^C_shademode _2)
ID_Wireframe Shademode, 3D Wireframe Set viewport to 3D wireframe $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_shademode,^C^C_shademode _3)
ID_Hidden Shademode, Hidden Set viewport to hidden line $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_shademode,^C^C_shademode _h)
ID_Flat Shademode, Flat Shaded Set viewport to flat shaded $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_shademode,^C^C_shademode _f)
ID_Gouraud Shademode, Gouraud Shaded Set viewport to Gouraud shaded $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_shademode,^C^C_shademode _g)
ID_FlatEdges Shademode, Flat Shaded, Edges On Set viewport to flat shaded, edges on $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_shademode,^C^C_shademode _l)
ID_GourEdges Shademode, Gouraud Shaded, Edges On Set viewport to Gouraud shaded, edges on $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_shademode,^C^C_shademode _o)
ID_Scene Scene... Manages scenes in model space ^C^C_scene
ID_Light Light... Manages lights and lighting effects ^C^C_light
ID_Rmat Materials Browser Opens and closes Materials Browser $M=$(if,$(and,$(>,$(getvar,matbrowserstate),0)),^C^C_matbrowserclose,^C^C_matbrowseropen)
ID_ABL Attach By Layer Associates materials with layers ^C^C_MaterialAttach
ID_VSMM0 Materials and Textures Off Turns off materials and textures ^C^C_VSMATERIALMODE 0
ID_VSMM1 Materials On/Textures Off Turns on materials and turns off textures ^C^C_VSMATERIALMODE 1
ID_VSMM2 Materials and Textures On Turns on materials and textures ^C^C_VSMATERIALMODE 2
ID_Copy_Map Copy Mapping Coordinates Applies the mapping from the original object or face to the selected objects $M=$(if,$(eq,$(getvar,cvport),1),^C^C_MaterialMap,^C^C_MaterialMap _Y)
ID_Reset_Map Reset Mapping Coordinates Resets the UV coordinates to the default values for the map $M=$(if,$(eq,$(getvar,cvport),1),^C^C_MaterialMap,^C^C_MaterialMap _R)
ID_Matlib Materials Library... Imports and exports materials to and from a library of materials ^C^C_matlib
ID_Setuv Mapping... Maps materials onto objects ^C^C_setuv
ID_Adjust_Environment_And_Exposure Adjust Environment and Exposure... Launches the Render Environment and Exposure palette where lighting and background, dark/bright and cool/warm tones are applied to the scene. $M=$(if,$(and,$(>,$(getvar,renderenvstate),0)),^C^C_renderexposureclose,^C^C_renderexposure)
MM_240_CF4EA Adjust Environment and Exposure... Launches the Render Environment and Exposure palette where lighting and background, dark/bright and cool/warm tones are applied to the scene. $M=$(if,$(and,$(>,$(getvar,renderenvstate),0)),^C^C_renderenvironmentclose,^C^C_renderenvironment)
ID_Rpref Render Preset Manager Displays or hides the Render Preset Manager palette for access to the rendering settings $M=$(if,$(and,$(>,$(getvar,renderprefsstate),0)),^C^C_rprefclose,^C^C_rpref)
MM_240_9D5FD Render Preset Manager Displays or hides the Render Preset Manager palette for access to the rendering settings $M=$(if,$(and,$(>,$(getvar,renderprefsstate),0)),^C^C_renderpresetsclose,^C^C_renderpresets)
ID_Stats Statistics... Displays rendering statistics ^C^C_stats
ID_UcsiconOn UCS Icon, On Controls the visibility and placement of the UCS icon $M=$(if,$(and,$(getvar,ucsicon),1),^C^C_ucsicon _off,^C^C_ucsicon _on)
ID_UcsiconOr UCS Icon, Origin Displays the UCS icon at the origin of the user coordinate system $M=$(if,$(and,$(getvar,ucsicon),2),^C^C_ucsicon _no,^C^C_ucsicon _or)
ID_UcsiconPr UCS Icon, Properties... Controls the style, size and color of the UCS icon ^C^C_ucsicon _p
ID_AttdispNo Attribute Display, Normal Restores the original visibility settings for all attributes in a drawing '_attdisp _n
ID_AttdispOn Attribute Display, On Makes all attributes visible, overriding the original visibility settings '_attdisp _on
ID_AttdispOf Attribute Display, Off Makes all attributes invisible, overriding the original visibility settings '_attdisp _off
ID_Textscr Text Window Opens the text window ^P'_textscr
ID_Toolbar Toolbars... Displays, hides, and customizes toolbars ^C^C_toolbar
ID_Ddinsert Block... Inserts a block or a drawing in the current drawing $M=$(if,$(and,$(getvar,blockstate),1),'^C^C_blocksPaletteClose,'^C^C_blockspalette)
ID_Xattach DWG Reference... Inserts a DWG file as an external reference (xref) ^C^C_xattach
ID_Imageatta Raster Image Reference... Inserts a reference to an image file ^C^C_imageattach
ID_Field Field... Inserts a string of text that can be updated automatically as the field value changes ^c^c_Field
ID_NewLayout Layout, New Layout Creates and modifies drawing Layout tabs ^C^C_layout _new
ID_TmplLayou Layout, Layout from Template... Inserts a new layout based on an existing layout template ^C^C^R_layout _template
ID_LayoutWiz Layout, Create Layout Wizard Creates a new Layout tab and specifies page and plot settings ^C^C_layoutwizard
ID_3dsin 3D Studio... Imports an Autodesk 3ds MAX (3DS) file ^C^C_3dsin
ID_Acisin ACIS File... Imports an ACIS (SAT) file and creates 3D solid, body, or region objects ^C^C_acisin
ID_Dxbin Drawing Exchange Binary... Imports an AutoCAD DXB (drawing interchange binary) file ^C^C_dxbin
ID_Wmfin Windows Metafile... Imports a Windows metafile ^C^C_wmfin
ID_Insertobj OLE Object... Inserts a linked or embedded object ^C^C_insertobj
ID_Xref Attach Xref Attaches an external reference to the current drawing ^C^C_xattach
ID_Image Attach Image Inserts images in many formats into an AutoCAD drawing file ^C^C_imageattach
ID_Hyperlink Hyperlink... Attaches a hyperlink to an object or modifies an existing hyperlink ^C^C_hyperlink
ID_Layer Layer Properties Manages layers and layer properties $M=$(if,$(and,$(>,$(getvar,LayerManagerState),0)),^C^C'_LayerClose,^C^C'_Layer)
ID_Ddcolor Color... Sets the color for new objects '_color
ID_Linetype Linetype... Loads and sets linetypes '_linetype
ID_Linewt Lineweight... Sets the current lineweight, lineweight display options, and lineweight units '_lweight
ID_Transparency Transparency Sets the current transparency '_cetransparency
ID_ScaleList Scale List... Controls the list of scales available for layout viewports, page layouts, and plotting '_scalelistedit
ID_Style Text Style... Creates, modifies, or specifies text styles '_style
ID_Ddim Dimension, Dimension Style... Creates and modifies dimension styles '_dimstyle
ID_TblStyle Table Style... Creates, modifies, or specifies table styles ^c^c_tablestyle
ID_PlotStyle Plot Style... Sets the current plot style for new objects, or the assigned plot style for selected objects ^C^C_plotstyle
ID_Ddptype Point Style... Specifies the display style and size of point objects '_ptype
ID_Mlstyle Multiline Style... Manages styles for multiple parallel lines ^C^C_mlstyle
ID_Units Units... Controls the displayed precision and format for coordinates and angles '_units
ID_Thickness Thickness Sets the current 3D thickness '_thickness
ID_Limits Drawing Limits Sets and controls the limits of the grid display in the current Model or Layout tab '_limits
ID_Ddrename Rename... Changes the names assigned to items such as layers and dimension styles ^C^C_rename
ID_Spell Spell Check Checks for spelling errors in all or part of a drawing '_spell
ID_Qselect Quick Select... Creates a selection set based on filtering criteria ^C^C_qselect
ID_DrawordeF Draw Order, Bring to Front Forces selected objects to be displayed in front of all other objects ^C^C^P_ai_draworder _Front ^P
ID_DrawordeB Draw Order, Send to Back Forces selected objects to be displayed behind all other objects ^C^C^P_ai_draworder _Back ^P
ID_DrawordeA Draw Order, Bring Above Objects Forces selected objects to be displayed in front of specified reference objects ^C^C^P_ai_draworder _Above ^P
ID_DrawordeU Draw Order, Send Under Objects Forces selected objects to be displayed behind specified reference objects ^C^C^P_ai_draworder _Under ^P
ID_TextOnly Draw Order, Text Objects Only Forces text objects to be displayed in front of all other objects ^C^C^P_texttofront _t ^P
ID_DimsOnly Draw Order, Dimension Objects Only Forces dimension objects to be displayed in front of all other objects ^C^C^P_texttofront _d ^P
ID_TxtAllAnno Draw Order, All Annotation Objects Force All Annotation objects to be displayed in the front of all other objects. ^C^C^P_texttofront _a ^P
ID_Dist Measure Distance Measures the distance between two points or along a polyline ^C^C_MEASUREGEOM _distance
ID_Area Measure Area Measures the area ^C^C_MEASUREGEOM _area
ID_Massprop Region/Mass Properties Calculates the mass properties of regions or 3D solids ^C^C_massprop
ID_List List Displays property data for selected objects ^C^C_list
ID_Id ID Point Displays the UCS coordinate values of a specified location '_id
ID_Time Time Displays the date and time statistics of a drawing '_time
ID_Status Status Displays drawing statistics, modes, and extents '_status
ID_Setvar Set Variable Lists or changes the values of system variables '_setvar
ID_UpdField Update Fields Manually updates the fields in selected objects to the current value ^c^c_updatefield
ID_Bedit Block Editor Opens the block definition in the Block Editor ^C^C_bedit
ID_BSave Save Save Block Definition ^C^C_BSAVE
ID_BSaveAs Save Block As Saves a copy of the block definition under a new name ^C^C_BSAVEAS
ID_BParameter Parameter Parameter ^C^C_BPARAMETER
ID_BAction Action Action ^C^C_BACTION
ID_BAttdef Define Attribute Define Attribute ^C^C_ATTDEF
ID_BRegen Update Update Parameter and Attribute Text Size ^C^C_Regen
ID_BLearn Learn Learn About Dynamic Blocks ^C^C^P(help "acad_aug" "OverviewOfTheBlockEditor") ^P
ID_BVMode Visibility Mode Controls how objects that are made invisible for the current visibility state are displayed in the Block Editor $M=$(if,$(and,$(>,$(getvar,"bvmode"),0)),^C^C_bvmode 0,^C^C_bvmode 1)
ID_BVShow Make Visible Makes objects visible for the current visibility state or all visibility states ^C^C_BVSHOW
ID_BVHide Make Invisible Makes objects invisible for the current visibility state or all visibility states ^C^C_BVHIDE
ID_BVState Visibility States Creates, sets, or deletes a visibility state in a dynamic block ^C^C_BVSTATE
ID_BClose Close Exit Block Editor and Return to Drawing ^C^C_BCLOSE
ID_XOpen Xref and Block, Open Reference Opens the block or external reference in a separate window ^C^C_xopen;
ID_RefEditor Xref and Block, Edit Reference In-Place Edits a block or an external reference directly within the current drawing ^C^C_refedit;
ID_RefAdd Xref and Block, Add to Working set Transfers objects from the host drawing to the REFEDIT working set $M=$(if,$(eq,$(getvar,refeditname),""),^C^C^P(ai_refedit_alert);^P,$(if,$(and,$(=,$(getvar,tilemode),0),$(=,$(getvar,cvport),1)),^C^C_refset;,^C^C_refset _add;))^Z
ID_RefRemove Xref and Block, Remove from Working set Transfers objects from the REFEDIT working set to the host drawing $M=$(if,$(eq,$(getvar,refeditname),""),^C^C^P(ai_refedit_alert);^P,$(if,$(and,$(=,$(getvar,tilemode),0),$(=,$(getvar,cvport),1)),^C^C_refset;,^C^C_refset _rem;))^Z
ID_RefSave Xref and Block, Save Reference Edits Saves REFEDIT working set changes $M=$(if,$(eq,$(getvar,refeditname),""),^C^C^P(ai_refedit_alert)^P,^C^C_refclose _sav)
ID_RefDscrd Xref and Block, Close Reference Discards REFEDIT working set changes $M=$(if,$(eq,$(getvar,refeditname),""),^C^C^P(ai_refedit_alert)^P,^C^C_refclose _disc)
ID_EAttExt Data Extraction... Extracts drawing data and merges data from an external source to a data extraction table or external file ^C^C_dataextraction
ID_Modify Properties Controls properties of existing objects $M=$(if,$(and,$(>,$(getvar,opmstate),0)),^C^C_propertiesclose,^C^C_properties)
ID_Content DesignCenter Manages and inserts content such as blocks, xrefs, and hatch patterns $M=$(if,$(and,$(getvar,adcstate),1),'_adcclose,'_adcenter)
ID_TPalette Tool Palettes Opens and closes the Tool Palettes window $M=$(if,$(and,$(getvar,tpstate),1),'_ToolPalettesClose,'_ToolPalettes)
ID_AuthorPalette Block Authoring Palettes Shows or hides the Block Authoring Palettes window ``
ID_SSMPalette Sheet Set Manager Opens the Sheet Set Manager $M=$(if,$(and,$(getvar,ssmstate),1),'_SheetSetHide,^C^C_SheetSet)
ID_dbConnect dbConnect Provides an AutoCAD interface to external database tables $M=$(if,$(and,$(getvar,dbcstate),1),^C^C_dbcClose,^C^C_dbConnect)
ID_MarkupMgr Markup Set Manager Displays information about loaded markup sets and their status $M=$(if,$(and,$(>,$(getvar,msmstate),0)),^C^C_markupclose,^C^C_markup)
ID_QCalc QuickCalc Displays or hides the QuickCalc calculator $M=$(if,$(eq,$(getvar,qcstate),0),'_quickcalc,'_qcclose)
ID_CmdLine Command Line Displays or hides the Command Line window $M=$(if,$(and,$(>,$(getvar,clistate),0)),^C^C_commandlinehide,^C^C_commandline)
ID_LockedLayerFadingToggle Locked Layer Fading Controls whether objects on locked layers are faded '_setvar;LAYLOCKFADECTL;$M=$(-,0,$(getvar,LAYLOCKFADECTL))
ID_XDwgFadingToggle Xref fading Enables or disables the xref fading '_setvar;XDWGFADECTL;$M=$(-,0,$(getvar,XDWGFADECTL))
ID_VisualStyleEdgeOverhang Edge Overhang Makes edges on 3D solids extend beyond their intersection for a hand-drawn effect ``
ID_VisualStyleEdgeJitter Edge Jitter Makes edges on 3D solids appear wavy, as though they were sketched with a pencil ``
ID_VisualStyleSilouetteEdges Silouette Edges Shows or hides silhouette edges of solids ``
ID_VisualStyleIntersectionEdges Intersection Edge Shows or hides intersection edges of solids ``
ID_VisualStyleObscuredEdges Obscured Edge Shows or hides obscured edges of solids ``
ID_DrawingStatusBar Drawing Status Bar Shows or hides the drawing status bar ``
ID_XRayMode X-Ray Toggles the x-ray effect on and off ``
ID_Appload Load Application... Loads and unloads applications and defines which applications to load at startup ^C^C_appload
ID_Script Run Script... Executes a sequence of commands from a script file '_script
ID_VBARun VBA, Macros... Runs a VBA macro ^C^C_vbarun
ID_VBALoad VBA, Load Project... Loads a global VBA project into the current work session ^C^C_vbaload
ID_VBAMan VBA, VBA Manager... Manages VBA project operations using a dialog box ^C^C_vbaman
ID_VBAIDE VBA, Visual Basic Editor Displays the Visual Basic Editor ^C^C_vbaide
ID_AULPIDE Visual LISP Editor Displays the Visual LISP interactive development environment ^C^C_vlide
ID_Replay View... Displays a BMP, TGA, or TIFF image ^C^C_replay
ID_Saveimg Display Image, Save... Saves a rendered image to a file ^C^C_saveimg
ID_Dducs UCS, Named UCS... Manages defined user coordinate systems ^C^C_+ucsman 0
ID_Dducsp Preset... Manages defined user coordinate systems ^C^C_+ucsman 1
ID_UcsTop UCS, Top Specifies the Top UCS orientation ^C^C_ucs _g _t
ID_UcsBottom UCS, Bottom Specifies the Bottom UCS orientation ^C^C_ucs _g _b
ID_UcsLeft UCS, Left Specifies the Left UCS orientation ^C^C_ucs _g _l
ID_UcsRight UCS, Right Specifies the Right UCS orientation ^C^C_ucs _g _r
ID_UcsFront UCS, Front Specifies the Front UCS orientation ^C^C_ucs _g _f
ID_UcsBack UCS, Back Specifies the Back UCS orientation ^C^C_ucs _g _ba
ID_UcsMove Move UCS Moves the defined UCS ^C^C_ucs _move
ID_UcsWorld UCS, World Sets the current user coordinate system to the world coordinate system ^C^C_ucs _w
ID_UcsObject Object Aligns the user coordinate system to a selected object ^C^C^R_ucs _ob
ID_UcsFace Face Aligns the user coordinate system to a face on a 3D solid ^C^C^R_ucs _fa
ID_UcsView View Aligns the XY plane of the user coordinate system with the screen ^C^C_ucs _v
ID_UcsOrigin Origin Defines a new user coordinate system by shifting the origin point ^C^C_ucs _o
ID_UcsZAxVec Z Axis Vector Aligns the user coordinate system to a specified positive Z axis ^C^C_ucs _zaxis
ID_Ucs3point 3 Point Defines a new user coordinate system using three points ^C^C_ucs _3
ID_UcsXAxRot X Rotates the user coordinate system about the X axis ^C^C^R_ucs _x
ID_UcsYAxRot Y Rotates the user coordinate system about the Y axis ^C^C^R_ucs _y
ID_UcsZAxRot Z Rotates the user coordinate system about the Z axis ^C^C^R_ucs _z
ID_UcsApply Apply Applies current UCS to a selected viewport ^C^C_ucs _apply
ID_UcsSave Save Saves current UCS to a named UCS ^C^C_ucs _na _s
ID_Standards CAD Standards, Configure... Manages the association of standards files with drawings ^C^C_standards
ID_CheckStan CAD Standards, Check... Checks the current drawing for standards violations ^C^C_checkstandards
ID_LayTrans CAD Standards, Layer Translator... Translates the layers in the current drawing to specified layer standards ^C^C_laytrans
ID_AddPlotter Add Plotter... Adds and configures plotters ^C^C^P(if(startapp "addplwiz.exe")(princ)) ^P
ID_AddPlStyle Add Plot Style Table... Creates a plot style table ^C^C^P(if(startapp "styshwiz.exe")(princ)) ^P
ID_PenSetting Add Color-Dependent Plot Style Table... Creates a color-dependent plot style table ^C^C_r14penwizard
ID_CreateLayout Create Layout... Creates a layout using the settings you apply to the wizard ^C^C_layoutwizard
ID_ImpPlotSet Import Plot Settings... Displays a wizard to import PCP and PC2 configuration file plot settings into the Model tab or current layout ^C^C_pcinwizard
ID_Ddrmodes Drafting Settings... Sets grid and snap, polar tracking, and object snap modes '_dsettings
ID_TabletOn Tablet, On Turns Tablet mode on ^C^C_tablet _on
ID_TabletOff Tablet, Off Turns Tablet mode off ^C^C_tablet _off
ID_TabletCal Tablet, Calibrate Calibrates the digitizer with the drawing's coordinate system ^C^C_tablet _cal
ID_TabletCfg Tablet, Configure Designates or realigns the tablet menu areas ^C^C_tablet _cfg
ID_Menuload Customize, Interface... Manages customized user interface elements in the product ^C^C_cui
ID_UIE_Menuload Customize, Interface... Manages customized user interface elements in the product ^C^C_quickcui
ID_CPalette Customize, Tool Palettes... Customizes tool palettes and tool palette groups ^C^C_+customize 4
ID_EditPGP Customize, Edit Program Parameters (acad.pgp) Opens the Program Parameters (PGP) text file that defines command abbreviations ^C^C^P_ai_editcustfile $M=$(getvar,program).pgp;^P
ID_Preferenc Options... Customizes settings ^C^C_options
ID_Line Line Creates straight line segments ^C^C_line
ID_Ray Ray Creates a line that starts at a point and continues to infinity ^C^C_ray
ID_Xline Construction Line Creates a line of infinite length ^C^C_xline
ID_Mline Multiline Creates multiple parallel lines ^C^C_mline
ID_Pline Polyline Creates a 2D polyline ^C^C_pline
ID_3dpoly 3D Polyline Creates a 3D polyline ^C^C_3dpoly
ID_Polygon Polygon Creates an equilateral closed polyline ^C^C_polygon
ID_Rectang Rectangle Creates a rectangular polyline ^C^C_rectang
ID_Arc3point Arc, 3 Points Creates an arc using three points ^C^C_arc
ID_ArcStCeEn Arc, Start, Center, End Creates an arc using the start point, center, and endpoint ^C^C_arc \_c
ID_ArcStCeAn Arc, Start, Center, Angle Creates an arc using a start point, center, and an included angle ^C^C_arc \_c \_a
ID_ArcStCeLe Arc, Start, Center, Length Creates an arc using a start point, center, and the length of a chord ^C^C_arc \_c \_l
ID_ArcStEnAg Arc, Start, End, Angle Creates an arc using a start point, endpoint, and an included angle ^C^C_arc \_e \_a
ID_ArcStEnDi Arc, Start, End, Direction Creates an arc using a start point, endpoint, and a tangent direction at the start point ^C^C_arc \_e \_d
ID_ArcStEnRa Arc, Start, End, Radius Creates an arc using a start point, endpoint, and a radius ^C^C_arc \_e \_r
ID_ArcCeStEn Arc, Center, Start, End Creates an arc using a center point, start point, and a third point that determines the endpoint ^C^C_arc _c
ID_ArcCeStAn Arc, Center, Start, Angle Creates an arc using a center point, start point, and the included angle ^C^C_arc _c \\_a
ID_ArcCeStLe Arc, Center, Start, Length Creates an arc using a center point, start point, and the length of a chord ^C^C_arc _c \\_l
ID_ArcContin Arc, Continue Creates an arc tangent to the last line or arc drawn ^C^C_arc ;
ID_CircleRad Circle, Center, Radius Creates a circle using a center point and a radius ^C^C_circle
ID_CircleDia Circle, Center, Diameter Creates a circle using a center point and a diameter ^C^C_circle \_d
ID_Circle2pt Circle, 2 Points Creates a circle using two endpoints of the diameter ^C^C_circle _2p
ID_Circle3pt Circle, 3 Points Creates a circle using three points on the circumference ^C^C_circle _3p
ID_CircleTTR Circle, Tan, Tan, Radius Creates a circle with a specified radius tangent to two objects ^C^C_circle _ttr
ID_CircleTTT Circle, Tan, Tan, Tan Creates a circle tangent to three objects ^C^C_circle _3p _tan \_tan \_tan \
ID_Donut Donut Creates a filled circle or a wide ring ^C^C_donut
ID_Spline Spline Creates a smooth curve that passes through or near specified points ^C^C^R_spline
ID_EllipseCe Ellipse, Center Creates an ellipse using a specified center point ^C^C_ellipse _c
ID_EllipseAx Ellipse, Axis, End Creates an ellipse or an elliptical arc ^C^C_ellipse
ID_EllipseAr Ellipse, Arc Creates an elliptical arc ^C^C_ellipse _a
ID_Bmake Block, Make... Creates a block definition from selected objects ^C^C_block
ID_Base Block, Base Sets the insertion base point for the current drawing '_base
ID_Attdef Block, Define Attributes... Creates an attribute definition for storing data in a block ^C^C_attdef
ID_Table Table... Creates an empty table object ^C^C_table
ID_PointSing Point, Single Point Creates a point object ^C^C_point
ID_PointMult Point, Multiple Point Creates multiple point objects *^C^C_point
ID_Divide Divide Creates evenly spaced point objects or blocks along the length or perimeter of an object ^C^C_divide
ID_Measure Measure Creates point objects or blocks at measured intervals along the length or perimeter of an object ^C^C_measure
ID_Bhatch Hatch... Fills an enclosed area or selected objects with a hatch pattern or fill ^C^C_hatch
ID_UIE_Bhatch Hatch... Fills an enclosed area or selected objects with a hatch pattern or fill ^C^C_bhatch
ID_Gradient Gradient... Fills an enclosed area or selected objects with a gradient fill ^C^C_gradient
ID_Boundary Boundary... Creates a region or a polyline from an enclosed area ^C^C_boundary
ID_Region Region Converts an object that encloses an area into a region object ^C^C_region
ID_Wipeout Wipeout Creates a wipeout object ^C^C_wipeout
ID_Revcloud_Rectangle Rectangular Revision Cloud Creates a revision cloud drawing a rectangle. ^C^C_^Rrevcloud _R
ID_Revcloud_Polygon Polygonal Revision Cloud Creates a revision cloud drawing a polyline. ^C^C_^Rrevcloud _P
ID_Revcloud Freehand Revision Cloud Creates a revision cloud drawing a freeform polyline. ^C^C_^Rrevcloud _F
ID_Mtext Multiline Text... Creates a multiline text object ^C^C_mtext
ID_Text Single Line Text Displays text on screen as it is entered ^C^C_text
ID_Solid Modeling, Meshes, 2D Solid Creates solid-filled triangles and quadrilaterals ^C^C_solid
ID_3dface Modeling, Meshes, 3D Face Creates a three-sided or four-sided surface in 3D space ^C^C_3dface
ID_3dsurface 3D Surfaces... Creates three-dimensional surface objects using a dialog box $I=ACAD.image_3dobjects $I=ACAD.*
ID_Edge Modeling, Meshes, Edge Changes the visibility of 3D face edges ^C^C_edge
ID_3dmesh Modeling, Meshes, 3D Mesh Creates a free-form polygon mesh ^C^C_3dmesh
ID_Revsurf Modeling, Meshes, Revolved Surface Creates a mesh by revolving a profile about an axis ^C^C_revsurf
ID_Tabsurf Modeling, Meshes, Tabulated Surface Creates a mesh from a line or curve that is swept along a straight path ^C^C_tabsurf
ID_Rulesurf Modeling, Meshes, Ruled Surface Creates a mesh that represents the surface between two lines or curves ^C^C_rulesurf
ID_Edgesurf Modeling, Meshes, Edge Surface Creates a mesh between four contiguous edges or curves ^C^C_edgesurf
ID_Box Box Creates a 3D solid box ^C^C_box
ID_Sphere Sphere Creates a 3D solid sphere ^C^C_sphere
ID_Cylinder Cylinder Creates a 3D solid cylinder ^C^C_cylinder
ID_Cone Cone Creates a 3D solid cone ^C^C_cone
ID_Wedge Wedge Creates a 3D solid wedge ^C^C_wedge
ID_Torus Torus Creates a donut-shaped 3D solid ^C^C_torus
ID_Extrude Extrude Creates a 3D solid or surface by extruding a 2D or 3D curve ^C^C^R_extrude _MO _SO;
ID_Extrude2 Extrude Creates a 3D solid or surface by extruding a 2D or 3D curve ^C^C^R_extrude;
ID_Revolve Revolve Creates a 3D solid or surface by sweeping a 2D or 3D curve around an axis ^C^C^R_revolve _MO _SO;
ID_Revolve2 Revolve Creates a 3D solid or surface by sweeping a 2D or 3D curve around an axis ^C^C^R_revolve;
ID_Slice Slice Creates new 3D solids and surfaces by slicing, or dividing, existing objects ^C^C_slice
ID_Section Section Uses the intersection of a plane and solids to create a region ^C^C_section
ID_Interfere Interference Checking Creates a temporary 3D solid from the interferences between two sets of selected 3D solids ^C^C_interfere
ID_ExtractIntersection Extract Intersection Extract edges from a temporary 3D solid from the interferences between two sets of selected 3D solids ^C^C_select \_-interfere _p;;;
ID_Soldraw Modeling, Setup, Drawing Generates profiles and sections in layout viewports created with SOLVIEW ^C^C_soldraw
ID_Solview Modeling, Setup, View Creates orthographic views, layers, and layout viewports automatically for 3D solids ^C^C_solview
ID_Solprof Modeling, Setup, Profile Creates 2D profile images of 3D solids for display in a layout viewport ^C^C_solprof
ID_QDim Dimension, Quick Dimension Quickly creates a series of dimensions from selected objects ^C^C_qdim
ID_Dimlinear Dimension, Linear Creates a linear dimension ^C^C_dimlinear
ID_Dimaligne Dimension, Aligned Creates an aligned linear dimension ^C^C_dimaligned
ID_Dimarclen Dimension, Arc Length Creates an arc length dimension ^C^C_dimarc
ID_Dimordina Dimension, Ordinate Creates ordinate dimensions ^C^C_dimordinate
ID_Dimradius Dimension, Radius Creates a radius dimension for a circle or an arc ^C^C_dimradius
ID_Dimjogged Dimension, Jogged Creates jogged dimensions for circles and arcs ^C^C_dimjogged
ID_Dimdiamet Dimension, Diameter Creates a diameter dimension for a circle or an arc ^C^C_dimdiameter
ID_Dimangula Dimension, Angular Creates an angular dimension ^C^C_dimangular
ID_Dimbaseli Dimension, Baseline Continues a linear, angular, or ordinate dimension from the baseline of the previous or selected dimension ^C^C_dimbaseline
ID_Dimcontin Dimension, Continue Creates a dimension that starts from an extension line of a previously created dimension ^C^C_dimcontinue
ID_Leader Dimension, Leader Creates a leader and annotation: ^C^C_qleader
ID_Tolerance Dimension, Tolerance... Creates geometric tolerances contained in a feature control frame ^C^C_tolerance
ID_Dimcenter Dimension, Center Mark Creates the center mark or the centerlines of circles and arcs ^C^C_dimcenter
ID_Dimedito Dimension, Oblique Makes the extension lines of linear dimensions oblique ^C^C_dimedit _o
ID_DimeditH Dimension, Align Text, lHome Moves dimension text back to its default position ^C^C_dimedit _h
ID_DimteditA Dimension, Align Text, Angle Rotates dimension text to an angle ^C^C_dimtedit \_a
ID_DimteditL Dimension, Align Text, Left Left justifies dimension text ^C^C_dimtedit \_l
ID_DimteditC Dimension, Align Text, Center Centers dimension text ^C^C_dimtedit \_c
ID_DimteditR Dimension, Align Text, Right Right justifies dimension text ^C^C_dimtedit \_r
ID_Dimoverri Dimension, Override Controls overrides of system variables used in selected dimensions ^C^C_dimoverride
ID_DimOverideClear Remove Style Overrides Removes dimension overrides used in selected dimensions C^C_dimoverride _c
ID_Dimreasso Dimension, Reassociate Dimensions Associates or reassociates selected dimensions to objects or points on objects ^C^C_dimreassociate
ID_Ai_propch Properties Controls properties of existing objects ^C^C_properties
ID_UIE_Ai_propch Chprop Controls properties of existing objects ^C^C_chprop
ID_UIE_Ai_propch2 Change Controls properties of existing objects ^C^C_change
ID_Matchprop Match Properties Applies the properties of a selected object to other objects '_matchprop
ID_Xbind Xref, Bind... Binds dependent symbols of an xref to the current drawing ^C^C_xbind
ID_Xclipfram Xref, Frame Controls the visibility of the xref or block clipping boundaries $M=$(if,$(eq,$(getvar,xclipframe),1),^C^C_xclipframe 0,^C^C_xclipframe 1)
ID_Imageadju Image, Adjust... Controls the image display of the brightness, contrast, and fade values of images ^C^C_imageadjust
ID_Imagequal Image, Quality Controls the display quality of images ^C^C_imagequality
ID_Transpare Image, Background Transparency Controls whether background pixels in an image are transparent or opaque ^C^C_transparency
ID_Imagefram Image, Frame Controls whether image frames are displayed or hidden from view ^C^C_imageframe
ID_Hatchedit Hatch Edit Modifies an existing hatch object ^C^C_hatchedit
ID_Pedit Polyline Edit Edits polylines and 3D polygon meshes ^C^C_pedit
ID_Splinedit Spline Edit Edits a spline or spline-fit polyline ^C^C^R_splinedit
ID_Mledit Multiline Edit... Edits multiple parallel lines ^C^C_mledit
ID_EAttEdit Attribute, Single... Edits attributes in a block reference ^C^C_eattedit
ID_AtteditGlo Attribute, Global Edits the variable attributes of a block individually or globally ^C^C_-attedit
ID_BattMan Attribute, Block Attribute Manager... Manages the attributes for a selected block definition ^C^C_battman
ID_Ddedit Text, Edit... Edits text, dimension text, and attribute definitions ^C^C_textedit
ID_Scaletext Text, Scale Enlarges or reduces selected text objects without changing their locations ^C^C_scaletext
ID_Justifyte Text, Justify Changes the justification point of selected text objects without changing their locations ^C^C_justifytext
ID_ImageClip Clip, Image Clips the display of a selected image to a specified boundary ^C^C_imageclip
ID_XrefClip Clip, Xref Clips the display of a selected xref or block reference to a specified boundary ^C^C_xclip
ID_VportClip Clip, Viewport Clips layout viewport objects and reshapes the viewport border ^C^C_vpclip
ID_Copy Copy Copies objects a specified distance in a specified direction $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_copy,^C^C_copy)
ID_Mirror Mirror Creates a mirrored copy of selected objects $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_mirror,^C^C_mirror)
ID_Offset Offset Creates concentric circles, parallel lines, and parallel curves ^C^C_offset
ID_Array Array... Creates multiple copies of objects in a pattern ^C^C_array
ID_Move Move Moves objects a specified distance in a specified direction $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_move,^C^C_move)
ID_Rotate Rotate Rotates objects around a base point $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_rotate,^C^C_rotate)
ID_Scale Scale Enlarges or reduces selected objects, keeping the proportions of the object the same after scaling $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_scale,^C^C_scale)
ID_Stretch Stretch Stretches objects crossed by a selection window or polygon $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_stretch,^C^C_stretch)
ID_Lengthen Lengthen Changes the length of objects and the included angle of arcs ^C^C_lengthen
ID_Trim Trim Trims objects to meet the edges of other objects ^C^C_trim
ID_Extend Extend Extends objects to meet the edges of other objects ^C^C_extend
ID_Break Break Breaks the selected object between two points ^C^C_break
ID_Join Join Joins similar objects to form a single, unbroken object ^C^C_join
ID_Chamfer Chamfer Bevels the edges of objects ^C^C_chamfer
ID_Fillet Fillet Rounds and fillets the edges of objects ^C^C_fillet
ID_3darray 3D Array Creates a 3D matrix of objects in a rectangular or polar arrangement ^C^C_3darray
ID_Mirror3d 3D Mirror Creates a mirrored copy of selected objects across a mirroring plane ^C^C_mirror3d
ID_Rotate3d Rotate 3D Moves objects about a three-dimensional axis ^C^C_rotate3d
ID_3dalign 3D Align Aligns objects with other objects in 2D and 3D ^C^C_3dalign
ID_Union Union Combines selected 3D solids or 2D regions by addition ^C^C_union
ID_Subtract Subtract Combines selected 3D solids or 2D regions by subtraction ^C^C_subtract
ID_Intersect Intersect Creates a 3D solid or 2D region from selected overlapping solids or regions ^C^C_intersect
ID_FaceExtru Extrude faces Extrudes selected planar faces of a 3D solid by a specified distance or along a path ^C^C_solidedit _face _extrude
ID_FaceMove Move faces Moves a face on 3D solids in a specified distance and direction ^C^C_solidedit _face _move
ID_FaceOffse Offset faces Offsets selected faces of a 3D solid by a specified distance, changing its shape ^C^C_solidedit _face _offset
ID_FaceDel Delete faces Deletes faces, including fillets or chamfers, on a 3D solid ^C^C_solidedit _face _delete
ID_FaceRotat Rotate faces Rotates selected faces on a 3D solid around a specified axis ^C^C_solidedit _face _rotate
ID_FaceTaper Taper faces Tapers a face on a 3D solid at a specified angle ^C^C_solidedit _face _taper
ID_FaceColor Color faces Changes the color of selected faces on a 3D solid ^C^C^R_solidedit _face _color
ID_FaceCopy Copy faces Copies faces from a 3D solid resulting in regions or solid bodies ^C^C_solidedit _face _copy
ID_EdgeColor Color edges Changes the color of selected edges on a 3D solid ^C^C^R_solidedit _edge _color
ID_EdgeCopy Copy edges Copies selected edges on a 3D solid as 2D arcs, circles, ellipses, lines, or splines ^C^C_solidedit _edge _copy
ID_Imprint Imprint Imprints 2D geometry on a 3D solid, creating additional edges on planar faces ^C^C_imprint
ID_BodyCln Clean Removes all redundant edges and vertices on a 3D solid ^C^C_solidedit _body _clean
ID_Separate Separate Separates a 3D solid object with several non-continuous volumes into independent 3D solids ^C^C_solidedit _body _separate
ID_Shell Shell Converts a 3D solid into a hollow shell with a wall of specified thickness ^C^C_solidedit _body _shell
ID_BodyChk Check Validates the geometric data in a 3D solid ^C^C_solidedit _body _check
ID_OffsetEdge Offset Edge ^C^C_offsetedge
ID_Explode Explode Breaks a compound object into its component objects ^C^C_explode
ID_WINDOW_CLOSEALL Close All ^C^C_closeall
ID_WINDOW_CLOSEALLOTHER Close All Other ^C^C_closeallother
ID_LockToolbarFloat Lock, Floating Toolbars Locks/unlocks toolbars '_lockui $M=$(if,$(<,$(getvar,LOCKUI),0),4,$(if,$(and,$(getvar,lockui),4),$(-,$(getvar,lockui),4),$(+,$(getvar,lockui),4)))
ID_LockToolbarDock Lock, Docked Toolbars '_lockui $M=$(if,$(<,$(getvar,LOCKUI),0),1,$(if,$(and,$(getvar,lockui),1),$(-,$(getvar,lockui),1),$(+,$(getvar,lockui),1)))
ID_LockWindowFloat Lock, Floating Windows Locks/unlocks windows '_lockui $M=$(if,$(<,$(getvar,LOCKUI),0),8,$(if,$(and,$(getvar,lockui),8),$(-,$(getvar,lockui),8),$(+,$(getvar,lockui),8)))
ID_LockWindowDock Lock, Docked Windows '_lockui $M=$(if,$(<,$(getvar,LOCKUI),0),2,$(if,$(and,$(getvar,lockui),2),$(-,$(getvar,lockui),2),$(+,$(getvar,lockui),2)))
ID_WINDOW_CASCADE Cascade Overlaps windows, leaving title bars visible ^C^C^Q_syswindows;_cascade
ID_WINDOW_TILE_HORZ Tile Horizontally Arranges windows and icons in horizontal, non-overlapping tiles ^C^C^Q_syswindows;_hor
ID_WINDOW_TILE_VERT Tile Vertically Arranges windows and icons in vertical, non-overlapping tiles ^C^C^Q_syswindows;_vert
ID_WINDOW_ARRANGE Arrange Icons Arranges window icons ^C^C^Q_syswindows;_arrange
ID_Help Help\tF1 Opens the Help window '_help
ID_DevHelp Developer Help Displays online developer help ^C^C^P(help "acad_dev180" "") ^P
ID_SCELearn Subscription e-Learning Catalog Connects to the Subscription Center and provides self-paced, interactive lessons to subscription customers ^C^C^P_access_subctr 1 ^P
ID_SCNewCSR Create Support Request Connects to the Subscription Center and provides direct technical support to subscription customers ^C^C^P_access_subctr 2 ^P
ID_SCViewCSR View Support Requests Connects to the Subscription Center and provides a view of submitted technical support requests ^C^C^P_access_subctr 3 ^P
ID_SCLogin Edit Subscription Center Profile Connects to the Subscription Center and allows the subscription customer to manage the subscription profile ^C^C^P_access_subctr 4 ^P
ID_ProdSuppSafe Support Knowledge Base Starts a web browser and displays product support information ^C^C^P_ai_product_support_safe ^P
ID_TrainingSafe Online Training Resources Starts a web browser and displays links related to training for this product ^C^C^P_ai_training_safe ^P
ID_CustomSafe Online Developer Center Starts a web browser and displays links to product-specific customization information ^C^C^P_ai_custom_safe ^P
ID_AUGI Autodesk User Group International Starts a web browser and displays user group information ^C^C^P_ai_browse augi.htm ^P
ID_About About Displays information about this product '_about
ID_Enter Enter Completes a command, accepts command values, and cycles grip modes ;
ID_GripMove Grips, Move Displaces objects a specified distance in a specified direction _move
ID_GripMirro Grips, Mirror Creates a mirror image copy of objects _mirror
ID_GripRotat Grips, Rotate Moves objects about a base point _rotate
ID_GripScale Grips, Scale Enlarges or reduces objects proportionally in the X, Y, and Z directions _scale
ID_GripStret Grips, Stretch Moves or stretches objects _stretch
ID_GripBase Grips, Base Point Sets the insertion base point for the current drawing _base
ID_GripCopy Grips, Copy Duplicates objects _copy
ID_GripRefer Grips, Reference Sets the reference point _reference
ID_GripExit Grips, Exit Cancels grip edit mode and returns to the command line _exit
ID_CMNonLast Repeat %s Repeats the previously issued command ^C^C;
ID_UNDO Undo Reverses the most recent action ^C^C_u
ID_UIE_UNDO Undo Reverses the most recent action ^C^C_undo
ID_Deselectall Deselect All Removes all objects from the selection set ^C^C^Pai_deselect ^P
ID_Cancel Cancel Cancels the command ^C
ID_DimAbove Dimension, Text, Above dim line Move dimension text above dimension line ^C^C_ai_dim_textabove
ID_DimTxtCen Dimension, Text, Centered Moves dimension text to center position ^C^C_ai_dim_textcenter
ID_DimHome Dimension, Text, Home text Move dimension text back to its default position ^C^C_ai_dim_texthome
ID_DimTxtMove2 Dimension, Text, Move text alone Move dimension text alone ^C^C_aidimtextmove _2
ID_DimTxtMove1 Dimension, Text, Move with leader Move dimension text with leader ^C^C_aidimtextmove _1
ID_DimTxtMove0 Dimension, Text, Move with dim line Moves dimension text with dimension line ^C^C_aidimtextmove _0
ID_DimPrec0 Dimension, Precision, 0 Sets the dimension value to 0 decimal places ^C^C_aidimprec _0
ID_DimPrec1 Dimension, Precision, 0.0 Sets the dimension value to 1 decimal place ^C^C_aidimprec _1
ID_DimPrec2 Dimension, Precision, 0.00 Sets the dimension value to 2 decimal places ^C^C_aidimprec _2
ID_DimPrec3 Dimension, Precision, 0.000 Sets the dimension value to 3 decimal places ^C^C_aidimprec _3
ID_DimPrec4 Dimension, Precision, 0.0000 Sets the dimension value to 4 decimal places ^C^C_aidimprec _4
ID_DimPrec5 Dimension, Precision, 0.00000 Sets the dimension value to 5 decimal places ^C^C_aidimprec _5
ID_DimPrec6 Dimension, Precision, 0.000000 Sets the dimension value to 6 decimal places ^C^C_aidimprec _6
ID_DimSty2 Dim Style, Save as New Style... Saves the properties of the selected dimension as a new dimension style ^C^C_aidimstyle _S
ID_DimSty3 Dim Style, MRU1 Assigns the style to the selected dimension(s) ^C^C_aidimstyle _1
ID_DimSty4 Dim Style, MRU2 Assigns the style to the selected dimension(s) ^C^C_aidimstyle _2
ID_DimSty5 Dim Style, MRU3 Assigns the style to the selected dimension(s) ^C^C_aidimstyle _3
ID_DimSty6 Dim Style, MRU4 Assigns the style to the selected dimension(s) ^C^C_aidimstyle _4
ID_DimSty7 Dim Style, MRU5 Assigns the style to the selected dimension(s) ^C^C_aidimstyle _5
ID_DimSty8 Dim Style, MRU6 Assigns the style to the selected dimension(s) ^C^C_aidimstyle _6
ID_DimSty9 Dim Style, Other... Displays other available dimension styles ^C^C_aidimstyle _O
ID_DimFlipArrow Dimension, Flip Arrow Flips the dimension arrow to the adjacent side of an extension line ^C^C_aidimfliparrow
ID_WBLOCK Write Block Saves selected objects or converts a block to a specified drawing file ^C^C_wblock
ID_VpMax Maximize Viewport Maximizes the viewport ^C^C_vpmax
ID_Vport_dispon Viewports, Display, Yes Turns on a viewport, making it active and making its objects visible ^C^C_-vports _on _p;;
ID_Vport_dispoff Viewports, Display, No Turns off a viewport, making its objects invisible ^C^C_-vports _off _p;;
ID_Vport_lockon Viewports, Lock, Yes Locks the current viewport. This is similar to layer locking ^C^C_-vports _lock _on _p;;
ID_VPORTS Viewports, Rectangular Creates a rectangular paper space viewport ^C^C_-vports
ID_Vport_lockoff Viewports, Lock, No Unlocks the current viewport ^C^C_-vports _lock _off _p;;
ID_Vport_asdisp Viewports, Shade, As Displayed Specifies that the viewport plots the same way it is displayed ^C^C_-vports _shadeplot _as _p;;
ID_Vport_wframe Viewports, Shade, Wireframe Specifies that the viewport plots wireframe regardless of the current display ^C^C_-vports _shadeplot _wireframe _p;;
ID_Vport_hidden Viewports, Shade, Hidden Specifies that the viewport plots with hidden lines removed regardless of the current display ^C^C_-vports _shadeplot _hidden _p;;
ID_Vport_render Viewports, Shade, Rendered Specifies that the viewport plots rendered regardless of the current display ^C^C_-vports _shadeplot _rendered _c _p;;
MM_0088 Open Xref ^C^C_xopen
ID_Mtedit Mtext Edit... Opens the Mulitline Text Editor for the selected mtext object ^C^C_mtedit
ID_RefEdit Edit Block In-place Opens the block definition in-place ^C^C_refedit
ID_ResetBlock Reset Block Resets block references to match the original definition: ^C^C_resetblock
ID_VpMin Minimize Viewport Minimizes the maximized viewport ^C^C_vpmin
MM_0125 Quick Leader ^C^C_qleader
ID_Dimedit Dimension Edit Edits dimension text and extension lines ^C^C_dimedit
ID_Dimtedit Dimension Text Edit Moves and rotates dimension text and relocates the dimension line ^C^C_dimtedit
ID_Import Import Imports files of different formats such as PDF and DGN into the current drawing ^C^C_import
ID_VpDialog Viewports, Display Viewports Dialog Displays the Viewports dialog ^C^C_vports
ID_BreakSele Break at Point Breaks the selected object at a single point ^C^C_breakatpoint
ID_Draworder Draw Order Changes the display order of images and other objects ^C^C_draworder
ID_AttSync Synchronize Attributes Updates block references with new and changed attributes from a specified block definition ^C^C_AttSync
ID_Laymcur Layer, Make Object's Layer Current Sets the current layer to that of a selected object ^C^C_Laymcur
ID_LayerP Layer, Layer Previous Undoes the last change or set of changes made to layer settings ^C^C_LayerP
ID_3dpan 3D Pan Starts the 3DORBIT command and enables you to drag the view horizontally and vertically '_3dpan
ID_3dzoom 3D Zoom Starts the 3DORBIT command and allows you to zoom in and out on the view '_3dzoom
ID_3dcorbit 3D Continuous Orbit Rotates the view in 3D space with continuous motion '_3dcorbit
ID_3dswivel 3D Swivel Starts the 3DSWIVEL command and simulates the effect of turning the camera '_3dswivel
ID_3ddistanc 3D Adjust Distance Starts the 3DORBIT command and makes objects appear closer or farther away '_3ddistance
ID_3dclip 3D Adjust Clip Planes Starts 3DORBIT and opens the Adjust Clipping Planes window '_3dclip
ID_3dclipfr Front Clip On/Off Toggles the front clipping plane on or off in the 3D Orbit Adjust Clipping Planes window ^C^C_dview$M=$(if,$(or,$(eq,$(getvar,tilemode),1),$(!=,$(getvar,cvport),1)),$(if,$(and,$(getvar,viewmode),2),$(if,$(and,$(getvar,viewmode),4), _all _cl _off _cl _b _on^M, _all _cl _off^M), _all _cl _f $(getvar,frontz)^M)^Z)
ID_3dclipbk Back Clip On/Off Toggles the back clipping plane on or off in the 3D Orbit Adjust Clipping Planes window ^C^C_dview$M=$(if,$(or,$(eq,$(getvar,tilemode),1),$(!=,$(getvar,cvport),1)),$(if,$(and,$(getvar,viewmode),4), _all _cl _b _off^M, _all _cl _b _on^M)^Z)
ID_QNew QNew Creates a blank drawing file ^C^C_qnew
MM_0278 Zoom Previous '_zoom _p
ID_ViewForward View Forward Forward view navigation ^C^C'_VIEWFORWARD
ID_ViewBackward View Back Backward view navigation ^C^C'_VIEWBACK
ID_TEDIT TEXTEDIT ^C^C_TEXTEDIT
MM_0284 QuickCalc Displays the calculator '_quickcalc
ID_Spacetran Convert distance between spaces Converts distances or heights between model space and paper space '_spacetrans
ID_Ucs UCS Manages user coordinate systems ^C^C_ucs
ID_UcsPrevio UCS, Previous Restores the previous user coordinate system ^C^C_ucs _p
MM_0307 Face UCS ^C^C^R_ucs _fa
ID_WsSettings Workspaces, Workspace Settings... Displays the Workspace Settings dialog ^C^C_wssettings
ID_Camera Create Camera Creates a camera object in model space ^C^C_camera
ID_VpSingle Viewports, Single Viewport Creates a single paperspace viewport $M=$(if,$(eq,$(getvar,vpmaximizedstate),1),^C^C_-vports,$(if,$(eq,$(getvar,tilemode),1),^C^C_-vports _si,^C^C_-vports))
ID_VpPoly Viewports, Polygonal Viewport Creates a nonrectangular layout viewport defined by a series of line and arc segments $M=$(if,$(eq,$(getvar,vpmaximizedstate),1),^C^C_-vports,$(if,$(eq,$(getvar,tilemode),0),^C^C_-vports _p,^C^C^P_ai_viewports_alert^P))
ID_VpConvert Viewports, Convert Object to Viewport Creates a nonrectangular layout viewport from a closed polyline, ellipse, spline, region, or circle $M=$(if,$(eq,$(getvar,vpmaximizedstate),1),^C^C_-vports,$(if,$(eq,$(getvar,tilemode),0),^C^C_-vports _o,^C^C^P_ai_viewports_alert^P))
ID_HlnkBack Go Back Navigates to the previous hyperlinked document '_hyperlinkBack
ID_HlnkFwd Go Forward Navigates to the next hyperlinked document '_hyperlinkFwd
ID_HlnkStop Stop Navigation Cancels the current navigation selection '_hyperlinkStop
ID_Browser Browse the Web Launches the default Web browser defined in your system's registry ^C^C_browser ;
MM_0358 Circle Center Radius Creates a circle using a center point and a radius ^C^C_circle
MM_0371 eTransmit Creates a transmittal set of a drawing and related files ^C^C_etransmit
MM_0379 Drawing Utilities Purge ^C^C_purge
ID_DimOrx Dimension, Ordinate, X-Datum ^C^C_dimordinate \_x
ID_DimOry Dimension, Ordinate, Y-Datum ^C^C_dimordinate \_y
ID_DTbDraw Draw Toolbar ^C^C_-toolbar;TB_DRAW;;
ID_DTbModify Modify Toolbar ^C^C_-toolbar;TB_MODIFY;;
ID_DTbDimensi Dimensioning Toolbar ^C^C_-toolbar;TB_DIMENSION;;
ID_DTbObjectP Object Properties Toolbar ^C^C_-toolbar;TB_OBJECT_PROPERTIES;;
ID_DTbStandar Standard Toolbar ^C^C_-toolbar;TB_STANDARD;;
ID_Seladd Select Add $M=$(if,$(getvar,cmdactive),,_select;)_a
ID_Selcp Select Crossing Polygon $M=$(if,$(getvar,cmdactive),,_select;)_cp
ID_Selcro Select Crossing $M=$(if,$(getvar,cmdactive),,_select;)_c
ID_Selfen Select Fence $M=$(if,$(getvar,cmdactive),,_select;)_f
ID_Selgro Select Group $M=$(if,$(getvar,cmdactive),,_select;)_g
ID_Sellas Select Last $M=$(if,$(getvar,cmdactive),,_select;)_l
ID_Selpre Select Previous $M=$(if,$(getvar,cmdactive),,_select;)_p
ID_Selrem Select Remove $M=$(if,$(getvar,cmdactive),,_select;)_r
ID_Selwin Select Window $M=$(if,$(getvar,cmdactive),,_select;)_w
ID_Selwp Select Window Polygon $M=$(if,$(getvar,cmdactive),,_select;)_wp
MM_0399 Select All Selects all objects on thawed layers $M=$(if,$(getvar,cmdactive),_all,^P_ai_selall ^P)
MM_0418 Mesh ^C^C_mesh
MM_0419 Quadric Fit Mesh '_surftype 5
MM_0420 Cubic Fit Mesh '_surftype 6
MM_0421 Bezier Fit Mesh '_surftype 8
MM_0422 Quadric Fit Pline '_splinetype 5
MM_0423 Cubic Fit Pline '_splinetype 6
MM_0424 Tiled Viewports, Single ^C^C(ai_tiledvp 1 nil)
MM_0425 Tiled Viewports, Three: Vertical ^C^C(ai_tiledvp 3 "_V")
MM_0426 Tiled Viewports, Three: Horizontal ^C^C(ai_tiledvp 3 "_H")
MM_0427 Tiled Viewports, Four: Equal ^C^C(ai_tiledvp 4 nil)
MM_0428 Tiled Viewports, Two: Vertical ^C^C(ai_tiledvp 2 "_V")
MM_0429 Tiled Viewports, Three: Right ^C^C(ai_tiledvp 3 "_R")
MM_0430 Tiled Viewports, Three: Left ^C^C(ai_tiledvp 3 "_L")
MM_0431 Tiled Viewports, Four: Left ^C^C(ai_tiledvp 4 "_L")
MM_0432 Tiled Viewports, Two: Horizontal ^C^C(ai_tiledvp 2 "_H")
MM_0433 Tiled Viewports, Three: Above ^C^C(ai_tiledvp 3 "_A")
MM_0434 Tiled Viewports, Three: Below ^C^C(ai_tiledvp 3 "_B")
MM_0435 Tiled Viewports, Four: Right ^C^C(ai_tiledvp 4 "_R")
MM_0436 AutoCAD ^C^C^P(ai_rootmenus) ^P
MM_0437 * * * * $S=ACAD.OSNAP
MM_0438 FILE $S=ACAD.01_FILE
MM_0439 EDIT $S=ACAD.02_EDIT
MM_0440 VIEW 1 $S=ACAD.03_VIEW1
MM_0441 VIEW 2 $S=ACAD.04_VIEW2
MM_0442 INSERT $S=ACAD.05_INSERT
MM_0443 FORMAT $S=ACAD.06_FORMAT
MM_0444 TOOLS 1 $S=ACAD.07_TOOLS1
MM_0445 TOOLS 2 $S=ACAD.08_TOOLS2
MM_0446 DRAW 1 $S=ACAD.09_DRAW1
MM_0447 DRAW 2 $S=ACAD.10_DRAW2
MM_0448 DIMNSION $S=ACAD.11_DIMENSION
MM_0449 MODIFY1 $S=ACAD.12_MODIFY1
MM_0450 MODIFY2 $S=ACAD.13_MODIFY2
MM_0451 HELP $S=ACAD.14_HELP
MM_0453 LAST $S=ACAD.
MM_0456 Intersec _int
MM_0457 App Int _appint
MM_0461 Perpend _per
MM_0466 Tracking _tt
MM_0468 Last _l
MM_0469 Previous _p
MM_0470 All _all
MM_0471 Cpolygon _cp
MM_0472 Wpolygon _wp
MM_0473 Fence _f
MM_0474 Group _g
MM_0475 Add _a
MM_0476 Remove _r
MM_0477 Undo _u
MM_0478 Filters _'filter
MM_0479 .x .x
MM_0480 .y .y
MM_0481 .z .z
MM_0482 .xy .xy
MM_0483 .xz .xz
MM_0484 .yz .yz
MM_0485 Osnap... '_+dsettings 2
MM_0486 Ddrmodes '_+dsettings 0
MM_0487 Layer '_layer
MM_0488 Group ^C^C_group
MM_0489 OSNAP $S=ACAD.OSNAP
MM_0490 Grip ``
MM_0491 Edit ``
MM_0492 Move _mo
MM_0493 Mirror _mi
MM_0494 Rotate _ro
MM_0495 Scale _sc
MM_0496 Stretch _st
MM_0497 Base Pt _b
MM_0498 Copy _c
MM_0499 Referenc _r
MM_0501 Propchek ^C^C_properties
MM_0502 Exit _x
MM_0504 New ^C^C_new
MM_0505 Open ^C^C_open
MM_0506 Qsave ^C^C_qsave
MM_0507 Saveas ^C^C_saveas
MM_0508 Export ^C^C_export
MM_0509 Config ^C^C_config
MM_0510 Plot ^C^C_plot
MM_0512 Recover ^C^C_recover
MM_0513 Purge ^C^C_-purge
MM_0514 Quit ^C^C_quit
MM_0516 Redo ^C^C_mredo 1
MM_0517 Cut ^C^C_cutclip
MM_0518 Copy ^C^C_copyclip
MM_0519 CopyBase ^C^C_copybase
MM_0520 CopyLink ^C^C_copylink
MM_0521 Paste ^C^C_pasteclip
MM_0522 PasteBlk ^C^C_pasteblock
MM_0523 PasteOri ^C^C_pasteorig
MM_0524 PasteSpc ^C^C_pastespec
MM_0525 OLElinks ^C^C_olelinks
MM_0526 Redraw '_redraw
MM_0527 Redrawal '_redrawall
MM_0529 Regenall ^C^C_regenall
MM_0530 Zoom '_zoom
MM_0531 Pan '_pan
MM_0533 Tilemode ^C^C_tilemode
MM_0534 Mspace ^C^C_mspace
MM_0535 Pspace ^C^C_pspace
MM_0536 Vports ^C^C_-vports
MM_0537 Mview ^C^C_mview
MM_0538 Ddview ^C^C_view
MM_0539 Vpoint ^C^C_vpoint
MM_0540 Plan ^C^C_plan
MM_0541 -Vpoint ^C^C_-vpoint
MM_0542 3dorbit '_3dorbit
MM_0544 Shade ^C^C_-shademode
MM_0545 Render ^C^C_render
MM_0546 Scene ^C^C_scene
MM_0547 Light ^C^C_light
MM_0548 Mapping ^C^C_setuv
MM_0550 Render Environment ^C^C_renderenvironment
MM_0551 Lsnew ^C^C_lsnew
MM_0552 Lsedit ^C^C_lsedit
MM_0553 Lslib ^C^C_lslib
MM_0554 Rmat ^C^C_rmat
MM_0555 Matlib ^C^C_matlib
MM_0556 Rpref ^C^C_rpref
MM_0557 Stats ^C^C_stats
MM_0558 UCSicon ^C^C_ucsicon
MM_0559 Attdisp '_attdisp
MM_0560 Textscr '_textscr
MM_0561 Toolbar ^C^C_toolbar
MM_0562 Ddinsert ^C^C_insert
MM_0563 Xref ^C^C_xref
MM_0564 Image ^C^C_image
MM_0565 3DSin ^C^C_3dsin
MM_0566 ACISin ^C^C_acisin
MM_0567 DXBin ^C^C_dxbin
MM_0568 WMFin ^C^C_wmfin
MM_0570 Insertob ^C^C_insertobj
MM_0572 Color '_color
MM_0573 Linetype '_linetype
MM_0574 Style '_style
MM_0575 Ddim '_dimstyle
MM_0576 Ptype '_ptype
MM_0577 Mlstyle ^C^C_mlstyle
MM_0578 Units '_units
MM_0579 Thicknes '_thickness
MM_0580 Limits '_limits
MM_0581 Ddrename ^C^C_rename
MM_0582 Spell '_spell
MM_0583 Drawordr ^C^C_draworder
MM_0584 Dist '_dist
MM_0586 Massprop ^C^C_massprop
MM_0588 ID '_id
MM_0591 Setvar '_setvar
MM_0592 Appload ^C^C_appload
MM_0593 Script '_script
MM_0594 Saveimg ^C^C_saveimg
MM_0595 Replay ^C^C_replay
MM_0597 Grid '_+dsettings 0
MM_0598 Polar '_+dsettings 1
MM_0599 Ucsp ^C^C_+ucsman 1
MM_0600 Ucsman ^C^C_+ucsman 0
MM_0602 Grips ^C^C_+options 7
MM_0603 Select ^C^C_+options 7
MM_0605 Tablet ^C^C_tablet
MM_0606 Cuiload ^C^C_cuiload
MM_0607 Options ^C^C_options
MM_0610 Xline ^C^C_xline
MM_0611 Mline ^C^C_mline
MM_0612 Pline ^C^C_pline
MM_0613 3Dpoly ^C^C_3dpoly
MM_0615 Rectang ^C^C_rectang
MM_0616 Arc ^C^C_arc
MM_0617 Circle ^C^C_circle
MM_0620 Ellipse ^C^C_ellipse
MM_0621 Block ^C^C_block
MM_0623 Attdef ^C^C_attdef
MM_0624 Point *^C^C_point
MM_0627 Hatch ^C^C_hatch
MM_0628 Boundary ^C^C_boundary
MM_0630 Mtext ^C^C_mtext
MM_0631 Dtext ^C^C_dtext
MM_0632 SURFACES $S=ACAD.3D
MM_0633 SOLIDS $S=ACAD.101_SOLIDS
MM_0644 Interfere ^C^C_interfere
MM_0645 Soldraw ^C^C_soldraw
MM_0646 Solview ^C^C_solview
MM_0647 Solprof ^C^C_solprof
MM_0650 Arc Len ^C^C_dimarc
MM_0658 Toleranc ^C^C_tolerance
MM_0659 Center ^C^C_dimcenter
MM_0660 Dimedit ^C^C_dimedit
MM_0661 Dimtedit ^C^C_dimtedit
MM_0663 Dimstyle ^C^C_-dimstyle
MM_0664 Update ^C^C_dim _update
MM_0665 Property ^C^C_properties
MM_0666 MatchPrp '_matchprop
MM_0667 Xbind ^C^C_xbind
MM_0668 Imageadj ^C^C_imageadjust
MM_0669 Imagequa ^C^C_imagequality
MM_0670 Transpar ^C^C_transparency
MM_0671 Imagefrm ^C^C_imageframe
MM_0672 Xclip ^C^C_xclip
MM_0673 Imageclp ^C^C_imageclip
MM_0674 Hatchedt ^C^C_hatchedit
MM_0675 Pedit ^C^C_pedit
MM_0676 Splinedt ^C^C^R_splinedit
MM_0677 Mledit ^C^C_mledit
MM_0678 Attedit ^C^C_attedit
MM_0679 -Attedit ^C^C_-attedit
MM_0680 Textedit ^C^C_textedit
MM_0681 Erase ^C^C_erase
MM_0685 Array ^C^C_-array
MM_0686 Refedit ^C^C_refedit;
MM_0697 3Darray ^C^C_3darray
MM_0698 Mirror3D ^C^C_mirror3d
MM_0699 Rotate3D ^C^C_rotate3d
MM_0703 Intrsect ^C^C_intersect
MM_0705 Help '_help
MM_0707 Browser ^C^C_browser ;
MM_0709 Solid: ^C^C_solid
MM_0710 3Dface ^C^C_3dface
MM_0711 3Dobjec: $I=ACAD.image_3dobjects $I=ACAD.*
MM_0712 Edge: ^C^C_edge
MM_0713 3Dmesh: ^C^C_3dmesh
MM_0714 Revsurf: ^C^C_revsurf
MM_0715 Tabsurf: ^C^C_tabsurf
MM_0716 Rulsurf: ^C^C_rulesurf
MM_0717 Edgsurf: ^C^C_edgesurf
MM_0718 Surftb1: '_surftab1
MM_0719 Surftb2: '_surftab2
MM_0720 PolyVars $I=ACAD.image_poly $I=*
MM_0721 3Darray: ^C^C_3darray
MM_0722 Rectang _r
MM_0723 Polar _p
MM_0724 Yes _y
MM_0725 No _n
MM_0726 3Dface: ^C^C_3dface
MM_0727 Invisibl _i
MM_0728 ShowEdge ^P(setvar "splframe" 1)(ai_showedge_alert) ^P
MM_0729 HideEdge ^P(setvar "splframe" 0)(ai_hideedge_alert) ^P
MM_0732 3Dpoly: ^C^C_3dpoly
MM_0733 Close _c
MM_0735 @ @\
MM_0736 Arc: ^C^C_arc
MM_0737 3 Point \\
MM_0738 St,C,End \_c \
MM_0739 St,C,Ang \_c \_a
MM_0740 St,C,Len \_c \_l
MM_0741 St,E,Ang \_e \_a
MM_0742 St,E,Dir \_e \_d
MM_0743 St,E,Rad \_e \_r
MM_0744 Ce,S,End _c \\
MM_0745 Ce,S,Ang _c \\_a
MM_0746 Ce,S,Len _c \\_l
MM_0747 ArcCont: ^C^C_arc ;
MM_0748 LinCont: ^C^C_line ;
MM_0749 Area: ^C^C_area
MM_0750 Object _o
MM_0752 Subtract _s
MM_0753 Boundar: ^C^C_boundary
MM_0754 Array: ^C^C_-array
MM_0759 Attdisp: '_attdisp
MM_0760 Normal _n
MM_0761 On _on
MM_0762 Off _off
MM_0763 -Attedit: ^C^C_-attedit
MM_0764 Attedit: ^C^C_attedit
MM_0767 Value _v
MM_0768 Position _p
MM_0769 Height _h
MM_0770 Angle _a
MM_0771 Style _s
MM_0772 Layer _l
MM_0773 Color _c
MM_0774 Next _n
MM_0775 ColorDlg (acad_colordlg 256)
MM_0776 Audit: ^C^C_audit
MM_0779 Auditct: '_auditctl
MM_0780 Break: ^C^C_break
MM_0781 First _f
MM_0783 Sel, 2nd \\
MM_0784 Sel Pt \@\
MM_0785 Sel,2Pts \_first \
MM_0786 Sel, 1st \_first \@\
MM_0787 Chamfer: ^C^C_chamfer
MM_0788 Polyline _p
MM_0789 Distance _d \\_chamfer
MM_0790 Dist = 0 _d 0 0 _chamfer
MM_0791 Angle _a \\ _chamfer
MM_0792 Trim _t
MM_0793 No Trim _n
MM_0794 Method _m
MM_0795 Distance _d
MM_0797 Circle: ^C^C_circle
MM_0798 Cen,Rad \\
MM_0799 Cen,Dia \_d
MM_0800 2 Point _2p \
MM_0801 3 Point _3p \\
MM_0802 TTR _ttr
MM_0803 TanTanTa _3p _tan \_tan \_tan \
MM_0804 CopyRad: ^C^C_circlerad '_cal rad;
MM_0805 Copy: ^C^C_copy
MM_0806 Multiple _m
MM_0807 DimAlin: ^C^C_dimaligned
MM_0808 Text _t
MM_0810 DimAngl: ^C^C_dimangular
MM_0813 DimEdit: ^C^C_dimedit
MM_0814 Home _h
MM_0815 New _n
MM_0816 Rotate _r
MM_0817 Oblique _o
MM_0818 DimLinr: ^C^C_dimlinear
MM_0819 Horizont _h
MM_0820 Vertical _v
MM_0823 DimOrdin ^C^C_dimordinate
MM_0824 Xdatum _x
MM_0825 Ydatum _y
MM_0826 DimOver: ^C^C_dimoverride
MM_0827 Clear _c
MM_0828 DimTedt: ^C^C_dimtedit
MM_0829 Left _l
MM_0830 Right _r
MM_0833 Divide: ^C^C_divide
MM_0834 Block _b
MM_0837 Draword: ^C^C_draworder
MM_0838 Above _a
MM_0839 Under _u
MM_0840 Front _f
MM_0841 Back _b
MM_0842 Dtext: ^C^C_dtext
MM_0843 Mtext: ^C^C_mtext
MM_0845 Justify _j
MM_0846 Align _a
MM_0847 Center _c
MM_0848 Fit _f
MM_0849 Middle _m
MM_0851 Top Left _tl
MM_0852 Top Cent _tc
MM_0853 Top Rght _tr
MM_0854 Mid Left _ml
MM_0855 Mid Cent _mc
MM_0856 Mid Rght _mr
MM_0857 Bot Left _bl
MM_0858 Bot Cent _bc
MM_0859 Bot Rght _br
MM_0860 Style: '_style
MM_0861 3dorbit: '_3dorbit
MM_0862 Dvwblok: ^C^C_dview ;
MM_0863 Camera _ca
MM_0864 Target _ta
MM_0866 Points _po
MM_0867 Pan _pa
MM_0868 Zoom _z
MM_0869 Twist _tw
MM_0870 Clip _cl
MM_0871 Hide _h
MM_0878 Ellipse: ^C^C_ellipse
MM_0879 Arc _a
MM_0881 Rotation _r
MM_0882 Pellips: '_pellipse
MM_0883 Erase: ^C^C_erase
MM_0884 Oops: ^C^C_oops
MM_0885 Extend: ^C^C_extend
MM_0886 Edge _e
MM_0887 Extend _e
MM_0888 NoExten _n
MM_0889 Project _p
MM_0890 None _n
MM_0891 UCS _u
MM_0892 View _v
MM_0894 Extrude: ^C^C^R_extrude _MO _SO;
MM_0895 Path _p
MM_0896 Fillet: ^C^C_fillet
MM_0898 Radius _r
MM_0899 Radius 0 _r 0
MM_0902 Imagclp: ^C^C_imageclip
MM_0903 New ;
MM_0906 Delete _d
MM_0907 Polygon _p
MM_0908 Rectang ;
MM_0909 Imagqua: ^C^C_imagequality
MM_0910 High _h
MM_0911 Draft _d
MM_0912 Leader: ^C^C_qleader
MM_0913 Format _f
MM_0915 Lengthn: ^C^C_lengthen
MM_0916 Delta _de
MM_0917 Percent _p
MM_0918 Total _t
MM_0919 Dynamic _dy
MM_0921 Length _l
MM_0923 Line: ^C^C_line
MM_0924 1 Line: ^C^C_line \\;
MM_0925 Continue ;
MM_0930 Matchpr: '_matchprop
MM_0931 Settings _s
MM_0932 Measure: ^C^C_measure
MM_0936 Mirror: ^C^C_mirror
MM_0937 Mirror3: ^C^C_mirror3d
MM_0940 Mirrtex: '_mirrtext
MM_0942 Entity _e
MM_0943 Z Axis _z
MM_0944 View _v
MM_0945 XY _xy
MM_0946 YZ _yz
MM_0947 ZX _zx
MM_0948 3 Point _3
MM_0949 Mline: ^C^C_mline
MM_0951 Scale _s
MM_0952 Style _st
MM_0956 Mlstyle: ^C^C_mlstyle
MM_0957 Mledit: ^C^C_mledit
MM_0958 Mview: ^C^C_mview
MM_0961 Shadeplot _s
MM_0963 2 2
MM_0964 3 3
MM_0965 4 4
MM_0966 Restore _r
MM_0967 Offset: ^C^C_offset
MM_0968 Through _t
MM_0971 Osnap: '_-osnap
MM_0976 Extens _ext
MM_0987 Pedit: ^C^C_pedit
MM_0988 Break _b
MM_0990 Down/Dec _d
MM_0991 Ed Vertx _e
MM_0993 Go _g
MM_0994 Insert _i
MM_0995 Join _j
MM_0996 LtypeGen _l
MM_0997 Move/Opn _m
MM_0998 Next/Opn _n
MM_0999 Open _o
MM_1000 Prev _p
MM_1001 Regen/Rt _r
MM_1002 REdispla _re
MM_1003 Spln/Str _s
MM_1004 Tan _t
MM_1005 Undo/Up _u
MM_1006 Width _w
MM_1009 Plan: ^C^C_plan
MM_1010 Current _c
MM_1011 UCS _u
MM_1012 World _w
MM_1013 Follow: '_ucsfollow
MM_1014 Pline: ^C^C_pline
MM_1017 Halfwid _h
MM_1022 Center _ce
MM_1023 Close _cl
MM_1024 Direct'n _d \
MM_1025 Line _l
MM_1027 2nd Pt _s \
MM_1029 Point: *^C^C_point
MM_1030 Ptype: '_ptype
MM_1031 Pdmode: '_pdmode
MM_1032 Pdsize: '_pdsize
MM_1033 Polygon: ^C^C_polygon
MM_1035 I-scribe _i
MM_1036 C-scribe _c
MM_1037 Purge: ^C^C_-purge
MM_1038 Blocks _b
MM_1039 Dimstyle _d
MM_1040 Layers _la
MM_1041 Ltypes _lt
MM_1042 Shapes _sh
MM_1043 Styles _st
MM_1044 All _a
MM_1047 Revolve: ^C^C^R_revolve _Mo _SO;
MM_1049 X Axis _x
MM_1050 Y Axis _y
MM_1051 Rotate: ^C^C_rotate
MM_1053 Rotate3: ^C^C_rotate3d
MM_1054 Rotat3d: ^C^C_rotate3d
MM_1061 2 Points _2p
MM_1062 Scale: ^C^C_scale
MM_1064 Section: ^C^C_section
MM_1071 3 Point _3p
MM_1072 Setvar: '_setvar
MM_1073 List ?
MM_1074 * *
MM_1075 Shade: ^C^C_-shademode
MM_1076 2D Wire _2
MM_1077 3D Wire _3
MM_1078 Hidden _h
MM_1079 Flat _f
MM_1080 Gouraud _g
MM_1081 Flat+W _l
MM_1082 Gour+W _o
MM_1083 Shadedif '_shadedif
MM_1084 Regen: ^C^C_regen
MM_1085 Slice: ^C^C_slice
MM_1093 Spline: ^C^C^R_spline
MM_1096 Fit Tol _f
MM_1097 Splframe '_splframe
MM_1098 Splnedt: ^C^C^R_splinedit
MM_1099 Fit _fit
MM_1100 Add _add
MM_1101 Delete _delete
MM_1103 Purge _purge
MM_1104 Tangents _tangents
MM_1105 Toleranc _tolerance
MM_1108 MoveVert _v
MM_1111 Select _s
MM_1112 Refine _r
MM_1113 AddPoint _a
MM_1114 ElevOrdr _e
MM_1115 Weight _w
MM_1116 Reverse _e
MM_1119 Tablet: ^C^C_tablet
MM_1120 Calibrat _cal
MM_1121 Config _cfg 4 \\\25 9 \\\11 9 \\\9 13 \\\25 7 _y \\_y
MM_1122 Reconfig _cfg 4 _y \\\;;\\\;;\\\;;\\\;;_y \\
MM_1123 Re-DfCfg _cfg 4 _y \\\25 9 \\\11 9 \\\9 13 \\\25 7 _y \\
MM_1128 Orthognl _o
MM_1129 Affine _a
MM_1130 Projectv _p
MM_1131 Trim: ^C^C_trim
MM_1140 UCS: ^C^C_ucs
MM_1141 Origin _o
MM_1144 X _x
MM_1145 Y _y
MM_1146 Z _z
MM_1151 Save _s
MM_1155 Ucsman: ^C^C_+ucsman 0
MM_1156 Ucsp: ^C^C_+ucsman 1
MM_1158 UCSicon: ^C^C_ucsicon
MM_1163 Origin _or
MM_1164 NoOrigin _n
MM_1165 Proprtys _p
MM_1166 View: '_-view
MM_1167 List _?
MM_1171 Window _w
MM_1172 Pan: '_pan
MM_1173 Zoom: '_zoom
MM_1174 Ddview: ^C^C_view
MM_1176 Dview: ^C^C_dview
MM_1177 Vports: ^C^C_vports
MM_1178 Layout ^C^C^P(ai_tiledvp_chk T) ^P
MM_1183 Single _s
MM_1184 ? ?
MM_1191 Below _b
MM_1194 -Vpoint: ^C^C_-vpoint
MM_1196 Axes ;
MM_1197 Top _non *0,0,1
MM_1198 Bottom _non *0,0,-1
MM_1199 Left _non *-1,0,0
MM_1200 Right _non *1,0,0
MM_1201 Front _non *0,-1,0
MM_1202 Back _non *0,1,0
MM_1203 Iso SW _non *-1,-1,1
MM_1204 Iso SE _non *1,-1,1
MM_1205 Iso NE _non *1,1,1
MM_1206 Iso NW _non *-1,1,1
MM_1212 Layout: ^C^C^P(ai_tiledvp_chk T) ^P
MM_1217 Single _si
MM_1228 Xclip: ^C^C_xclip
MM_1231 Clipdpth _c
MM_1237 Xline: ^C^C_xline
MM_1241 Bisect _b
MM_1242 Offset _o
MM_1243 Ray: ^C^C_ray
MM_1245 Realtime ;
MM_1248 Dynamic _d
MM_1251 In 2x
MM_1252 Out .5x
MM_1254 Extents _e
MM_1255 TABLET2CC_regen ^C^C_regen
MM_1256 TABLET2'_zoom _e '_zoom _e
MM_1257 TABLET2'_zoom _a '_zoom _a
MM_1258 TABLET2'_zoom _w '_zoom _w
MM_1259 TABLET2'_zoom _p '_zoom _p
MM_1260 TABLET2CC_box ^C^C_box
MM_1261 TABLET2CC_mtext ^C^C_mtext
MM_1262 TABLET2CC_circle ^C^C_circle
MM_1263 TABLET2CC_line ^C^C_line
MM_1264 TABLET2CC ^C^C
MM_1265 TABLET2CC_regenall ^C^C_regenall
MM_1266 TABLET2'_dsviewer '_dsviewer
MM_1267 TABLET2'_zoom _c '_zoom _c
MM_1268 TABLET2'_zoom .5x '_zoom .5x
MM_1269 TABLET2'_zoom 2x '_zoom 2x
MM_1270 TABLET2CC_sphere ^C^C_sphere
MM_1271 TABLET2CC_dtext ^C^C_dtext
MM_1272 TABLET2CC_donut ^C^C_donut
MM_1273 TABLET2CC_ray ^C^C_ray
MM_1274 TABLET2'_zoom ; '_zoom ;
MM_1275 TABLET2'_attdisp '_attdisp
MM_1276 TABLET2CC_ucsicon ^C^C_ucsicon
MM_1277 TABLET2CC_tilemode 1 ^C^C_tilemode 1
MM_1278 TABLET2CC^P_mspace ^P ^C^C^P_mspace ^P
MM_1279 TABLET2CC^P_pspace ^P ^C^C^P_pspace ^P
MM_1280 TABLET2CC_cylinder ^C^C_cylinder
MM_1281 TABLET2CC_solid ^C^C_solid
MM_1282 TABLET2CC_spline ^C^C^R_spline
MM_1283 TABLET2CC_xline ^C^C_xline
MM_1285 TABLET2CC_render ^C^C_render
MM_1286 TABLET2CC_hide ^C^C_hide
MM_1287 TABLET2CC_vports ^C^C_vports
MM_1289 TABLET2CC_view ^C^C_view
MM_1290 TABLET2CC_cone ^C^C_cone
MM_1291 TABLET2CC_3dface ^C^C_3dface
MM_1292 TABLET2CC_ellipse ^C^C_ellipse
MM_1293 TABLET2CC_mline ^C^C_mline
MM_1295 TABLET2CC_scene ^C^C_scene
MM_1296 TABLET2CC_shade ^C^C_shade
MM_1297 TABLET2CC_plan ^C^C_plan
MM_1298 TABLET2CC_-vpoint ^C^C_-vpoint
MM_1299 TABLET2CC_vpoint ^C^C_vpoint
MM_1300 TABLET2CC_wedge ^C^C_wedge
MM_1301 3D Surfaces... $I=ACAD.image_3dobjects $I=ACAD.*
MM_1302 TABLET2CC_block ^C^C_block
MM_1303 TABLET2CC_pline ^C^C_pline
MM_1304 TABLET2'_pan '_pan
MM_1305 TABLET2CC_light ^C^C_light
MM_1306 TABLET2CC_shademode ^C^C_shademode
MM_1307 TABLET2'_-view _nwiso '_-view _nwiso
MM_1308 TABLET2'_-view _back '_-view _back
MM_1309 TABLET2'_-view _neiso '_-view _neiso
MM_1310 TABLET2CC_torus ^C^C_torus
MM_1311 TABLET2CC_revsurf ^C^C_revsurf
MM_1312 TABLET2*CC_point *^C^C_point
MM_1313 TABLET2CC_3dpoly ^C^C_3dpoly
MM_1315 TABLET2CC_rmat ^C^C_rmat
MM_1316 TABLET2CC_renderenvironment ^C^C_renderenvironment
MM_1317 TABLET2'_-view _left '_-view _left
MM_1318 TABLET2'_-view _top '_-view _top
MM_1319 TABLET2'_-view _right '_-view _right
MM_1320 TABLET2CC_extrude ^C^C^R_extrude _MO _SO;
MM_1321 TABLET2CC_tabsurf ^C^C_tabsurf
MM_1322 TABLET2CC_hatch ^C^C_hatch
MM_1323 TABLET2CC_polygon ^C^C_polygon
MM_1325 TABLET2CC_matlib ^C^C_matlib
MM_1327 TABLET2'_-view _swiso '_-view _swiso
MM_1328 TABLET2'_-view _front '_-view _front
MM_1329 TABLET2'_-view _seiso '_-view _seiso
MM_1330 TABLET2CC_revolve ^C^C^R_revolve _MO _SO;
MM_1331 TABLET2CC_rulesurf ^C^C_rulesurf
MM_1332 TABLET2CC_boundary ^C^C_boundary
MM_1333 TABLET2CC_rectang ^C^C_rectang
MM_1334 TABLET2'_redrawall '_redrawall
MM_1335 TABLET2CC_setuv ^C^C_setuv
MM_1336 TABLET2CC_rpref ^C^C_rpref
MM_1337 TABLET2CC_toolbar ^C^C_toolbar
MM_1338 TABLET2'_-view _bottom '_-view _bottom
MM_1339 TABLET2'_3dorbit '_3dorbit
MM_1340 TABLET2CC_qleader ^C^C_qleader
MM_1341 TABLET2CC_edgesurf ^C^C_edgesurf
MM_1342 TABLET2CC_region ^C^C_region
MM_1343 TABLET2CC_arc ^C^C_arc
MM_1345 TABLET3<<135 <<135
MM_1347 TABLET3<<90 <<90
MM_1349 TABLET3<<45 <<45
MM_1351 TABLET3<<180 <<180
MM_1353 TABLET3<\ <\
MM_1355 TABLET3<<0 <<0
MM_1357 TABLET3<<225 <<225
MM_1359 TABLET3<<270 <<270
MM_1361 TABLET3<<315 <<315
MM_1363 TABLET3^H ^H
MM_1369 TABLET37/8\ 7/8\
MM_1371 TABLET3/16\ /16\
MM_1373 TABLET3/32\ /32\
MM_1375 TABLET31/2\ 1/2\
MM_1377 TABLET35/8\ 5/8\
MM_1379 TABLET33/4\ 3/4\
MM_1381 TABLET31/8\ 1/8\
MM_1383 TABLET31/4\ 1/4\
MM_1385 TABLET33/8\ 3/8\
MM_1387 TABLET3-\ -\
MM_1389 TABLET3/\ /\
MM_1391 TABLET3X\ X\
MM_1393 TABLET3@\ @\
MM_1395 TABLET3'\ '\
MM_1397 TABLET3"\ "\
MM_1399 TABLET37\ 7\
MM_1401 TABLET38\ 8\
MM_1403 TABLET39\ 9\
MM_1405 TABLET34\ 4\
MM_1407 TABLET35\ 5\
MM_1409 TABLET36\ 6\
MM_1411 TABLET31\ 1\
MM_1413 TABLET32\ 2\
MM_1415 TABLET33\ 3\
MM_1417 TABLET30\ 0\
MM_1419 TABLET3.\ .\
MM_1421 TABLET3,\ ,\
MM_1423 TABLET4CC_insertobj ^C^C_insertobj
MM_1424 TABLET4CC_import ^C^C_import
MM_1425 TABLET4CC_image ^C^C_image
MM_1426 TABLET4CC_xref ^C^C_xref
MM_1427 TABLET4CC_insert ^C^C_insert
MM_1428 TABLET4CC_area ^C^C_area
MM_1429 TABLET4'_dist '_dist
MM_1430 TABLET4CC_draworder ^C^C_draworder
MM_1431 TABLET4'_spell '_spell
MM_1432 TABLET4CC_u ^C^C_u
MM_1433 TABLET4CC_cutclip ^C^C_cutclip
MM_1434 TABLET4CC_copyclip ^C^C_copyclip
MM_1435 TABLET4_parallel _parallel
MM_1436 TABLET4_endpoint _endpoint
MM_1437 TABLET4_midpoint _midpoint
MM_1438 TABLET4_intersect _intersect
MM_1439 TABLET4_appint _appint
MM_1440 TABLET4_center _center
MM_1441 TABLET4_quadrant _quadrant
MM_1442 TABLET4_tangent _tangent
MM_1443 TABLET4CC_new ^C^C_new
MM_1444 TABLET4CC_open ^C^C_open
MM_1445 TABLET4'_ptype '_ptype
MM_1446 TABLET4'_style '_style
MM_1447 TABLET4'_linetype '_linetype
MM_1448 TABLET4'_color '_color
MM_1449 TABLET4'_layer '_layer
MM_1450 TABLET4CC_massprop ^C^C_massprop
MM_1451 TABLET4CC_list ^C^C_list
MM_1452 TABLET4'_id '_id
MM_1453 TABLET4'_setvar '_setvar
MM_1454 TABLET4CC_mredo 1 ^C^C_mredo 1
MM_1455 TABLET4CC_pasteclip ^C^C_pasteclip
MM_1456 TABLET4CC_erase ^C^C_erase
MM_1457 TABLET4_from _from
MM_1458 TABLET4_perpend _perpend
MM_1459 TABLET4_insert _insert
MM_1460 TABLET4_node _node
MM_1461 TABLET4_nearest _nearest
MM_1462 TABLET4_extension _extension
MM_1463 TABLET4_none _none
MM_1464 TABLET4'_+dsettings 2 '_+dsettings 2
MM_1465 TABLET4CC_qsave ^C^C_qsave
MM_1467 TABLET4CC_rename ^C^C_rename
MM_1468 TABLET4'_limits '_limits
MM_1469 TABLET4'_thickness '_thickness
MM_1470 TABLET4'_units '_units
MM_1471 TABLET4CC_mlstyle ^C^C_mlstyle
MM_1472 TABLET4CC_saveimg ^C^C_saveimg
MM_1473 TABLET4CC_replay ^C^C_replay
MM_1474 TABLET4'_script '_script
MM_1475 TABLET4CC_appload ^C^C_appload
MM_1476 TABLET4CC_measure ^C^C_measure
MM_1477 TABLET4CC_divide ^C^C_divide
MM_1479 TABLET4\(M=\)(if,\((eq,\)(substr,$(getvar,cmdnames),1,4),GRIP),_copy,CC_copy) $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_copy,^C^C_copy)
MM_1480 TABLET4\(M=\)(if,\((eq,\)(substr,$(getvar,cmdnames),1,4),GRIP),_mirror,CC_mirror) $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_mirror,^C^C_mirror)
MM_1481 TABLET4CC_offset ^C^C_offset
MM_1482 TABLET4CC_array ^C^C_array
MM_1483 TABLET4\(M=\)(if,\((eq,\)(substr,$(getvar,cmdnames),1,4),GRIP),_move,CC_move) $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_move,^C^C_move)
MM_1484 TABLET4\(M=\)(if,\((eq,\)(substr,$(getvar,cmdnames),1,4),GRIP),_rotate,CC_rotate) $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_rotate,^C^C_rotate)
MM_1485 TABLET4\(M=\)(if,\((eq,\)(substr,$(getvar,cmdnames),1,4),GRIP),_scale,CC_scale) $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_scale,^C^C_scale)
MM_1486 TABLET4\(M=\)(if,\((eq,\)(substr,$(getvar,cmdnames),1,4),GRIP),_stretch,CC_stretch) $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_stretch,^C^C_stretch)
MM_1487 TABLET4CC_saveas ^C^C_saveas
MM_1488 TABLET4CC_pagesetup ^C^C_pagesetup
MM_1489 TABLET4CC_qdim ^C^C_qdim
MM_1490 TABLET4CC_qleader ^C^C_qleader
MM_1491 TABLET4CC_dimordinate ^C^C_dimordinate
MM_1492 TABLET4CC_dimaligned ^C^C_dimaligned
MM_1493 TABLET4CC_dimlinear ^C^C_dimlinear
MM_1494 TABLET4CC_ucs ^C^C_ucs
MM_1495 TABLET4CC_+ucsman 0 ^C^C_+ucsman 0
MM_1496 TABLET4CC_+ucsman 1 ^C^C_+ucsman 1
MM_1497 TABLET4'_dsettings '_dsettings
MM_1498 TABLET4CC_dbconnect ^C^C_dbconnect
MM_1500 TABLET4CC_lengthen ^C^C_lengthen
MM_1501 TABLET4CC_trim ^C^C_trim
MM_1502 TABLET4CC_extend ^C^C_extend
MM_1503 TABLET4CC_break ^C^C_break
MM_1504 TABLET4CC_chamfer ^C^C_chamfer
MM_1505 TABLET4CC_fillet ^C^C_fillet
MM_1506 TABLET4CC_3darray ^C^C_3darray
MM_1507 TABLET4CC_mirror3d ^C^C_mirror3d
MM_1508 TABLET4CC_rotate3d ^C^C_rotate3d
MM_1509 TABLET4CC_export ^C^C_export
MM_1510 TABLET4CC_plot ^C^C_plot
MM_1511 TABLET4CC_tolerance ^C^C_tolerance
MM_1512 TABLET4CC_dimcenter ^C^C_dimcenter
MM_1513 TABLET4CC_dimangular ^C^C_dimangular
MM_1514 TABLET4CC_dimdiameter ^C^C_dimdiameter
MM_1515 TABLET4CC_dimradius ^C^C_dimradius
MM_1516 TABLET4CC_tablet ^C^C_tablet
MM_1517 TABLET4CC_group ^C^C_group
MM_1518 TABLET4CC_qselect ^C^C_qselect
MM_1519 TABLET4CC_find ^C^C_find
MM_1520 TABLET4'_adcenter '_adcenter
MM_1522 TABLET4CC_align ^C^C_align
MM_1523 TABLET4CC_union ^C^C_union
MM_1524 TABLET4CC_subtract ^C^C_subtract
MM_1525 TABLET4CC_intersect ^C^C_intersect
MM_1526 TABLET4CC_xclip ^C^C_xclip
MM_1527 TABLET4CC_xbind ^C^C_xbind
MM_1528 TABLET4CC_imageadjust ^C^C_imageadjust
MM_1529 TABLET4CC_transparency ^C^C_transparency
MM_1530 TABLET4CC_imageclip ^C^C_imageclip
MM_1531 TABLET4CC_preview ^C^C_preview
MM_1532 TABLET4CC_purge ^C^C_purge
MM_1533 TABLET4CC_dimedit ^C^C_dimedit
MM_1534 TABLET4CC_dimtedit ^C^C_dimtedit
MM_1535 TABLET4CC_-dimstyle _apply ^C^C_-dimstyle _apply
MM_1536 TABLET4CC_dimoverride ^C^C_dimoverride
MM_1537 TABLET4'_dimstyle '_dimstyle
MM_1538 TABLET4'_help '_help
MM_1539 TABLET4CC_browser ; ^C^C_browser ;
MM_1540 TABLET4CC_cuiload ^C^C_cuiload
MM_1541 TABLET4CC_options ^C^C_options
MM_1542 TABLET4CC_properties ^C^C_properties
MM_1544 TABLET4'_matchprop '_matchprop
MM_1546 TABLET4CC_hatchedit ^C^C_hatchedit
MM_1547 TABLET4CC_pedit ^C^C_pedit
MM_1548 TABLET4CC_splinedit ^C^C^R_splinedit
MM_1549 TABLET4CC_mledit ^C^C_mledit
MM_1550 TABLET4CC_attedit ^C^C_attedit
MM_1551 TABLET4CC_textedit ^C^C_textedit
MM_1552 TABLET4CC_explode ^C^C_explode
MM_1553 TABLET4CC_stylesmanager ^C^C_stylesmanager
MM_1554 TABLET4CC_exit ^C^C_exit
MM_1556 CTRL+R ^V
MM_SP_02 CTRL+HOME ^C^C_gotostart
MM_1557 CTRL+H '_setvar;pickstyle;$M=$(if,$(eq,$(getvar,pickstyle),0),1,$(if,$(eq,$(getvar,pickstyle),1),0,$(if,$(eq,$(getvar,pickstyle),2),3,2)))
MM_1615 Toggle Orthogonal Mode ^P'_.orthomode $M=$(if,$(and,$(getvar,orthomode),1),$(-,$(getvar,orthomode),1),$(+,$(getvar,orthomode),1))
MM_1616 Toggle Object Snap Mode ^P'_.osmode $M=$(if,$(and,$(getvar,osmode),16384),$(-,$(getvar,osmode),16384),$(+,$(getvar,osmode),16384))
MM_1617 Toggle Polar Mode ^P'_.autosnap $M=$(if,$(and,$(getvar,autosnap),8),$(-,$(getvar,autosnap),8),$(+,$(getvar,autosnap),8))
MM_1618 Object Snap Enforcement ^P$M=$(if,$(and,$(getvar,osmode),16384),'_.osmode $(-,$(getvar,osmode),16384) )$(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1619 Toggle Object Snap Tracking Mode ^P$M=$(if,$(and,$(getvar,autosnap),16),,$(if,$(and,$(getvar,osmode),16384),'_.osmode $(-,$(getvar,osmode),16384) ))'_.autosnap $(if,$(and,$(getvar,autosnap),16),$(-,$(getvar,autosnap),16),$(+,$(getvar,autosnap),16))
MM_1620 Object Snap Override : Endpoint ^P'_.osmode 1 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1621 Object Snap Override : Midpoint ^P'_.osmode 2 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1622 Object Snap Override : Center ^P'_.osmode 4 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1623 Disable All Snapping and Tracking ^P'_.orthomode 0 '_.osmode 0 '_.snapmode 0 '_.autosnap 0
MM_1625 Toggle Object Snap Mode ^P'_.osmode $M=$(if,$(and,$(getvar,osmode),16384),$(-,$(getvar,osmode),16384),$(+,$(getvar,osmode),16384))
MM_1626 Toggle Polar Mode ^P'_.autosnap $M=$(if,$(and,$(getvar,autosnap),8),$(-,$(getvar,autosnap),8),$(+,$(getvar,autosnap),8))
MM_1627 Object Snap Enforcement ^P$M=$(if,$(and,$(getvar,osmode),16384),'_.osmode $(-,$(getvar,osmode),16384) )$(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1628 Toggle Object Snap Tracking Mode ^P$M=$(if,$(and,$(getvar,autosnap),16),,$(if,$(and,$(getvar,osmode),16384),'_.osmode $(-,$(getvar,osmode),16384) ))'_.autosnap $(if,$(and,$(getvar,autosnap),16),$(-,$(getvar,autosnap),16),$(+,$(getvar,autosnap),16))
MM_1629 Object Snap Override : Endpoint ^P'_.osmode 1 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1630 Object Snap Override : Midpoint ^P'_.osmode 2 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1631 Object Snap Override : Center ^P'_.osmode 4 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1632 Disable All Snapping and Tracking ^P'_.orthomode 0 '_.osmode 0 '_.snapmode 0 '_.autosnap 0
MM_1633 Toggle Object Snap Mode ^P'_.osmode $M=$(if,$(and,$(getvar,osmode),16384),$(-,$(getvar,osmode),16384),$(+,$(getvar,osmode),16384))
MM_1634 Toggle Orthogonal Mode ^P'_.orthomode $M=$(if,$(and,$(getvar,orthomode),1),$(-,$(getvar,orthomode),1),$(+,$(getvar,orthomode),1))
MM_1635 Toggle Snap Mode ^P'_.snapmode $M=$(if,$(and,$(getvar,snapmode),1),$(-,$(getvar,snapmode),1),$(+,$(getvar,snapmode),1))
MM_1636 Toggle Polar Mode ^P'_.autosnap $M=$(if,$(and,$(getvar,autosnap),8),$(-,$(getvar,autosnap),8),$(+,$(getvar,autosnap),8))
MM_1637 Toggle Object Snap Tracking Mode ^P$M=$(if,$(and,$(getvar,autosnap),16),,$(if,$(and,$(getvar,osmode),16384),'_.osmode $(-,$(getvar,osmode),16384) ))'_.autosnap $(if,$(and,$(getvar,autosnap),16),$(-,$(getvar,autosnap),16),$(+,$(getvar,autosnap),16))
MM_1638 Suppress Dynamic Input Holding down the assigned Temporary Override shortcut will temporarily suppress Dynamic Input (i.e. DYNMODE=0). For example, if the DYNMODE sysvar is set to 1, then it will be temporarily reset to 0. ^P'_.dynmode $M=$(if,$(>,$(getvar,dynmode),0),$(*,$(getvar,dynmode),-1),$(getvar,dynmode))
MM_1639 Object Snap Override : Apparent Intersection ^P'_.osmode 2048 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1640 Object Snap Override : Nearest ^P'_.osmode 512 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1641 Object Snap Override : Quadrant ^P'_.osmode 16 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1642 Object Snap Override : Parallel ^P'_.osmode 8192 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1644 Object Snap Override : Insertion ^P'_.osmode 64 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1645 Object Snap Override : Intersection ^P'_.osmode 32 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1646 Object Snap Override : Node ^P'_.osmode 8 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1647 Object Snap Override : Perpendicular ^P'_.osmode 128 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1648 Object Snap Override : Tangent ^P'_.osmode 256 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1649 Object Snap Override : Extension ^P'_.osmode 4096 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1650 OverrideCommand1 ``
MM_1651 OverrideCommand2 ``
MM_1652 OverrideCommand3 ``
MM_1653 OverrideCommand4 ``
MM_1654 OverrideCommand5 ``
MM_1655 OverrideCommand6 ``
MM_1656 OverrideCommand7 ``
MM_1657 OverrideCommand8 ``
MM_1658 OverrideCommand9 ``
MM_1660 OverrideCommand10 ``
MM_1661 OverrideCommand11 ``
MM_1662 OverrideCommand12 ``
MM_1663 OverrideCommand13 ``
MM_1664 OverrideCommand14 ``
MM_1665 OverrideCommand15 ``
MM_1666 OverrideCommand16 ``
MM_1667 OverrideCommand17 ``
MM_1668 OverrideCommand18 ``
MM_1669 OverrideCommand19 ``
MM_1670 OverrideCommand20 ``
MM_1671 OverrideCommand21 ``
MM_1672 OverrideCommand22 ``
MM_1673 OverrideCommand23 ``
MM_1674 OverrideCommand24 ``
MM_1675 OverrideCommand25 ``
MM_1676 OverrideCommand26 ``
MM_1677 OverrideCommand27 ``
MM_1679 OverrideCommand29 ``
MM_1680 OverrideCommand30 ``
MM_1681 OverrideCommand31 ``
MM_1682 OverrideCommand32 ``
MM_1683 OverrideCommand33 ``
MM_1684 OverrideCommand34 ``
MM_1558 Customize, Import Customizations... Imports customized settings from an enterprise or partial CUI file to the main CUI file ^C^C_cuiimport;
MM_1559 Customize, Export Customizations... Exports customized settings from the main CUI file to an enterprise or partial CUI file ^C^C_cuiexport;
MM_1561 Delete\tDel Removes objects from a drawing ^C^C_erase;
MM_1562 Pan Moves the view in the current viewport '_pan
MM_1563 Zoom Increases or decreases the apparent size of objects in the current viewport '_zoom ;
MM_1564 My Workspace Sets the current workspace to My Workspace ^C^C_wscurrent . ;
ID_LockAll Lock, All, Locked Locks all toolbars and windows '_lockui 15
ID_UnlockAll Lock, All, Unlocked Unlocks all toolbars and windows '_lockui 0
MM_1565 Block Editor Opens the block definition in the Block Editor ^C^C_-bedit
ID_CopySelect Copy Selection Duplicates objects $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_copy,^C^C_copy)
MM_1569 Workspaces, Save Current As... Saves the current workspace ^C^C_WSSAVE;
MM_1570 Customize... Displays the Customize User Interface dialog ^C^C_CUI;
ID_WorkspaceLabelToggle Display Workspace Label Determines whether workspace label is displayed for the workspace switch in the status bar '_setvar;WORKSPACELABEL;$M=$(-,1,$(getvar,WORKSPACELABEL))
ID_SPACETRANS Convert PS to MS Converts distances or heights between model space and paper space ^C^C_spacetrans
MM_1571 Clip existing viewport Clips viewport objects ^C^C_vpclip
MM_1572 Pan Realtime Moves the view planar to the screen '_pan
MM_1573 Zoom Realtime Zooms to increase or decrease the apparent size of objects in the current viewport '_zoom ;
MM_1574 Zoom Window Zooms to increase or decrease the apparent size of objects in the current viewport '_zoom _w
MM_1575 Zoom Dynamic Zooms to display the generated portion of the drawing $M=$(if,$(eq,$(getvar,perspective),0),'_zoom _d,'_zoom;)
MM_1576 Zoom Scale Zooms the display using a specified scale factor $M=$(if,$(eq,$(getvar,perspective),0),'_zoom _s,'_zoom;)
MM_1577 Zoom Center Zooms to display a view specified by a center point and magnification or height $M=$(if,$(eq,$(getvar,perspective),0),'_zoom _c,'_zoom;)
MM_1578 Zoom Object Zooms to display an area specified by the extents of an object $M=$(if,$(eq,$(getvar,perspective),0),'_zoom _o,'_zoom;)
MM_1579 Zoom In Zooms to increase the apparent size of objects $M=$(if,$(eq,$(getvar,perspective),0),'_zoom 2x,'_zoom;)
MM_1580 Zoom Out Zooms to decrease the apparent size of objects $M=$(if,$(eq,$(getvar,perspective),0),'_zoom .5x,'_zoom;)
MM_1582 Zoom Extents Zooms to display the drawing extents '_zoom _e
MM_1583 Hatch Edit... Modifies an existing hatch object ^C^C_hatchedit
MM_1584 Edit Hatch Modifies an existing hatch object ^C^C_hatchedit
MM_1585 Edit Polyline Edits polylines and 3D polygon meshes ^C^C_pedit
MM_1586 Edit Spline Edits a spline or spline-fit polyline ^C^C^R_splinedit
MM_1587 Edit Attribute... Edits attributes in a block reference ^C^C_eattedit
MM_1588 Make Block Creates a block definition from selected objects ^C^C_block
MM_1589 Block Description... Creates a block definition from selected objects ^C^C_block
MM_1607 Arc Creates an arc using three points ^C^C_arc
MM_1608 Circle Creates a circle using a center point and a radius ^C^C_circle
MM_1609 Ellipse Creates an ellipse or an elliptical arc ^C^C_ellipse
MM_1610 Ellipse Arc Creates an elliptical arc ^C^C_ellipse _a
MM_1612 Locate Point Displays the coordinate values of a location '_id
MM_1613 Layer Properties Manager Manages layers and layer properties $M=$(if,$(and,$(>,$(getvar,LayerManagerState),0)),^C^C'_LayerClose,^C^C'_Layer)
ID_DimstyleA Dimension, Update Updates dimension objects with the current dimension style ^C^C_-dimstyle _apply
MM_1614 Insert Block Inserts a block or a drawing into the current drawing ^C^C_insert
MM_1685 Viewport Clip Clips viewport objects ^C^C_vpclip
ID_Block_DoubleClick Block - Double Click Opens the block definition in the Block Editor $M=$(if,$(and,$(>,$(getvar,blockeditlock),0)),^C^C_properties,^C^C_bedit)
ID_DynBlock_DoubleClick Dynamic Block - Double Click Opens the block definition in the Block Editor $M=$(if,$(and,$(>,$(getvar,blockeditlock),0)),^C^C_properties,^C^C_bedit)
ID_LAYMCH Layer, Layer Match Changes the layer of a selected object to match the destination layer ^C^C_laymch
ID_LAYCUR Layer, Change to Current Layer Changes the layer property of selected objects to the current layer ^C^C_laycur
ID_LAYISO Layer, Layer Isolate Hides or locks all layers except those of the selected objects ^C^C_layiso
ID_COPYTO Layer, Copy Objects to New Layer Copies one or more objects to another layer ^C^C_copytolayer
ID_LAYWLK Layer, Layer Walk... Displays objects on selected layers and hides objects on all other layers ^C^C_.laywalk
ID_LAYFRZ Layer, Layer Freeze Freezes the layer of selected objects ^C^C_layfrz
ID_LAYOFF Layer, Layer Off Turns off the layer of a selected object ^C^C_layoff
ID_LAYLCK Layer, Layer Lock Locks the layer of a selected object ^C^C_laylck
ID_LAYULK Layer, Layer Unlock Unlocks the layer of a selected object ^C^C_layulk
ID_LAYVPI Layer, VP Freeze in All Viewports except Current Freezes selected layers in all layout viewports except the current viewport ^C^C_layvpi
ID_LAYON Layer, Turn All Layers On Turns on all layers in the drawing ^C^C_layon
ID_LAYTHW Layer, Thaw All Layers Thaws all layers in the drawing ^C^C_laythw
ID_LAYMRG Layer, Layer Merge Merges selected layers into a target layer, removing the previous layers from the drawing ^C^C_laymrg
ID_LAYDEL Layer, Layer Delete Deletes all objects on a layer and purges the layer ^C^C_laydel
ID_CHSPAC Change Space Moves objects between model space and paper space ^C^C_chspace
ID_Pyramid Pyramid Creates a 3D solid pyramid ^C^C_pyramid
ID_Loft Loft Creates a 3D solid or surface in the space between several cross sections ^C^C^R_loft _MO _SO;
ID_Loft2 Loft Creates a 3D solid or surface in the space between several cross sections ^C^C^R_loft;
ID_Sweep Sweep Creates a 3D solid or surface by sweeping a 2D or 3D curve along a path ^C^C^R_sweep _MO _SO;
ID_Sweep2 Sweep Creates a 3D solid or surface by sweeping a 2D or 3D curve along a path ^C^C^R_sweep;
MM_1688 Command1 ^P'_.ucsdetect $M=$(if,$(and,$(getvar,ucsdetect),1),$(-,$(getvar,ucsdetect),1),$(+,$(getvar,ucsdetect),1))
MM_1689 Command2 ``
MM_1690 Command3 ^P'_.ucsdetect $M=$(if,$(and,$(getvar,ucsdetect),1),$(-,$(getvar,ucsdetect),1),$(+,$(getvar,ucsdetect),1))
MM_1691 Command4 ``
ID_AniPath Animation Motion Path Saves an animation file of a camera moving or panning in a 3D model ^C^C_anipath
MM_1694 Command5 ^P'_.ucsdetect $M=$(if,$(and,$(getvar,ucsdetect),1),$(-,$(getvar,ucsdetect),1),$(+,$(getvar,ucsdetect),1))
MM_1695 Command6 ``
ID_CAMERAS_OnOf Camera Display Shows or hides the camera objects in the drawing $M=$(if,$(and,$(getvar,cameradisplay),1),^C^C_cameradisplay 0,^C^C_cameradisplay 1)
ID_ViewPrevious Previous View Zooms to display the previous view. You can restore up to 10 previous views '_zoom _p
ID_3DWalk 3D Walk Changes the 3D view in a drawing interactively to create the appearance of walking through the model ^C^C_3dwalk
ID_Animation_Record Start Recording Animation ``
ID_Animation_Play Play Animation ``
ID_Animation_Pause Pause Recording Animation ``
ID_Animation_Save Save Animation ``
ID_Animation_Settings Animation Settings ``
ID_3DWalk_Settings 3D Walk and Fly Settings Controls the walk and fly navigation settings ^C^C_walkflysettings
ID_PointLight Light, New Point Light Creates a point light that radiates light in all directions from its location ^C^C_pointlight
ID_SpotLight Light, New Spotlight Creates a spotlight that emits a directional cone of light ^C^C_spotlight
ID_DistantLight Light, New Distant Light Creates a distant light ^C^C_distantlight
ID_LightList Lights in Model Turns on and off the Lights in Model palette that lists all lights in the model $M=$(if,$(and,$(>,$(getvar,lightliststate),0)),^C^C_lightlistclose,^C^C_lightlist)
ID_GeoLocation_Map Geographic Location from Map Assigns geographic location using maps from an online web service $M=$(if,$(or,$(eq,$(getvar,"cvport"),1),$(eq,$(getvar,"blockeditor"),1)),^C^C_geographiclocation,^C^C_geographiclocation _m)
ID_GeoLocation_Edit_From_Map Geographic Location from Map Changes geographic location using maps from an online web service $M=$(if,$(or,$(eq,$(getvar,"cvport"),1),$(eq,$(getvar,"blockeditor"),1)),^C^C_geographiclocation,^C^C_geographiclocation _m)
ID_GeoLocation_File Geographic Location from File Assigns geographic location by importing coordinates from a GIS file $M=$(if,$(or,$(eq,$(getvar,"cvport"),1),$(eq,$(getvar,"blockeditor"),1)),^C^C_geographiclocation,^C^C_geographiclocation _f)
ID_GeoLocation_Edit_From_File Geographic Location from File Changes geographic location by importing coordinates from a GIS file $M=$(if,$(or,$(eq,$(getvar,"cvport"),1),$(eq,$(getvar,"blockeditor"),1)),^C^C_geographiclocation,^C^C_geographiclocation _f)
ID_GeoReorientMarker Reorient Marker Changes the location and north direction property of the geographic marker, which identifies the latitude and longitude coordinates ^C^C_GEOREORIENTMARKER
ID_GeoRemove Remove Location Removes all geographic location information from a drawing file ^C^C_GEOREMOVE
ID_GeoMap Map Type Selects the map type ^C^C_GEOMAP
ID_GeoLocateMe Locate Me Shows your current position in the drawing relative to the location as set. ^C^C_GEOLOCATEME
ID_GeoLocation_MarkLocation Place a Marker Places a position marker in the current drawing. ^C^C_geomarkposition
ID_GeoLocation_MarkLocation_CurrentLocation My Location Places a position marker corresponding to your current location ^C^C_geomarkme
ID_GeoLocation_MarkLocation_PickPoint Point Places a position marker at a specified point ^C^C_geomarkpoint
ID_GeoLocation_MarkLocation_SpecifyLatLong Lat-Long Places a position marker for a location defined by latitude and longitude coordinates ^C^C_geomarklatlong
ID_GeoMapImage Geo Map Image Creates an image object from the background map based on the extents of the current viewport ^C^C_geomapimage
ID_GeoMapImageUpdate Geo Map Image Update Updates image with latest map imagery and optimizes resolution ^C^C_geomapimageupdate
ID_SunProperties Sun Properties Displays the Sun Properties window $M=$(if,$(and,$(>,$(getvar,sunpropertiesstate),0)),^C^C_sunpropertiesclose,^C^C_sunproperties)
ID_SunStatus Sun Status Turns on and off the lighting effects of the sun in the current viewport ^C^C
ID_Skylight_Off Lights, Sky Off Turns off a visual representation and the lighting effects of the sky in the current viewport ``
ID_Skylight_Background Lights, Sky Background Turns on a visual representation of the sky in the current viewport ``
ID_Skylight_Illumination Lights, Sky Background and Illumination Turns on the lighting effects of the sky in the current viewport ``
ID_DefaultLighting Default Lighting Turns on and off default lighting in place of other lighting ^C^C
ID_LightGlyphsShow Light Glyphs Turns on and off the display of light glyphs $M=$(if,$(and,$(getvar,lightglyphdisplay),1),^C^C_lightglyphdisplay 0,^C^C_lightglyphdisplay 1)
ID_ShadowDrag Shadow Drag ^C^C_shadowdrag
ID_PlanarMapping Material Map, Planar Mapping Projects an image onto a flat surface $M=$(if,$(eq,$(getvar,cvport),1),^C^C_MaterialMap,^C^C_MaterialMap _P)
ID_BoxMapping Material Map, Box Mapping Projects an image onto the faces of a boxlike solid $M=$(if,$(eq,$(getvar,cvport),1),^C^C_MaterialMap,^C^C_MaterialMap _B)
ID_CylindricalMapping Material Map, Cylindrical Mapping Wraps an image onto a cylindrical object $M=$(if,$(eq,$(getvar,cvport),1),^C^C_MaterialMap,^C^C_MaterialMap _C)
ID_SphericalMapping Material Map, Spherical Mapping Wraps an image onto a spherical object $M=$(if,$(eq,$(getvar,cvport),1),^C^C_MaterialMap,^C^C_MaterialMap _S)
ID_Multiple_Vports Multiple viewports $M=$(if,$(eq,$(getvar,tilemode),1),^C^C_-vports;_m,^P_ai_emptyprinc^P)
ID_Single_Vport Single viewport $M=$(if,$(eq,$(getvar,tilemode),1),^C^C_-vports _si,^P_ai_emptyprinc^P)
ID_Free_Orbit 3D Free Orbit Rotates the view in 3D space without constraining roll '_3DFOrbit
ID_XPARENT_Orbit Transparent Orbit ^P'_3DORBITTRANSPARENT ^P
ID_XPARENT_WALK Transparent Walk ^P'_3DWALKTRANSPARENT ^P
ID_XPARENT_SWIVEL Transparent Swivel ^P'_3DSWIVELTRANSPARENT ^P
ID_Perspective_Projection Perspective Projection Changes the current viewport display to a perspective view $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_perspective,$(if,$(eq,$(getvar,perspective),0),^C^C_perspective 1,^P_ai_emptyprinc^P))
ID_Parallel_Projection Parallel Projection Changes the current viewport display to a parallel view $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_perspective,$(if,$(eq,$(getvar,perspective),1),^C^C_perspective 0,^P_ai_emptyprinc^P))
ID_3DFLY 3D Fly Changes the 3D view in a drawing interactively to create the appearance of flying around the model ^C^C_3DFly
MM_1696 3DDWF Launches 3D DWF Publish Interface ^C^C_3DDWF
MM_1697 DWF Underlay... Inserts a reference to a DWF or DWFx file as an underlay ^C^C_dwfattach
MM_1700 DWF Clip... Clips the display of a selected DWF or DWFx underlay to a specified boundary ^C^C_dwfclip
MM_1701 DWF Object Snap Enable snapping to objects in DWF underlay $M=$(if,$(and,$(getvar,dwfosnap),1),^C^C_dwfosnap 0,^C^C_dwfosnap 1)
ID_SubObjectAll Subobject Selection, No Filter Turns off all subobject filters with CTRL+click (setvar "SubObjSelectionMode" 0)
ID_SubObjectVertex Subobject Selection, Vertex Selects only vertices with CTRL+click (setvar "SubObjSelectionMode" 1)
ID_SubObjectEdge Subobject Selection, Edge Selects only edges with CTRL+click (setvar "SubObjSelectionMode" 2)
ID_SubObjectFace Subobject Selection, Face Selects only faces with CTRL+click (setvar "SubObjSelectionMode" 3)
ID_SubObjectSolidHistory Solid History Selects only history subobjects with CTRL+click (setvar "SubObjSelectionMode" 4)
ID_SubObjectAll2 Subobject Selection, No Filter Turns off all subobject filters with CTRL+click '_setvar;SubObjSelectionMode;0
ID_SubObjectVertex2 Subobject Selection, Vertex Selects only vertices with CTRL+click '_setvar;SubObjSelectionMode;1
ID_SubObjectEdge2 Subobject Selection, Edge Selects only edges with CTRL+click '_setvar;SubObjSelectionMode;2
ID_SubObjectFace2 Subobject Selection, Face Selects only faces with CTRL+click '_setvar;SubObjSelectionMode;3
ID_SubObjectSolidHistory2 Solid History Selects only history subobjects with CTRL+click '_setvar;SubObjSelectionMode;4
ID_DEFAULTGIZMO_MOVE Move Sets the 3D Move gizmo as the default '_DEFAULTGIZMO 0
ID_DEFAULTGIZMO_ROTATE Rotate Sets the 3D Rotate gizmo as the default '_DEFAULTGIZMO 1
ID_DEFAULTGIZMO_SCALE Scale Sets the 3D Scale gizmo as the default '_DEFAULTGIZMO 2
ID_DEFAULTGIZMO_NO No Gizmo No gizmo as the default '_DEFAULTGIZMO 3
ID_Helix Helix Creates a 2D spiral or 3D spring ^C^C_Helix
ID_Polysolid Polysolid Creates a 3D wall-like polysolid ^C^C_Polysolid
ID_Planesurf Planar Surface Creates a planar surface ^C^C_Planesurf
ID_Thicken Thicken Converts a surface into a 3D solid with a specified thickness ^C^C_Thicken
ID_CONV2SOLID Convert to Solid Converts an object to a solid ^C^C_convtosolid
ID_Conv2surface Convert to Surface Convert objects to a surface ^C^C_convtosurface
ID_ExtractEdges Extract Edges Creates wireframe geometry from the edges of a 3D solid, surface, mesh, region, or subobject ^C^C_xedges
ID_3DMove 3D Move In a 3D view, displays the 3D Move gizmo to aid in moving 3D objects a specified distance in a specified direction ^C^C_3dmove
ID_3DROTATE 3D Rotate In a 3D view, displays the 3D Rotate gizmo to aid in revolving 3D objects around a base point ^C^C_3drotate
ID_Flatshot Flatshot Creates a 2D representation of all 3D objects based on the current view ^C^C_flatshot
ID_VSSHADOWS_GROUND Visual Styles, Shadows, Ground Turns on the display of ground shadows only in a visual style ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsshadows;,_vsshadows 1;)^Z
MM_1706 External References Shows the external references window ^C^C_externalreferences
MM_1707 SurfU: Opens or closes the External References palette '_surfu
MM_1708 SurfV: Set surface control variable: SURFV '_surfv
MM_1711 Workspace 3D Modeling Sets the current workspace to the 3D Modeling Workspace ^C^C_wscurrent 3D Modeling;
ID_Materials Materials Browser Opens and closes Materials Browser $M=$(if,$(and,$(>,$(getvar,matbrowserstate),0)),^C^C_matbrowserclose,^C^C_matbrowseropen)
ID_VisualStyles Visual Styles Shows or hides the visual styles manager $M=$(if,$(and,$(>,$(getvar,vsstate),0)),^C^C_visualstylesclose,^C^C_visualstyles)
ID_ExtReferences External References Opens or closes the External References palette $M=$(if,$(and,$(>,$(getvar,erstate),0)),^C^C_externalreferencesclose,^C^C_externalreferences)
ID_Ribbon Ribbon Shows or hides the ribbon $M=$(if,$(and,$(>,$(getvar,ribbonstate),0)),^C^C_ribbonclose,^C^C_ribbon)
ID_VSFACEOPACITY Visual Styles, X-ray mode Turns on and off a preset level of transparency for 3D solids and surfaces ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsfaceopacity;,_vsfaceopacity $(-,0,$(getvar,"vsfaceopacity"));)^Z
ID_VSSHADOWS_OFF Visual Styles, Shadows, Off Turns off the display of all shadows in a visual style ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsshadows;,_vsshadows 0;)^Z
ID_VSEDGES_FACET Visual Styles, Edges, Facet edges Displays all edges and facets on 3D solids and surfaces ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsedges;,_vsedges 2;)^Z
ID_VSSHADOWS_FULL Visual Styles, Shadows, Full Turns on the display of full shadows in a visual style ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsshadows;,_vsshadows 2;)^Z
ID_VSFACECOLORMODE_REGU Visual Styles, Face Color Mode, Regular Displays all faces on 3D solids and surfaces using the layer color or applied color and material ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsfacecolormode;,_vsfacecolormode 0;)^Z
ID_VSFACECOLORMODE_MONO Visual Styles, Face Color Mode, Monochrome Displays all faces on 3D solids and surfaces in a default white or other specified color ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsfacecolormode;,_vsfacecolormode 1;)^Z
ID_VSFACECOLORMODE_TINT Visual Styles, Face Color Mode, Tint Tints all faces on 3D solids and surfaces with a single color ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsfacecolormode;,_vsfacecolormode 2;)^Z
ID_VSFACECOLORMODE_DESA Visual Styles, Face Color Mode, Desaturate Softens the color on all faces by reducing color saturation ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsfacecolormode;,_vsfacecolormode 3;)^Z
ID_VSESWMGR Visual Styles, Manager Launches the Visual Styles Manager ^C^C^P_visualstyles ^P
ID_VSPERFDLG Visual Styles, Tuning Dialog Sets options that affect 3D display performance ^C^C^P^R_3dconfig ^P
ID_VSFACESTYLE_NONE Visual Styles, Face Style, None Displays 3D solids and surfaces without color, materials, or shading ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsfacestyle;,_vsfacestyle 0;)^Z
ID_VSFACESTYLE_REAL Visual Styles, Face Style, Realistic Displays 3D solids and surfaces realistically, using the layer color or applied color, material, and shading ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsfacestyle;,_vsfacestyle 1;)^Z
ID_VSFACESTYLE_WARMCOOL Visual Styles, Face Style, Gooch Softening the contrast between lighted areas and shadowed areas ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsfacestyle;,_vsfacestyle 2;)^Z
ID_VSEDGES_NONE Visual Styles, Edges, No edges Displays only silhouette edges on 3D solids and surfaces ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsedges;,_vsedges 0;)^Z
ID_VSEDGES_ISOLINES Visual Styles, Edges, Isolines Displays curved 3D solids and surfaces using an evenly-spaced mesh ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsedges;,_vsedges 1;)^Z
ID_VSLIGHTINGQUALITY_FACET Visual Styles, Facet Lighting Facet lighting ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vslightingquality;,_vslightingquality 0;)^Z
ID_VSLIGHTINGQUALITY_SMOOTH Visual Styles, Smooth Lighting Displays 3D solids and surfaces by computing color gradients between the vertexes on each face ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vslightingquality;,_vslightingquality 1;)^Z
ID_VSOBSCUREDEDGES Visual Styles, Obscured Edges Toggles obscured edges on or off ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsobscurededges;,_vsobscurededges $(-,1,$(getvar,"vsobscurededges"));)^Z
ID_VSINTERSECTIONEDGES Visual Styles, Intersection Edges Toggles intersection edges on or off ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsintersectionedges;,_vsintersectionedges $(-,1,$(getvar,"vsintersectionedges"));)^Z
ID_VSSILHEDGES Visual Styles, Silhouette Edges Controls the display of silhouette edges on 3D solids and surfaces ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vssilhedges;,_vssilhedges $(-,1,$(getvar,"vssilhedges"));)^Z
MM_1719 Modeling, Section Plane Creates a section object that acts as a cutting plane through 3D objects ^C^C_sectionplane
ID_RenderWin Show Render Window... Displays the Render window without starting a rendering operation ^C^C_renderwindow
MM_1720 Toggle Dynamic UCS ^D
MM_1726 Visual Styles, Conceptual Conceptual Visual Style ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _C)
MM_1740 Visual Styles, Shades of Gray Shades of Gray Visual Style ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _G)
MM_1741 Visual Styles, Sketchy Sketchy Visual Style ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _SK)
MM_1742 Visual Styles, X-Ray X-Ray Visual Style ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _X)
MM_1743 Visual Styles, Shaded with Edges Shaded with Edges Visual Style ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _E)
MM_1744 Visual Styles, Shaded Shaded Visual Style ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _S)
MM_1721 Visual Styles, Realistic Realistic Visual Style ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _R)
MM_1722 Visual Styles, Wireframe Wireframe Visual Style ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _W)
MM_1723 Visual Styles, Hidden Hidden Visual Style ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _H)
MM_1724 Visual Style Manager... Manage Visual Styles... ^C^C$M=$(if,$(eq,$(getvar,vsstate),0),_visualstyles,_visualstylesclose)
MM_1725 Visual Styles, 2D Wireframe 2D Wireframe ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _2)
ID_Constrained_Orbit 3D Constrained Orbit Rotates the view in 3D space, but constrained to horizontal and vertical orbit only '_3dorbit
ID_Render_Region Render Region Renders a specified rectangular area, called a crop window, within a viewport ^C^C_rendercrop
ID_Livesection Live Section Toggles the live section state on or off for the section object ^C^C_livesection
ID_Jogsection Modeling, Section Plane Jog Adds a jog to the section object ^C^C_sectionplanejog
ID_Presspull Presspull Presses or pulls bounded areas ^C^C_presspull
MM_LAYUNISO Layer, Layer Unisolate Restores all layers that were hidden or locked with the LAYISO command ^C^C_Layuniso
ID_Align Align Aligns objects with other objects in 2D and 3D ^C^C_align
ID_DWFLAYERS Edit Layers Controls the display of layers in a DWF underlay ^C^C_dwflayers
MM_1727 ATTIPEDIT ^C^C_ATTIPEDIT
MM_1728 DGN Underlay... Inserts a reference to a DGN file as an underlay ^C^C_dgnattach
MM_1729 DGN Clip... Clips the display of a selected DGN underlay to a specified boundary ^C^C_dgnclip
MM_1730 DGN Object Snap Enable snapping to objects in a DGN underlay $M=$(if,$(and,$(getvar,dgnosnap),1),^C^C_dgnosnap 0,^C^C_dgnosnap 1)
ID_IMPORT Import... Imports files of different formats such as PDF and DGN into the current drawing ^C^C_import
MM_1731 Change to ByLayer Changes the property overrides of selected objects to ByLayer ^C^C_setbylayer
MM_1732 Remove Viewport Overrides for All Layers Removes viewport layer property overrides for the selected viewports ^C^C_-vports _layer _yes _p;;
MM_1733 Add Current Scale Adds the current annotation scale to the annotative object ^C^C_AIOBJECTSCALEADD
MM_1900 Add Current Scale Adds the current annotation scale to the selected annotative objects ^C^C_AIOBJECTSCALEADD
MM_1901 Delete Current Scale Removes the current annotation scale from the selected objects ^C^C_AIOBJECTSCALEREMOVE
MM_1734 Delete Current Scale Deletes the current annotation scale from the object ^C^C_AIOBJECTSCALEREMOVE
MM_1735 Add/Delete Scales... Adds or deletes supported scales for annotative objects ^C^C_objectscale
MM_1736 Synchronize Multiple-scale Positions Resets the locations of all alternate scale representations of the selected annotative objects ^C^C_annoreset
ID_Dimspace Dimension, Dimspace Adjusts the spacing between linear dimensions or angular dimensions ^C^C_DIMSPACE
ID_Dimbreak Dimension, Dimbreak Breaks or restores dimension and extension lines where they cross other objects ^C^C_DIMBREAK
ID_Diminspection Dimension, Diminspect Adds or removes inspection information for a selected dimension ^C^C_DIMINSPECT
ID_Dimjoglin Dimension, Dimjogline Adds or removes a jog line on a linear or aligned dimension ^C^C_DIMJOGLINE
ID_LayerStatesMgr Layer States Manager Saves, restores, and manages named layer states ^C^C_LAYERSTATE
ID_RecoverAll Recover drawing and xrefs... Repairs a damaged drawing file along with all attached xrefs ^C^C_recoverall
ID_DataLinkMgr Data Link Manager Displays the Data Link Manager ^C^C_DATALINK
ID_WriteDataLinks Update Data Links Updates linked data from a table in the current drawing to an external data file ^C^C_DATALINKUPDATE _W
ID_UpdateDataLinksAll Update Data Links Updates linked data from an external data file to a table in the current drawing ^C^C_DATALINKUPDATE _U
ID_Mleader Multileader Creates a multileader object ^C^C_mleader
ID_Mleader_Add Add Leader Add a leader line to an existing multileader object ^C^C^P_aimleadereditadd ^P
ID_Mleader_Remove Remove Leader Removes a leader line from an existing multileader object ^C^C^P_aimleadereditremove ^P
ID_Mleader_Align Multileader Align Aligns and spaces selected multileader objects ^C^C_mleaderalign
ID_Mleader_Collect Multileader Collect Organizes selected multileaders that contain blocks into rows or columns, and displays the result with a single leader line ^C^C_mleadercollect
ID_Mleader_Style Multileader Style Manager Creates and modifies multileader styles ^C^C_mleaderstyle
ID_SendFeedback Send Feedback Submit feedback to us through Autodesk.com ^C^C^P_ai_send_feedback ^P
ID_Mleader_Edit Multileader Edit Edit a multileader object ^C^C_MLEADEREDIT
ID_LightingUnitsAmerican Lighting Units, American Turns on American lighting units and photometric lighting ^C^C_lightingunits 1
ID_LightingUnitsSI Lighting Units, SI Turns on international lighting units (SI) and photometric lighting ^C^C_lightingunits 2
ID_VSLIGHTINGQUALITY_SMOOTHEST Visual Styles, Smoothest Lighting Displays 3D solids and surfaces by computing colors for individual pixels ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vslightingquality;,_vslightingquality 2;)^Z
ID_MacroRecord Action Recorder, Record Creates an action macro _ACTRECORD
ID_MacroStop Action Recorder, Stop Stops the recording or playback of an action macro _ACTSTOP
ID_MacroHistory Action Recorder, Macro History ``
MM_1902 Toggles Quick Properties Toggles Quick Properties ^P_.QUICKPROPERTIES
ID_QUICKPROPERTIES Quick Properties Quick Properties ^P_.QUICKPROPERTIES
ID_TOGGLEQPMODE Toggle QPMODE Toggle QPMODE ^P'_.qpmode $M=$(if,$(eq,$(getvar,qpmode),0),1,$(*,$(getvar,qpmode),-1))
MM_Toggle_Selection_Cycling Toggles Selection Cycling Toggles Selection Cycling ^W
MM_1904 Toggle HIDEPALETTES Toggles the palette state. $M=$(if,$(and,$(getvar,ShowPaletteState),1),^C^C_HIDEPALETTES,^C^C_SHOWPALETTES)
ID_SteeringWheel SteeringWheels Displays a wheel that contains a collection of view navigation tools '_navswheel
ID_ShowMotion ShowMotion Show ShowMotion ^C^C_navsmotion
ID_ViewcubeOn ViewCube Display Controls the visibility of the ViewCube ^C^C_navvcube _on
ID_ViewcubePr Viewcube, Settings... Open ViewCube Settings dialog ^C^C_navvcube _s
ID_NavBarOn NavBar Display Set the visibility of NavBar ^C^C_navbar _on
ID_MESH_SMOOTH_MORE Smooth More Increases the level smoothness for mesh objects by one level '_MESHSMOOTHMORE
ID_MESH_SMOOTH_LESS Smooth Less Decreases the level of smoothness for mesh objects by one level '_MESHSMOOTHLESS
ID_MESH_SMOOTH_REFINE Mesh Refine Multiplies the number of faces in selected mesh objects or mesh faces '_MESHREFINE
ID_MESH_SMOOTH_CREASE Add Crease Sharpens selected mesh faces, edges, or vertices ^C^C_MESHCREASE
ID_MESH_SMOOTH_UNCREASE Remove Crease Removes the crease from selected mesh faces, edges, or vertices ^C^C_MESHUNCREASE
ID_MESH_PRIMITIVE_BOX Mesh Box Creates a 3D mesh primitive box ^C^C_MESH _BOX
ID_MESH_PRIMITIVE_SPHERE Mesh Sphere Creates a 3D mesh primitive sphere ^C^C_MESH _SPHERE
ID_MESH_PRIMITIVE_PYRAMID Mesh Pyramid Creates a 3D mesh primitive pyramid ^C^C_MESH _PYRAMID
ID_MESH_PRIMITIVE_CONE Mesh Cone Creates a 3D mesh primitive cone ^C^C_MESH _CONE
ID_MESH_PRIMITIVE_WEDGE Mesh Wedge Creates a 3D mesh primitive wedge ^C^C_MESH _WEDGE
ID_MESH_PRIMITIVE_CYLINDER Mesh Cylinder Creates a 3D mesh primitive cylinder ^C^C_MESH _CYLINDER
ID_MESH_PRIMITIVE_TORUS Mesh Torus Creates a 3D mesh primitive torus ^C^C_MESH _TORUS
ID_MESH_SMOOTH Smooth Object Converts 3D object to mesh object ^C^C_MESHSMOOTH
ID_MESH_SPLIT_FACE Split Mesh Face Splits a mesh face into two faces ^C^C_MESHSPLIT
ID_MESH_EXTRUDE_FACE Extrude Face Extends a mesh face into 3D space ^C^C_MESHEXTRUDE
ID_MESH_MERGE_FACES Merge Face Merges adjacent faces into a single face ^C^C_MESHMERGE
ID_MESH_SPIN_TRIANGE_FACES Spin Triangle Face Spins the adjoining edge of two triangular mesh faces ^C^C_MESHSPIN
ID_MESH_CLOSE_HOLE Close Hole Creates a mesh face that connects open edges ^C^C_MESHCAP
ID_MESH_COLLAPSE_FACE_EDGE Collapse Face or Edge Merges the vertices of selected mesh faces or edges ^C^C_MESHCOLLAPSE
ID_MESH_CONVERT_TO_FACETED_SOLID Convert to Faceted Solid Converts meshes and objects with thickness to faceted 3D solids ^P(setvar "SMOOTHMESHCONVERT" 2);^C^C_.CONVTOSOLID;^P
ID_MESH_CONVERT_TO_FACETED_SURFACE Convert to Faceted Surface Converts meshes and objects with thickness to faceted surfaces ^P(setvar "SMOOTHMESHCONVERT" 2);^C^C_.CONVTOSURFACE;^P
ID_MESH_CONVERT_TO_SMOOTH_SOLID Convert to Smooth Solid Converts meshes and objects with thickness to smooth 3D solids ^P(setvar "SMOOTHMESHCONVERT" 0);^C^C_.CONVTOSOLID;^P
ID_MESH_CONVERT_TO_SMOOTH_SURFACE Convert to Smooth Surface Converts meshes and objects with thickness to smooth surfaces ^P(setvar "SMOOTHMESHCONVERT" 0);^C^C_.CONVTOSURFACE;^P
ID_MESH_SMOOTH_CREASE_LEVEL Default Crease Level Sets the default crease level '_SMOOTHMESHCREASELEV
ID_MESH_PRIMITIVE_OPTIONS Mesh Primitive Options Display the Mesh Primitives Options dialog box ^C^C_MESHPRIMITIVEOPTIONS
ID_MESH_TESSELATION_OPTIONS Mesh Tessellation Options Display the Mesh Tessellation Options dialog box ^C^C_MESHOPTIONS
ID_SURF_LOFT Loft Creates a 3D surface in the space between several cross sections ^C^C^R_loft _mo _su;
ID_SURF_SWEEP Sweep Creates a 3D surface by sweeping a 2D or 3D curve along a path ^C^C^R_sweep _mo _su;
ID_SURF_EXTRUDE Extrude Creates a 3D surface by extruding a 2D or 3D curve ^C^C^R_extrude _mo _su;
ID_SURF_REVOLVE Revolve Creates a 3D surface by sweeping a 2D or 3D curve around an axis ^C^C^R_revolve _mo _su;
ID_SURF_NETWORK Surface Network Creates a 3D surface in the space between several curves in the U and V directions ^C^C_SURFNETWORK
ID_SURF_BLEND Surface Blend Creates a continuous blend surface between two existing surfaces ^C^C_SURFBLEND
ID_SURF_PATCH Surface Patch Creates a new surface or cap to close an open edge of an existing surface ^C^C_SURFPATCH
ID_SURF_OFFSET Surface Offset Creates a parallel surface a specified distance from the original surface ^C^C_SURFOFFSET
ID_SURF_FILLET Surface Fillet Creates a new, rounded surface in the space between existing surfaces ^C^C_SURFFILLET
ID_SURF_TRIM Surface Trim Trims portions of a surface where it meets another surface or type of geometry ^C^C_SURFTRIM
ID_SURF_UNTRIM Surface Untrim Replaces surface areas removed by the SURFTRIM command ^C^C_SURFUNTRIM
ID_SURF_MODELINGMODE Surface Modeling Mode Sets if you create a procedural surface or a NURBS surface $M=$(if,$(and,$(getvar,SURFACEMODELINGMODE),1),^C^C_SURFACEMODELINGMODE 0,^C^C_SURFACEMODELINGMODE 1)
ID_SURF_CONVTONURBS Convert to NURBS Converts a surface, solid, or mesh to a NURBS surface ^C^C_CONVTONURBS
ID_SURF_SCULPT Surface Sculpt Trims and unions surfaces that bound a region to create a watertight solid ^C^C_SURFSCULPT
ID_SURF_EXTEND Surface Extend Lengthens a surface to meet another object ^C^C_SURFEXTEND
ID_SURF_SPLINE_KNOT Spline Knot Draws a spline with fit points ^C^C_^RSPLINE _M _FIT
ID_SURF_SPLINECV Spline Draws a spline with control vertices ^C^C_^RSPLINE _M _CV
ID_SURF_SPLINE_FREEHAND Spline Freehand Draws a freehand spline ^C^C^R_SKETCH _TYPE _SPLINE
ID_SURF_SPLINE_DISPLAY_FIT_POINTS Display Fit Points ^C^C^R_SPLINEDIT _F _X
ID_SURF_SPLINE_DIPSLAY_CONTROL_VERTICES Display Control Vertices ^C^C^R_SPLINEDIT _F _P
ID_SURF_SPLINE_ADD_FIT_POINT Add Fit Point ^C^C^R_SPLINEDIT _F _A
ID_SURF_SPLINE_ADD_FIT_KINK Add Kink ^C^C^R_SPLINEDIT _F _K
ID_SURF_SPLINE_ADD_CV Add Control Vertex ^C^C^R_SPLINEDIT _E _A
ID_SURF_SPLINE_DEL_CV Delete Control Vertex ^C^C^R_SPLINEDIT _E _D
ID_SURF_SPLINE_ELEV_ORDER Elevate Order ^C^C^R_SPLINEDIT _E _E
ID_SURF_SPLINE_CONV_TO_PLINE Convert to Polyline ^C^C^R_SPLINEDIT _P
ID_SURF_SPLINE_JOIN Join ^C^C^R_SPLINEDIT _J
ID_SURF_SPLINE_REVERSE Reverse Direction ^C^C^R_SPLINEDIT _R;;
ID_SURF_SPLINE_CLOSE Reverse Direction ^C^C^R_SPLINEDIT _T;;
ID_SURF_3DEDITBAR Surface CV Edit Bar Adds and edits control vertices on a NURBS surface or spline ^C^C_3DEDITBAR
ID_CV_SHOW Surface CV - Show Displays the control vertices of a NURBS surface or spline ^C^C_CVSHOW
ID_CV_HIDE Surface CV - Hide Hides the control vertices for NURBS surfaces or splines ^C^C_CVHIDE
ID_SURF_CV_REBUILD Surface CV - Rebuilt Allows you to rebuild the control vertices of a NURBS surface or spline ^C^C_CVREBUILD
ID_SURF_CV_ADD Surface CV - Add Adds control vertices to a NURBS surface or spline ^C^C_CVADD
ID_SURF_CV_REMOVE Surface CV - Remove Removes control vertices from a NURBS surface or spline ^C^C_CVREMOVE
ID_SURF_ZEBRA Analysis Zebra Projects parallel lines onto a model to help you analyze surface continuity ^C^C_ANALYSISZEBRA
ID_SURF_ANALYSIS_OPTIONS Analysis Options Displays the Analysis Options dialog box ^C^C_ANALYSISOPTIONS
ID_SURF_DRAFT Analysis Draft Displays a color gradient onto surfaces so that you evaluate if a model has adequate draft between a part and its mold ^C^C_ANALYSISDRAFT
ID_SURF_CURVATURE Analysis Curvature Displays a color gradient onto surface parts so that you can evaluate the high and low areas of curvature ^C^C_ANALYSISCURVATURE
ID_SURF_SURFACEAUTOTRIM Surface Auto Trimming Sets whether surfaces are automatically trimmed when you project geometry ^C^C_SURFACEAUTOTRIM
ID_SURF_PROJECTGEOMETRY_UCS Surface Projection UCS Projects a line or curve onto any type of surface from different angles ^C^C_PROJECTGEOMETRY _PRO _UCS
ID_SURF_PROJECTGEOMETR_VIEW Surface Projection View Projects a line or curve onto any type of surface from different angles ^C^C_PROJECTGEOMETRY _PRO _VIEW
ID_SURF_PROJECTGEOMETR_VECTOR Surface Projection Vector Projects a line or curve onto any type of surface from different angles ^C^C_PROJECTGEOMETRY _PRO _POINTS
ID_SURF_ASSOCIATIVITY Surface Associativity Turns associativity on when creating new surfaces $M=$(if,$(and,$(getvar,SURFACEASSOCIATIVITY),1),^C^C_SURFACEASSOCIATIVITY 0,^C^C_SURFACEASSOCIATIVITY 1)
ID_SOLIDHISTORY Solid History Toggles solid history $M=$(if,$(and,$(getvar,solidhist),1),^C^C_solidhist 0,^C^C_solidhist 1)
ID_FILLET_EDGE Fillet Edge Rounds and fillets the edges of solid objects ^C^C_FILLETEDGE
ID_CHAMFER_EDGE Chamfer Edge Bevels the edges of solid objects ^C^C_CHAMFEREDGE
ID_WEBLIGHT Weblight Web light ^C^C_WEBLIGHT
ID_DGNLAYERS DGN Layers... Controls the display of layers in a DGN underlay ^C^C_dgnlayers
ID_AlignTopLeft Top Left Changes the alignment of text in selected table cells to top left ^R^C^C_EditTableCell _Format _ALignment _TL _Quit
ID_AlignTopCenter Top Center Changes the alignment of text in selected table cells to top center ^R^C^C_EditTableCell _Format _ALignment _TC _Quit
ID_AlignTopRight Top Right Changes the alignment of text in selected table cells to top right ^R^C^C_EditTableCell _Format _ALignment _TR _Quit
ID_AlignMiddleLeft Middle Left Changes the alignment of text in selected table cells to middle left ^R^C^C_EditTableCell _Format _ALignment _ML _Quit
ID_AlignMiddleCenter Middle Center Changes the alignment of text in selected table cells to middle center ^R^C^C_EditTableCell _Format _ALignment _MC _Quit
ID_AlignMiddleRight Middle Right Changes the alignment of text in selected table cells to middle right ^R^C^C_EditTableCell _Format _ALignment _MR _Quit
ID_AlignBottomLeft Bottom Left Changes the alignment of text in selected table cells to bottom left ^R^C^C_EditTableCell _Format _ALignment _BL _Quit
ID_AlignBottomCenter Bottom Center Changes the alignment of text in selected table cells to bottom center ^R^C^C_EditTableCell _Format _ALignment _BC _Quit
ID_AlignBottomRight Bottom Right Changes the alignment of text in selected table cells to bottom right ^R^C^C_EditTableCell _Format _ALignment _BR _Quit
ID_RowInsAbove Insert Above Inserts a row above the selected cell ^R^C^C_EditTableCell _O _AB _Q
ID_RowInsBelow Insert Below Inserts a row below the selected cell ^R^C^C_EditTableCell _O _BE _Q
ID_RowDelete Delete Row(s) Deletes rows in a table ^R^C^C_EditTableCell _O _RO _Q
ID_ColumnInsLeft Insert Left Inserts a column to the left of the selected cell ^R^C^C_EditTableCell _O _LE _Q
ID_ColumnInsRight Insert Right Inserts a column to the right of the selected cell ^R^C^C_EditTableCell _O _RI _Q
ID_ColumnDelete Delete Column(s) Deletes columns in a table ^R^C^C_EditTableCell _O _CO _Q
ID_CellUnmerge Unmerge Cells Separates previously merged table cells ^R^C^C_EditTableCell _O _U _Q
ID_CellMergeAll Merge All Merges all cells in a table ^R^C^C_EditTableCell _Operation _Merge _All _Quit
ID_CellMergeByRow Merge By Row Merges table cells by row ^R^C^C_EditTableCell _Operation _Merge _Horizontal _Quit
ID_CellMergeByColumn Merge By Column Merges table cells by column ^R^C^C_EditTableCell _Operation _Merge _Vertical _Quit
ID_CellMatch Match Cell Applies the properties of a selected table cell to other table cells _matchcell
ID_CellBorder Cell Borders Controls the appearance of the borders of cells ^R^C^C_EditTableCell _O _BO _Q
ID_DatatypeAngle Angle Sets the type of data used in table cells to display angles ^R^C^C_EditTableCell _Content _Datatype _Angle _Quit
ID_DatatypeCurrency Currency Sets the type of data used in table cells to display currency ^R^C^C_EditTableCell _Content _Datatype _CurrencY _Quit
ID_DatatypeDate Date Sets the type of data used in table cells to display dates ^R^C^C_EditTableCell _Content _Datatype _Date _Quit
ID_DatatypeDecimalNumber Decimal Number Sets the type of data used in table cells to display decimal numbers ^R^C^C_EditTableCell _Content _Datatype _DecNumber _Quit
ID_DatatypeGeneral General Sets the type of data used in table cells to display general data ^R^C^C_EditTableCell _Content _Datatype _General _Quit
ID_DatatypePercentage Percentage Sets the type of data used in table cells to display percentages ^R^C^C_EditTableCell _Content _Datatype _Percentage _Quit
ID_DatatypePoint Point Sets the type of data used in table cells to display coordinates ^R^C^C_EditTableCell _Content _Datatype _POint _Quit
ID_DatatypeText Text Sets the type of data used in table cells to display text ^R^C^C_EditTableCell _Content _Datatype _Text _Quit
ID_DatatypeWholeNumber Whole Number Sets the type of data used in table cells to display whole numbers ^R^C^C_EditTableCell _Content _Datatype _WholeNumber _Quit
ID_DatatypeCustom Custom Table Cell Format... Custom Table Cell Format... ^R^C^C_EditTableCell _Content _Datatype _CustoM _Quit
ID_FormulaSum Sum Sums the values in a range of table cells ^R^C^C_EditTableCell _ExecuteOneAction _Operation _insertFOrmula _Sum
ID_FormulaAverage Average Averages the values in a range of table cells ^R^C^C_EditTableCell _ExecuteOneAction _Operation _insertFOrmula _Average
ID_FormulaCount Count Counts the cells in a table column or table row ^R^C^C_EditTableCell _ExecuteOneAction _Operation _insertFOrmula _COunt
ID_FormulaCell Cell Uses a cell from a different table in a formula ^R^C^C_EditTableCell _ExecuteOneAction _Operation _insertFOrmula _CEll
ID_FormulaEquation Equation Inserts the mathematical formula based on an equation ^R^C^C_EditTableCell _ExecuteOneAction _Operation _insertFOrmula _Equation
ID_InsertBlock Insert Block Insert Block ^R^C^C_EditTableCell _O _BL _Q
ID_InsertField Insert Field Inserts a text field into the current table cell ^R^C^C_EditTableCell _O _FI _Q
ID_Unlock Unlocked Unlocks the format or content in table cells for editing ^R^C^C_EditTableCell _Content _Unlock _Back _Format _Unlock _Quit
ID_LockContent Content Locked Locks the content in table cells for editing ^R^C^C_EditTableCell _Content _Lock _Back _Format _Unlock _Quit
ID_LockFormat Format Locked Locks the format in table cells for editing ^R^C^C_EditTableCell _Format _Lock _Back _Content _Unlock _Quit
ID_LockContentAndFormat Content and Format Locked Locks the content and format in table cells for editing ^R^C^C_EditTableCell _Content _Lock _Back _Format _Lock _Quit
ID_ManageCellContents Manage Cell Contents... Controls the order and direction of cell content ^R^C^C_EditTableCell _C _M _Q
ID_CellLink Link Cell... Establishes a link between the data in a table cell with data in a Microsoft Excel file ^R^C^C_EditTableCell _D _N _Q
ID_CellUpdateLink Download from Source Download changes from source file ^R^C^C_EditTableCell _D _U _Q
MM_1905 QVDrawing Launches quick view drawings ^C^C_QVDrawing
MM_1906 QVLayout Launches quick view layouts ^C^C_QVLayout
MM_1909 QVDrawingClose Close quick view drawings ^C^C_QVDrawingClose
MM_1910 QVLayoutClose Close quick view layouts ^C^C_QVLayoutClose
ID_MnToolbars Toolbars This item is designed to be populated dynamically based on the menu groups available. ^C^C
ID_Radius Measure Radius Measures the radius of a circle or arc ^C^C_MEASUREGEOM _radius
ID_Angle Measure Angle Measures the angle ^C^C_MEASUREGEOM _angle
ID_Volume Measure Volume Measures the volume ^C^C_MEASUREGEOM _volume
MM_GeomConstraint_Coincident Geometric Constraint, Coincident Constrains two points to coincide, or a point to lie anywhere on an object or the extension of an object ^C^C_GcCoincident
MM_GeomConstraint_Perpendicular Geometric Constraint, Perpendicular Constrains two lines, or polyline segments to maintain a 90-degree angle to each another ^C^C_GcPerpendicular
MM_GeomConstraint_Parallel Geometric Constraint, Parallel Constrains two lines to maintain the same angle ^C^C_GcParallel
MM_GeomConstraint_Tangent Geometric Constraint, Tangent Constrains two curves to maintain a point of tangency to each other or their extensions ^C^C_GcTangent
MM_GeomConstraint_Horizontal Geometric Constraint, Horizontal Constrains a line or pairs of points to lie parallel to the X-axis of the current UCS ^C^C_GcHorizontal
MM_GeomConstraint_Vertical Geometric Constraint, Vertical Constrains lines or pairs of points to lie parallel to the Y-axis of the current UCS ^C^C_GcVertical
MM_GeomConstraint_Colinear Geometric Constraint, Collinear Constrains two lines to lie on the same infinite line ^C^C_GcCollinear
MM_GeomConstraint_Concentric Geometric Constraint, Concentric Constrains selected circles, arcs, or ellipses to maintain the same center point ^C^C_GcConcentric
MM_Geomconstraint_smooth Geometric Constraint, Smooth Constrains a spline to be contiguous and maintain G2 continuity with another spline, line, arc, or polyline ^C^C_GcSmooth
MM_GeomConstraint_Symmetric Geometric Constraint, Symmetric Constrains two curves or points on objects to maintain symmetry about a selected line ^C^C_GcSymmetric
MM_GeomConstraint_Equal Geometric Constraint, Equal Constrains two lines or polyline segments to maintain equal lengths, or arcs and circles to maintain equal radius values ^C^C_GcEqual
MM_GeomConstraint_Fix Geometric Constraint, Fix Constrains a point or a curve to a fixed location and orientation relative to the World Coordinate System ^C^C_GcFix
MM_DimConstraint_Aligned Dimensional Constraint, Aligned Constrains the distance between two points on an object or between two points on different objects ^C^C_DcAligned
MM_DimConstraint_Horizontal Dimensional Constraint, Horizontal Constrains the X-distance between points on an object, or between two points on different objects ^C^C_DcHorizontal
MM_DimConstraint_Vertical Dimensional Constraint, Vertical Constrains the Y-distance between points on an object, or between two points on different objects ^C^C_DcVertical
MM_DimConstraint_Angular Dimensional Constraint, Angular Constrains the angle between line or polyline segments, the angle swept out by an arc or a polyline arc segment, or the angle between three points on objects ^C^C_DcAngular
MM_DimConstraint_Radius Dimensional Constraint, Radius Constrains the radius of a circle or arc ^C^C_DcRadius
MM_DimConstraint_Diameter Dimensional Constraint, Diameter Constrains the diameter of a circle or arc ^C^C_DcDiameter
MM_Del_Constraint Delete Constraints Removes all constraints from the selected objects ^C^C_DelConstraint
MM_SelectObject Show Geometric Constraints Displays or hides geometric constraints for selected objects ^C^C_ConstraintBar
MM_Show_All Show All Geometric Constraints Displays all geometric constraints in the drawing $M=$(if,$(or,$(eq,$(getvar,refeditname),""),$(eq,$(getvar,VIEWSKETCHMODE),1)),^C^C^Q_ConstraintBar _Showall,^C^C^Q_ConstraintBar)
MM_Hide_All Hide All Geometric Constraints Hides all geometric constraints in the drawing $M=$(if,$(or,$(eq,$(getvar,refeditname),""),$(eq,$(getvar,VIEWSKETCHMODE),1)),^C^C^Q_ConstraintBar _Hideall,^C^C^Q_ConstraintBar)
MM_ConstraintBarSettings Constraint Settings... Controls the display of constraints on constraint bars ^C^C_ConstraintSettings
MM_Parameters Parameters Manager Opens or closes the Parameters Manager $M=$(if,$(and,$(>,$(getvar,ParametersStatus),0)),^C^C_PARAMETERSCLOSE,^C^C_PARAMETERS)
MM_AutoConstrain AutoConstrain Applies multiple geometric constraints to the selected objects ^C^C_AutoConstrain
MM_Parameters_Menu_Macro Parameters Manager Menu Macro Opens or closes the Parameters Manager $M=$(if,$(and,$(>,$(getvar,ParametersStatus),0)),^C^C_PARAMETERSCLOSE,^C^C_PARAMETERS)
MMU_0001 Test Block Opens a window to test the block ^C^C_btestblock
ID_ConstructionGeometry Construction Geometry Converts objects to construction geometry ^C^C_bconstruction
ID_BlockTable Block Table Creates a Block Properties table and grip ^C^C_btable
ID_BlockParameterPoint Block Parameter, Point Adds a point parameter to the block definition ^C^C_bparameter _point
ID_BlockParameterLinear Block Parameter, Linear Adds a linear parameter to the block definition ^C^C_bparameter _linear
ID_BlockParameterPolar Block Parameter, Polar Adds a polar parameter to the block definition ^C^C_bparameter _polar
ID_BlockParameterXY Block Parameter, XY Adds an XY parameter to the block definition ^C^C_bparameter _xy
ID_BlockParameterRotation Block Parameter, Rotation Adds a rotation parameter to the block definition ^C^C_bparameter _rotation
ID_BlockParameterAlignment Block Parameter, Alignment Adds an alignment parameter to the block definition ^C^C_bparameter _alignment
ID_BlockParameterFlip Block Parameter, Flip Adds a flip parameter to the block definition ^C^C_bparameter _flip
ID_BlockParameterVisibility Block Parameter, Visibility Adds a visibility parameter to the block definition ^C^C_bparameter _visibility
ID_BlockParameterLookup Block Parameter, Lookup Adds a lookup parameter to the block definition ^C^C_bparameter _lookup
ID_BlockActionMove Block Action, Move Adds a move action to the block definition ^C^C_Bactiontool _move
ID_BlockActionStretch Block Action, Stretch Adds a stretch action to the block definition ^C^C_bactiontool _stretch
ID_BlockActionPolarStretch Block Action, Polar Stretch Adds a polar stretch action to the block definition ^C^C_bactiontool _polar
ID_BlockActionScale Block Action, Scale Adds a scale action to the block definition ^C^C_bactiontool _scale
ID_BlockActionRotate Block Action, Rotate Adds a rotate action to the block definition ^C^C_bactiontool _rotate
ID_BlockActionFlip Block Action, Flip Adds a flip action to the block definition ^C^C_bactiontool _flip
ID_BlockActionArray Block Action, Array Adds an array action to the block definition ^C^C_bactiontool _array
ID_BlockActionLookup Block Action, Lookup Adds a lookup action to the block definition ^C^C_bactiontool _lookup
ID_BlockParameterBasepoint Block Parameter, Basepoint Adds a base point parameter to the block definition ^C^C_bparameter _base
MMU_0022 Block Constraint Parameter, Aligned Constrains the length of a line, or the distance between two lines, a point on an object and a line, or two points on different objects ^C^C_bcparameter _aligned
MMU_0023 Block Constraint Parameter, Horizontal Constrains the X distance of a line or between two points on different objects ^C^C_bcparameter _horizontal
MMU_0024 Block Constraint Parameter, Vertical Constrains the Y distance of a line or between two points on different objects ^C^C_bcparameter _vertical
MMU_0025 Block Constraint Parameter, Angular Constrains the angle between two lines or polyline segments ^C^C_bcparameter _angular
MMU_0026 Block Constraint Parameter, Radius Constrains the radius of a circle or an arc ^C^C_bcparameter _radius
ID_ShowAllActions Show All Actions Displays action bars for selected parameter objects ^C^C_bactionbar _showall
ID_HideAllActions Hide All Actions Hides action bars for selected parameter objects ^C^C_bactionbar _hideall
MMU_0029 Block Constraint Parameter, Diameter Constrains the diameter of a circle or an arc ^C^C_bcparameter _diameter
MMU_0030 Block Constraint Parameter, Linear Creates a horizontal or vertical constraint and custom property ^C^C_bcparameter _linear
MMU_0031 Dimensional Constraint, Linear Constrains the horizontal or vertical distance between points ^C^C_DcLinear
MM_1911 Pick Points ^C^C_.-HATCHEDIT _AD
MM_1912 Select Objects ^C^C_.-HATCHEDIT _AD _S
MM_1913 Remove boundary ^C^C_.-HATCHEDIT _R
MM_1914 Recreate ^C^C_HATCHEDIT _B
MM_1915 Separate Hatches ^C^C_HATCHEDIT _H
MM_1916 Collect Vertical ^C^C_mleadercollect _v
MM_1917 Collect Horizontal ^C^C_mleadercollect _h
MM_1918 Wrap ^C^C_mleadercollect _w
MM_1919 Multileader Align Distributed ^C^C_mleaderalign _O _D
MM_1920 Multileader Align Parallel ^C^C_mleaderalign _O _P
MM_1921 Multileader Align Set Spacing ^C^C_mleaderalign _O _S
MM_1922 Multileader Edit Remove Edit a multileader object ^C^C_MLEADEREDIT _R
ID_SendTo3DPrintService Publish, Send to 3D Print Service Sends solid objects and watertight meshes to a 3D print service ^C^C_3dprintservice
ID_SECTIONPLANETOBLOCK Generate Section Block Opens the Generate Section/Elevation dialog box ^C^C_SECTIONPLANETOBLOCK
ID_SECTIONPLANESETTINGS Section Plane Settings Set display options for the selected section plane. ^C^C_SECTIONPLANESETTINGS
ID_SECTIONSPINNERS Section Spinner Increment Sets the distance increment for section offset and slice thickness spinner controls in the ribbon ^C^C_SECTIONSPINNERS
ID_DWFNewClippingBoundary DWF, New Clipping Boundary Allows you to delete the old clipping boundary and create a new one ^C^C_dwfclip _N
ID_MiniTourBuildingWheel Steering Wheel, Mini Tour Building wheel Provides access to specialized navigation tools which are used to walk through or around a model with the mouse cursor-size wheel. The wheel is optimized for experienced 3D users ^C^C_navswheelmode 5 '_navswheel
ID_MiniViewObjectWheel Steering Wheel, Mini View Object wheel Provides access to specialized navigation tools which are used to view objects in a model with the mouse cursor-size wheel. The wheel is optimized for experienced 3D users ^C^C_navswheelmode 4 '_navswheel
ID_2DNavigationWheel Steering Wheel, 2D Navigation wheel Provides access to the basic 2D navigation tools Pan, Zoom, and Rewind. The wheel is particularly useful when a system does not have a mouse with a scroll wheel attached to it ^C^C_navswheelmode 3 '_navswheel
ID_BigTourBuildingWheel Steering Wheel, Big Tour Building wheel Provides rapid switching between 3D navigation tools which are used to walk through or around a model. The wheel is optimized for new 3D users ^C^C_navswheelmode 1 '_navswheel
ID_BigFullNavigationWheel Steering Wheel, Big Full Navigation wheel Provides access to the general and specialized navigation tools. The wheel is optimized for experienced 3D users ^C^C_navswheelmode 2 '_navswheel
ID_MiniFullNavigationWheel Steering Wheel, Mini Full Navigation wheel Provides access to the general navigation tools Zoom, Orbit, Pan, and Rewind, and specialized navigation tools Center, Up/Down, Walk, and Look with the mouse cursor-size wheel. The wheel is optimized for experienced 3D users ^C^C_navswheelmode 6 '_navswheel
ID_BigViewObjectWheel Steering Wheel, Big View Object wheel Provides rapid switching between 3D navigation tools which are used to view objects in a model. The wheel is optimized for new 3D users ^C^C_navswheelmode 0 '_navswheel
ID_UCSSettings UCS, UCS Settings Manages defined user coordinate systems ^C^C_+UCSMAN 2
ID_PlotOptionsDialog Plot, Plot Options Dialog ^C^C_+OPTIONS 3
ID_SectionPlaneSettings Section, Section Plane Settings Sets display options for the selected section plane ^C^C_SECTIONPLANESETTINGS
ID_DGNNewClippingBoundary DGN, New Clipping Boundary Allows you to delete the old clipping boundary and create a new one ^C^C_dgnclip _n
ID_DGNDeleteClippingBoundary DGN, Delete Clipping Boundary Deletes the clipping boundary ^C^C_dgnclip _d
MM_1927 Image, New Clip Boundary Allows you to delete the old clipping boundary and create a new one ^C^C_imageclip _N
ID_XREFNewClipBoundary Xref, New Clip Boundary Allows you to delete the old clipping boundary and create a new one ^C^C_xclip _N
ID_XrefDeleteClipBoundary Xref, Delete Clip Boundary Deletes the clipping boundary ^C^C_xclip _D
ID_PDFNewClippingBoundary PDF, New Clipping Boundary Allows you to delete the old clipping boundary and create a new one ^C^C_pdfclip _N
ID_DWFDeleteClipBoundary DWF, Delete Clipping Boundary Deletes the clipping boundary ^C^C_dwfclip _d
ID_ImageDeleteClipBoundary Image, Delete Clip Boundary Deletes the clipping boundary ^C^C_imageclip _D
ID_PDFDeleteClipBoundary PDF, Delete Clipping Boundary Deletes the clipping boundary ^C^C_pdfclip _d
ID_EditConstraintText Edit Constraint Edits the constraint in the In Place Editor ^C^C_textedit
ID_Export_DWF Export to DWF Export to DWF ^C^C_exporteplotformat 1 _exportdwf
ID_Export_PDF Export to PDF Export to PDF ^C^C_exporteplotformat 0 _exportpdf
ID_Export_DWFX Export to DWFx Export to DWFx ^C^C_exporteplotformat 2 _exportdwfx
ID_Publish_Preview Publish Preview Opens the drawing in a preview window ^C^C^Q_exportsettings _Preview
ID_Publish_Options Publish Option Displays the Export to DWF Palette ^C^C^Q_exportsettings _Options
ID_ATTACH Attach Inserts references to external files such as other drawings, raster images, and underlays. ^C^C_attach
ID_CLIP Clip Clip a block, externally referenced file, or viewport to a specified boundary ^C^C_clip
ID_ADJUST Adjust Adjust the fade, contrast, brightness and monochrome settings of an image or underlay (DWF, DWFx, PDF, or DGN) ^C^C_adjust
ID_ULAYERS Ulayers Controls the display of layers in an underlay ^C^C_ulayers
ID_PDFIMPORTCMD PDFIMPORT Imports a PDF file or a specified area of the PDF underlay as AutoCAD objects ^C^C_pdfimport;
ID_INSERT_PDFIMPORT Import PDF file Imports data from a page of a PDF file into the current drawing as AutoCAD objects. ^C^C_pdfimport _file;
ID_INSERT_PDFIMPORT2 Import PDF file Imports data from a page of a PDF file into the current drawing as AutoCAD objects. ^C^C_pdfimport _file;
ID_INSERT_DGNIMPORT Import DGN file Imports data from a DGN file into the current drawing as AutoCAD objects. ^C^C_dgnimport;
ID_INSERT_OTHERIMPORT Import other file formats Imports files of different formats such as PDF and DGN into the current drawing. ^C^C_import;
ID_INSERT_PDFSHXTEXT PDF SHX Recognition Converts imported SHX geometry from PDF files into text objects ^C^C_pdfshxtext
ID_INSERT_PDFSHXTEXT_SETTINGS PDF SHX Recog Settings Specifies the SHX fonts to compare against when converting imported PDF text geometry to text ^C^C_PDFSHXTEXTSETTINGS 1;_pdfshxtext _settings
ID_INSERT_TXT2MTXT Convert Text to Mtext Combines multiple text objects into a single multiline text object ^C^C_txt2mtxt;
ID_FRAME_OFF Frame Off Determines the display status of all frames including Image frames, XClip frames and Underlay frames ^C^C_FRAME 0;
ID_FRAME_ON Frame On Determines the display status of all frames including Image frames, XClip frames and Underlay frames ^C^C_FRAME 1;
ID_FRAME_DISPLAYNOPLOT Frame DispalyNoPlot Determines the display status of all frames including Image frames, XClip frames and Underlay frames ^C^C_FRAME 2;
ID_FRAME_VARIES Frame Varies Determines the display status of all frames including Image frames, XClip frames and Underlay frames ^C^C_FRAME 3;
ID_UOSNAP_OFF UOsnap off Turn Object Snap for all Underlay objects ON/OFF. ^C^C_UOSNAP 0;
ID_UOSNAP_ON UOsnap On Turn Object Snap for all Underlay objects ON/OFF. ^C^C_UOSNAP 1;
ID_UOSNAP_VARIES UOsnap Varies Turn Object Snap for all Underlay objects ON/OFF. ^C^C_UOSNAP 2;
ID_PDFCLIP Pdf Clip... PDFCLIP command - allows the user to specify a clipping boundary for their PDF underlay ^C^C_pdfclip
ID_PDFLAYERS Pdf Layers... Controls the display of layers in a PDF underlay ^C^C_pdflayers
ID_PDFOSNAP Pdf Object Snap... PDFOSNAP command - allows users to toggle on/off the ability to OSNAP to PDF vector geometry. A check mark is placed next to this item only if PDFOSNAP is 1 $M=$(if,$(and,$(getvar,pdfosnap),1),^C^C_pdfosnap 0,^C^C_pdfosnap 1)
ID_PDFATTACH PDF Underlay... Attaches a new PDF to the current drawing ^C^C_pdfattach
ID_INSERT_ATTACH Attach... Attaches a new PDF to the current drawing: Same as ATTACH command. ^C^C_attach
ID_Reverse Reverse Reverses the direction of line, polyline, spline and helix objects ^C^C_reverse
ID_MeshOptions Mesh Options ^C^C_MESHOPTIONS
ID_TestBlockClose Close Test Block Window Exit Test Block Window and Return to the Block Editor ^C^C_CLOSE
MM_CONSTRAINTNAMEFORMAT_1 Value Display value for dimensional constraints ^C^C_constraintnameformat 1
MM_CONSTRAINTNAMEFORMAT_0 Name Display name for dimensional constraints ^C^C_constraintnameformat 0
MM_CONSTRAINTNAMEFORMAT_2 Name and Expression Display name and expression for dimensional constraints ^C^C_constraintnameformat 2
ID_3DSCALE 3D Scale In a 3D view, displays the 3D Scale gizmo to aid in scaling 3D objects ^C^C_3dscale
ID_ConstraintSettingsGeometricTab Constraint Settings, Geometric Opens the Constraint Settings dialog to the Geometric tab. $M=$(if,$(or,$(eq,$(getvar,refeditname),""),$(eq,$(getvar,VIEWSKETCHMODE),1)),^C^C_+CONSTRAINTSETTINGS 0,^C^C_+CONSTRAINTSETTINGS)
ID_ConstraintSettingsDimensionalTab Constraint Settings, Dimensional Opens the Constraint Settings dialog to the Dimension tab. $M=$(if,$(or,$(eq,$(getvar,refeditname),""),$(eq,$(getvar,VIEWSKETCHMODE),1)),^C^C_+CONSTRAINTSETTINGS 1,^C^C_+CONSTRAINTSETTINGS)
ID_DimensionalConstraintConvert Dimensional Constraint, Convert Convert dimensions to dimensional constraints ^C^C_DcConvert
ID_BlockConstraintParameterConvert Block Constraint Parameter, Convert Converts a dimensional constraint into a constraint parameter ^C^C_BCPARAMETER _Convert
ID_BlockEditorSettings Block Editor, Settings Manages Block Editor settings ^C^C_besettings
ID_OptionsDisplayTab Options, Display Tab Opens the Options dialog to the Display tab. ^C^C_+options 1
MM_Show_All_Dyn_Constr Show All Dynamic Constraints Displays all dynamic dimensional constraints in the drawing $M=$(if,$(or,$(eq,$(getvar,refeditname),""),$(eq,$(getvar,VIEWSKETCHMODE),1)),^C^C^Q_dcdisplay _Showall,^C^C^Q_dcdisplay)
MM_Hide_All_Dyn_Constr Hide All Dynamic Constraints Hides all dynamic dimensional constraints in the drawing $M=$(if,$(or,$(eq,$(getvar,refeditname),""),$(eq,$(getvar,VIEWSKETCHMODE),1)),^C^C^Q_dcdisplay _Hideall,^C^C^Q_dcdisplay)
MM_Show_Dyn_Constr Show Dynamic Constraints Displays or hides dynamic dimensional constraints for selected objects ^C^C_dcdisplay
MM_Toggle_Infer_Constr Toggles Infer Constraints ^P'_.CONSTRAINTINFER;$M=$(if,$(eq,$(getvar,CONSTRAINTINFER),0),1,$(if,$(eq,$(getvar,CONSTRAINTINFER),1),0))
ID_HatchToBack Draw Order, Hatch to Back Forces all hatches to be displayed behind all other objects ^C^C_HATCHTOBACK
ID_PEdit_Close Polyline Edit, Close Closes an open polyline ^C^C_pedit _close _exit
ID_Pedit_Join Polyline Edit, Join Joins a polyline with other objects ^C^C_pedit _join
ID_Pedit_Width Polyline Edit, Width ^C^C_pedit _width \_exit
ID_Pedit_Fit Polyline Edit, Fit Fits pairs of arcs through and between the vertices of a polyline ^C^C_pedit _fit _exit
ID_Pedit_Spline Polyline Edit, Spline ^C^C_pedit _spline _exit
ID_Pedit_Decurve Polyline Edit, Decurve Decurves a spline or curve fit polyline ^C^C_pedit _decurve _exit
ID_Pedit_Reverse Polyline Edit, Reverse Reverses the direction of a polyline ^C^C_pedit _reverse _exit
ID_Pedit_Open Polyline Edit, Open Opens a closed polyline ^C^C_pedit _open _exit
ID_Download_OfflineHelp Download Offline Help ^C^C^P_ai_download_offlinehelp ^P
ID_PointCloudAttach Attach Point Cloud Attaches point cloud scan and project files to a drawing. ^C^C_PointCloudAttach
ID_PointCloudDensity Point Cloud Density Sets the density of points that can be displayed for all point clouds in the drawing, based on a percentage of the current limit. ^C^C_PointCloudDensity
ID_PointCloudAutoUpdate Point Cloud Auto Update ^C^C_PointCloudAutoUpdate
ID_PointCloudRTDensity Point Cloud Realtime Density Sets the density of points that are displayed during real-time zooming, panning, or orbiting. ^C^C_PointCloudRTDensity
ID_PointCloud_Colormap Point Cloud Color Map Customizes color schemes and sets ranges for intensity and elevation stylizations of a point cloud; sets colors for classification properties. ^C^C_pointcloudcolormap
ID_PointCloud_Stylization_RGB Point Cloud Color Map Sets color stylization for selected point cloud. ^C^C_pointcloudstylize;$M=$(if,$(eq,$(getvar,cmdactive),1),_rgb;)^Z
ID_PointCloud_Stylization_Object Point Cloud Color Map Sets color stylization for selected point cloud. ^C^C_pointcloudstylize;$M=$(if,$(eq,$(getvar,cmdactive),1),_object;)^Z
ID_PointCloud_Stylization_Intensity Point Cloud Color Map Sets color stylization for selected point cloud. ^C^C_pointcloudstylize;$M=$(if,$(eq,$(getvar,cmdactive),1),_intensity;)^Z
ID_PointCloud_Stylization_Elevation Point Cloud Color Map Sets color stylization for selected point cloud. ^C^C_pointcloudstylize;$M=$(if,$(eq,$(getvar,cmdactive),1),_elevation;)^Z
ID_PointCloud_Stylization_Normal Point Cloud Color Map Sets color stylization for selected point cloud. ^C^C_pointcloudstylize;$M=$(if,$(eq,$(getvar,cmdactive),1),_normal;)^Z
ID_PointCloud_Stylization_Classification Point Cloud Color Map Sets color stylization for selected point cloud. ^C^C_pointcloudstylize;$M=$(if,$(eq,$(getvar,cmdactive),1),_classification;)^Z
ID_Crop_Rectangular Point Cloud Crop Rectangular Specifies a 3D cropping boundary for the point cloud. ^C^C_pointcloudcrop
ID_Crop_Polygonal Point Cloud Crop Polygonal Specifies a 3D cropping boundary for the point cloud. ^C^C_pointcloudcrop _polygon
ID_Crop_Circular Point Cloud Crop Circular Specifies a 3D cropping boundary for the point cloud. ^C^C_pointcloudcrop _circular
ID_PointCloud_Uncrop Point Cloud Uncrop Uncrops point cloud. ^C^C_pointclouduncrop
ID_PointCloud_Uncrop_Last Point Cloud Uncrop Removes last crop boundary from point cloud. ^C^C_pointcloudcrop;$M=$(if,$(eq,$(getvar,cmdactive),1),_remove;)^Z
ID_PointCloud_Crop_Invert Point Cloud Crop Invert Toggles between display of points outside the cropped area of a point cloud and points inside the cropped area. ^C^C_pointcloudcrop;$M=$(if,$(eq,$(getvar,cmdactive),1),_invert;)^Z
ID_PointCloud_Manager PointCloud Manager Opens or closes the Point Cloud Manager to control the visibility of scans and regions. ^C^C_PointCloudManager
ID_PointCloud_Manager_Close PointCloud Manager Close Opens or closes the Point Cloud Manager to control the visibility of scans and regions. ^C^C_PointCloudManagerClose
ID_PointCloud_Manager_Dash PointCloud Manager Dash Opens or closes the Point Cloud Manager to control the visibility of scans and regions. ^C^C_-PointCloudManager
ID_PointCloud_Crop PointCloud Crop Specifies a 3D cropping boundary for the point cloud. ^C^C_PointCloudCrop
ID_PointCloud_UnCrop PointCloud UnCrop Uncrops point cloud. ^C^C_PointCloudCrop
ID_PointCloud_Stylize PointCloud Stylize Sets color stylization for selected point cloud. ^C^C_PointCloudStylize
MM_1928 Close Hatch Creation Exits hatch creation and closes the contextual tab ^M
MM_1929 Set Origin ^C^C_hatchsetorigin
MM_1930 Set Boundary ^C^C_hatchsetboundary
MM_1931 Generate Boundary ^C^C_hatchgenerateboundary
ID_MaterialsEditor Materials Editor Opens and closes Materials Editor $M=$(if,$(and,$(>,$(getvar,mateditorstate),0)),^C^C_mateditorclose,^C^C_mateditoropen)
ID_IsolateObjects Isolate Objects Temporarily hides all objects except the selected objects for the current drawing session. ^C^C_IsolateObjects
ID_HideObjects Hide Objects Temporarily hides selected objects for the current drawing session. ^C^C_HideObjects
ID_UnIsolateObjects End Object Isolation Unhides temporarily hidden objects. ^C^C_UnIsolateObjects
ID_SelSimilar Select Similar Selects all objects similar to the object(s) selected based on the Similar settings. ^C^C_SelectSimilar
ID_AddSelected Add Selected Starts a draw command based on the object type of the selected object. ^C^C_addselected
ID_ACETNCOPY Copy Nested Objects Copies objects nested inside blocks and external references ^C^C_ncopy
MM_1932 Close Hatch Editor Exits the Hatch Editor and closes the contextual tab ^R^C^C_-HATCHEDIT _CA
ID_BLEND_CURVES Blend Curves Creates a tangent or smooth spline between the endpoints of two open curves ^C^C_BLEND
ID_GROUP Group Creates a group of objects ^C^C_group
ID_Ungroup Ungroup Explodes or ungroups a group ^C^C_ungroup
ID_GroupEdit Group Edit Adds or removes objects from a group ^C^C_groupedit
ID_GroupEditAdd Add to Group Adds objects to a group ^C^C_groupedit _add
ID_GroupEditRemove Remove from Group Removes objects from a group ^C^C_groupedit _remove
ID_GroupSelection Group Selection On/Off Turns group selection on and off '_setvar;pickstyle;$M=$(if,$(eq,$(getvar,pickstyle),0),1,$(if,$(eq,$(getvar,pickstyle),1),0,$(if,$(eq,$(getvar,pickstyle),2),3,2)))
ID_ClassicGroup Group Manager Displays group dialog to manage named groups ^C^C_classicgroup
ID_GroupBoundBox Group Bound Box Turns group bounding box on and off ^C^C
ID_EditArray Edit Array Edits associative array objects and their source objects. ^C^C_arrayedit
ID_RectangularArray Rectangular Array Distributes object copies into any combination of rows, columns, and levels. ^C^C_arrayrect
ID_PathArray Path Array Evenly distributes object copies along a path or a portion of a path. ^C^C_arraypath
ID_PolarArray Polar Array Evenly distributes object copies in a circular pattern around a center point or axis of rotation. ^C^C_arraypolar
ID_ArrayColumns Array Columns Specifies the number of columns in the array ^C^C_arrayedit _columns
ID_ArrayReset Array Reset Restores erased items and removes any item overrides. ^C^C_arrayedit _reset
ID_ArrayEditSourceObjectInPlace Array Edit Source Objects In-place Activates an editing state in which you can edit the source objects (or replacement source objects) for a selected item. ^C^C_arrayedit _source
ID_ArrayReplaceItem Array Replace Item Replace item ^C^C_arrayedit _replace
ID_ArrayRows Array Rows Specifies the number of rows in the array ^C^C_arrayedit _rows
ID_ArrayLevels Array Levels Specifies the number of levels in the array ^C^C_arrayedit _levels
ID_ArrayItems Array Items Specifies the number of items arrayed along the path ^C^C_arrayedit _items
ID_ArrayMethodDivide Array Method Divide Redistributes items to divide evenly along the length of the path. ^C^C_arrayedit _method _divide
ID_ArrayMethodMeasure Array Method Measure Maintains current item spacing when the path is edited, or when the number of items is edited through grips or the Properties palette. ^C^C_arrayedit _method _measure
ID_ArrayAngleBetweenItems Array Angle Between Items Specifies angle between items in array ^C^C_arrayedit _angle
ID_ArrayFillAngle Array Fill Angle Specifies fill angle of array; angle between first and last item in array ^C^C_arrayedit _fill
ID_ArrayAlignItems Array Align Items Aligns arrayed items with path ^C^C_arrayedit _align
ID_ArrayRotateItems Array Rotate Items Rotates items as they are arrayed ^C^C_arrayedit _rotate
ID_ArrayBasePoint Array Base Point Specifies the base point of array ^C^C_arrayedit _base
ID_ArrayZDirection Array Z Direction Specifies the Z direction of path array ^C^C_arrayedit _Z
ID_Arrayeditclosesave ArrayEditClose Save Saves changes made to an array's source objects and exits the array editing state. ^C^C_-arrayclose _yes
ID_Arrayeditclosediscard ArrayEditClose Discard Discards changes made to an array's source objects and exits the array editing state. ^C^C_-arrayclose _no
ID_DWGCVRT DWG Convert Converts drawing format version for selected drawing files ^C^C_DWGCONVERT
ID_OVERKILL Delete Duplicate Objects Cleans up overlapping geometry by removing duplicated and/or unneeded objects ^C^C_overkill
ID_ASSOCARRAY_RECT_BASEPOINT Base Point Redefines the base point of the array. ^C^C_arrayedit _b \_x
ID_ASSOCARRAY_POLAR_BASEPOINT Base Point Redefines the base point and location of grips on the array. ^C^C_arrayedit _b \_x
ID_ASSOCARRAY_PATH_BASEPOINT Base Point Redefines the base point. Allows repositioning the first item of the array relative to the start point of the path curve. ^C^C_arrayedit _b \_x
ID_ASSOCARRAY_CREATION_RECT_BASEPOINT Base Point Redefines the base point of the array. _Base
ID_ASSOCARRAY_CREATION_POLAR_BASEPOINT Base Point Redefines the base point and location of grips on the array. _Base
ID_ASSOCARRAY_CREATION_PATH_BASEPOINT Base Point Redefines the base point. Allows repositioning the first item of the array relative to the start point of the path curve. _Base
ID_ASSOCARRAY_CREATION_PATH_TANGENT Tangent
Direction Specifies the orientation of the first item relative to the path curve. Allows specifying two points that are made parallel to the starting direction of the path curve. _T
ID_ASSOCARRAY_RECT_EDITSOURCE Edit Source Activates an editing state in which you can edit the source objects (or replacement source objects) for a selected item. ^C^C_arrayedit _s
ID_ASSOCARRAY_PATH_EDITSOURCE Edit Source Activates an editing state in which you can edit the source objects (or replacement source objects) for a selected item. ^C^C_arrayedit _s
ID_ASSOCARRAY_POLAR_EDITSOURCE Edit Source Activates an editing state in which you can edit the source objects (or replacement source objects) for a selected item. ^C^C_arrayedit _s
ID_ASSOCARRAY_RECT_REPLACEITEM Replace Item Replaces the source objects for selected items or for all items referencing the original source objects. ^C^C_arrayedit _rep
ID_ASSOCARRAY_PATH_REPLACEITEM Replace Item Replaces the source objects for selected items or for all items referencing the original source objects. ^C^C_arrayedit _rep
ID_ASSOCARRAY_POLAR_REPLACEITEM Replace Item Replaces the source objects for selected items or for all items referencing the original source objects. ^C^C_arrayedit _rep
ID_ASSOCARRAY_RECT_RESETARRAY Reset Array Restores erased items and removes any item overrides. ^C^C_arrayedit _res _x
ID_ASSOCARRAY_PATH_RESETARRAY Reset Array Restores erased items and removes any item overrides. ^C^C_arrayedit _res _x
ID_ASSOCARRAY_POLAR_RESETARRAY Reset Array Restores erased items and removes any item overrides. ^C^C_arrayedit _res _x
ID_PathArrayMethodMeasure Array Method Measure Maintains current item spacing when the path is edited, or when the number of items is edited through grips or the Properties palette. ^C^C_arrayedit _method _measure _x
ID_OnlineDesignShare Share Design Views Upload design views to a secure cloud location for viewing and sharing from your browser. ^C^C_OnlineDesignShare
ID_SaveToWebMobile Save to Web and Mobile Save the current drawing to AutoCAD Web and Mobile. ^C^C_SAVETOWEBMOBILE
ID_OpenFromWebMobile Open from Web and Mobile Open an existing drawing from AutoCAD Web and Mobile. ^C^C_OPENFROMWEBMOBILE
ID_ShareView Share View Upload design views to a secure cloud location for viewing and sharing from your browser. ^C^C_ShareView
ID_SharedViews Shared Views Open the Shared Views palette. $M=$(if,$(and,$(>,$(getvar,SHAREDVIEWSTATE),0)),^C^C'_SHAREDVIEWSCLOSE,^C^C'_SHAREDVIEWS)
ID_DWGHISTORY DWG History Open the DWG History palette. $M=$(if,$(and,$(>,$(getvar,DWGHISTORYSTATE),0)),^C^C'_DWGHISTORYCLOSE,^C^C'_DWGHISTORY)
ID_AutoCAD360 AutoCAD 360 Launches AutoCAD web in your default browser. ^C^C_ONLINEAUTOCAD360
MM_1836 Projected View Creates a projected view from an existing Drawing View. ^C^C_viewproj
MM_1837 Update View Updates selected Drawing Views that have become out of date because the source model has changed. ^C^C_viewupdate
MM_1840 Edit View Edits selected Drawing View ^C^C_viewedit
ID_PathArrayMethodDivide Array Method Divide Redistributes items to divide evenly along the length of the path. ^C^C_arrayedit _method _divide _x
ID_LeaderOnly Draw Order, Leaders Only Force Leader objects to be displayed in the front of all other objects. ^C^C^P_texttofront _l ^P
ID_EXTRACTISOLINES Extract Isolines Creates an isoline curve from a surface, solid, or the face of a solid object in the U or V direction ^C^C_SURFEXTRACTCURVE
ID_CloseArrayEditor Close Array Exits array and clears selection ^P_ARRAYEDIT _caNcel
ID_Render_Online Render Online Uploads the current drawing and renders its 3D views with Autodesk Online Rendering Service. ^C^C_renderonline
ID_Show_Render_Gallery Show Render Gallery Opens your online gallery of completed and in-progress renderings in a browser. ^C^C_showrendergallery
ID_TouchMode Select Mode Cancels touch screen operation and returns user to selection state. ^C^C^C
MM_SECTIONVIEW Section View Creates a section view from an existing Drawing View. ^C^C_viewsection
MM_PROJECTEDVIEW Projected View Creates a projected view from an existing Drawing View. ^C^C_viewproj
MM_DETAILVIEW Detail View Creates a detail view from an existing Drawing View. ^C^C_viewdetail
MM_EDITVIEWSKETCH Edit View Sketch Edits the selected drawing view's sketch. ^C^C_viewsymbolsketch
ID_SubObjectViewComponent Drawing View Component Turns on filtering so you can select subobject components within a drawing view. (setvar "SubObjSelectionMode" 5)
MM_190_068EF Restore Viewports Toggle between a single viewport and the last multiple viewport configurations. ^C^C_-vports _T
MM_190_05DBE Viewports, Lock, No Unlocks the scale of viewport objects ^C^C_-vports _Lock _off
MM_190_61B6E Viewports, Lock, Yes Locks the scale of viewport objects ^C^C_-vports _lock _on
ID_ADCClose Closes Design Center Closes Design Center ^C^C_adcclose
ID_AIDimPrec Dimension Precision Change the dimension precision ^C^C_aidimprec
ID_AIObjectScaleAdd Annotation Scale Adds an annotation scale to the selected annotative objects ^C^C_aiobjectscaleadd
ID_Arx Arx Loads, unloads, and provides information about ObjectARX applications ^C^C_arx
ID_AttExt Extract Attribute Extracts attribute data, informational text associated with a block, into a file ^C^C_attext
ID_AutoPublish Publish Drawing Publishes drawings to DWF, DWFx, or PDF files automatically to a specified location ^C^C_autopublish
ID_BmpOut Save to BMP Saves selected objects to a file in device-independent bitmap format ^C^C_bmpout
ID_ClassicLayer Layer Properties Manager Opens the legacy Layer Properties Manager ^C^C_classiclayer
ID_ClassicXref XREF Manages referenced drawing files in the current drawing ^C^C_classicxref
ID_CommandlineHide Hide Command Line Hides the Command Line window ^C^C_commandlinehide
ID_CuiUnload Unload CUI Unloads a CUIx file ^C^C_cuiunload
ID_Delay Delay Provides a timed pause within a script ^C^C_delay
ID_Dim Dim Accesses Dimensioning mode commands ^C^C_dim
ID_DimDisassociate Removes associativity Removes associativity from selected dimensions ^C^C_dimdisassociate
ID_DxfOut Dxfout Saves a copy of the current drawing under a new file name ^C^C_dxfout
ID_Elev Elevation Sets elevation and extrusion thickness of new objects ^C^C_elev
ID_Fill Fill Controls the filling of objects such as hatches, 2D solids, and wide polylines ^C^C_fill
ID_Filter Filter Creates a list of requirements that an object must meet to be included in a selection set ^C^C_filter
ID_LayerClose Close Layer Properties Manager Closes the Layer Properties Manager ^C^C_layerclose
ID_LayerStateSave Save Layer State Save a new layerstate ^C^C_layerstatesave
ID_MaterialAssign Assign Material Uses the current material defined in the CMATERIAL system variable ^C^C_materialassign
ID_MenuUnload Unload Menu Unload acad menu files ^C^C_menuunload
ID_Model Model Switches from a named (paper space) layout to the Model layout ^C^C_model
ID_MSlide MSlide Creates a slide file of the current model viewport or the current layout ^C^C_mslide
ID_Multiple Multiple Repeats the next command until canceled ^C^C_multiple
ID_MVSetup MVSetup Sets up the specifications of a drawing ^C^C_mvsetup
ID_Netload Netload Loads a .NET application ^C^C_netload
ID_OLEOpen Open OLE Open OLE object in its associated application ^C^C_oleopen
ID_PlotStamp Open OLE Places a plot stamp on a specified corner of each drawing and logs it to a file ^C^C_plotstamp
ID_PNGOut Export as PNG Export as a png file ^C^C_pngout
ID_PropertiesClose Close Properties Palette Closes the Properties palette ^C^C_propertiesclose
ID_PSetupIn Import setup Imports a user-defined page setup into a new drawing layout ^C^C_psetupin
ID_PSpace Paper Space In a layout, switches from model space in a viewport to paper space ^C^C_pspace
ID_QCClose Close Quick Calculator Closes the QuickCalc calculator ^C^C_qcclose
ID_Redefine Redefine Restores AutoCAD internal commands overridden by UNDEFINE ^C^C_redefine
ID_RegenAuto Regeneration Controls automatic regeneration of a drawing ^C^C_regenauto
ID_RibbonClose Close Ribbon Closes the ribbon window ^C^C_ribbonclose
ID_Tablet TABLET Calibrates, configures, and turns on and off an attached digitizing tablet ^C^C_tablet
ID_TableEdit Edit Table Edits text in a table cell ^C^C_tabledit
ID_Taskbar Taskbar Controls whether multiple open drawings are displayed separately or grouped on the Windows taskbar ^C^C_taskbar
ID_ToolPalettesClose Close Tool Palettes Closes the Tool Palettes window ^C^C_toolpalettesclose
ID_Undefine Undefine Command Allows an application-defined command to override an internal command ^C^C_undefine
ID_ViewRes Viewport Resolution Sets the resolution for objects in the current viewport ^C^C_viewres
ID_VPLayer Viewport Layer Sets layer visibility within viewports ^C^C_vplayer
ID_VSCurrent Current Visual Style Sets the visual style in the current viewport ^C^C_vscurrent
ID_VSlide Display Image Slide Displays an image slide file in the current viewport ^C^C_vslide
ID_WMFOut Save as WMF Saves objects to a Windows metafile ^C^C_wmfout
ID_Xplode Xplode Breaks a compound object into its component objects ^C^C_xplode
ID_Menu_MenuLoad Load Menu Load acad menu files ^C^C_menuload
MM_EditSynmonymList Customize, Edit Synonym List Edit Synonym List ^C^C^P_ai_editcustfile $M=$(getvar,program)SynonymsGlobalDB.pgp;^P
MM_EditAutoCorrectList Customize, Edit AutoCorrect List Edit AutoCorrect List ^C^C^P_ai_editcustfile $M=AutoCorrectUserDB.pgp;^P
MM_200_0A027 Geo Map Image Aerial ^C^C
MM_200_2354D Geo Map Image Road ^C^C
MM_200_68883 Geo Map Image Hybrid ^C^C
MM_200_7731A Geo Map Image Very Fine ^C^C
MM_200_81479 Geo Map Image Fine ^C^C
MM_200_FCEBB Geo Map Image Optimal ^C^C
MM_200_D3049 Geo Map Image Coarse ^C^C
ID_TextAlign Text Align Aligns and spaces selected text objects ^C^C_textalign
ID_HELP_DA Desktop Analytics... Displays the Desktop Analytics dialog ^C^C_DESKTOPANALYTICS
MM_201_7A2D1 section plane back Creates a section object with a Back orientation relative to the UCS ^C^C_sectionplane _O _A
MM_201_E2F8C section plane bottom Creates a section object with a Bottom orientation relative to the UCS. ^C^C_sectionplane _O _B
MM_201_F2FEC section plane right Creates a section object with a Right orientation relative to the UCS. ^C^C_sectionplane _O _R
MM_201_7EA12 Section plane left Creates a section object with a Left orientation relative to the UCS. ^C^C_sectionplane _O _L
MM_201_64A93 section plane top Creates a section object with a Top orientation relative to the UCS. ^C^C_sectionplane _O _T
MM_201_4A578 section plane front Creates a section object with a Front orientation relative to the UCS ^C^C_sectionplane _O _F
MM_201_3C399 section plane 2 points Creates a section object by specifying points or clicking on a solid face or point cloud segment. ^C^C_sectionplane
MM_201_69253 Extract Section lines Extracts 2D geometry from point cloud for the active section plane ^C^C_pcextractsection
ID_PC_Extract_Corner Point Cloud Extract Corner Extracts a corner point from the intersection of 3 planar segments or a point cloud. ^C^C_pcextractcorner
ID_PC_Extract_Edge Point Cloud Extract Edge Extracts a line from the intersection of 2 planar segments of a point cloud. ^C^C_pcextractedge
ID_PC_Extract_Center_Line Point Cloud Extract Center Line Extracts a centerline from a cylindrical segment of a point cloud. ^C^C_pcextractcenterline
ID_Dimension Dimension Creates multiple types of dimensions within a single command session. ^C^C_dim
ID_BlocksPalette Blocks Opens or closes the Blocks palette $M=$(if,$(and,$(getvar,blockstate),1),'_blocksPaletteClose,'_blockspalette)
ID_BlocksPaletteClose Close Blocks Palette Closes the Blocks palette ^C^C_blockspaletteclose
ID_Centerline Centerline Creates centerline geometry of a specified linetype in association with selected lines and polylines. ^C^C_centerline
ID_Centermark Center Mark Creates an associative, cross-shaped mark at the center of a selected circle, arc, or polygonal arc. ^C^C_centermark
ID_CenterDisassociate Center Disassociate Removes associativity of center marks or centerlines from objects they define. ^C^C_CenterDisassociate
ID_CenterReset Center Reset Resets the centerlines to the current value specified in the CENTEREXE system variable. ^C^C_CenterReset
ID_CenterReassociate Center Reassociate Associates or reassociates a center mark or centerline object to selected objects. ^C^C_CenterReassociate
ID_SYSVARMONITOR SYSVARMONITOR Starts SysvarMonitor command ^C^C_sysvarmonitor
ID_Publish_PDF_Options Publish PDF Option Displays the PDF Options dialog ^C^C^Q_exportsettings _pDfoptions
ID_Osnap_GeoCenter Snap, Geometric Center Snaps to the geometric center point of polyline, 2d polyline and 2d spline _gcen
ID_PrintStudio Publish, Print Studio Sends solid objects and watertight meshes to Autodesk Print Studio (available only for 64-bit systems). ^C^C_3dprint
ID_RESET_EXTENSION_LENGTH Reset Extension Length Reset Extension Length ^C^C_CENTERRESET
ID_NEWVIEW New View Saves a new named view from what's displayed in the current viewport, or by defining a rectangular window ^C^C_newview
ID_DWG_COMPARE DWG Compare Allows you to highlight the differences between two revisions of the same drawing or different drawings ^C^C_COMPARE
ID_QuickMeasure Quick Measure Displays measurements of the geometry near the cursor in a 2D plan view ^C^C_MEASUREGEOM _quick
ID_CLASSICINSERT Insert Block - Classic Inserts a block or a drawing into the current drawing ^C^C_classicinsert

中文版

元素ID 命令名称 说明
MM_0001 夹点菜单 $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,5),GRIP_),$P0=ACAD.GRIPS $P0=*);
MM_0002 捕捉菜单 $P0=SNAP $p0=*
MM_0003 取消 ^C^C
MM_0004 切换捕捉 ^B
MM_0005 切换正交 ^O
MM_0006 切换栅格 ^G
MM_0007 切换坐标 '_.coords $M=$(if,$(and,$(getvar,coords),2),0,$(+,$(getvar,coords),1))
MM_0008 切换等轴测平面 ^E
MM_0009 数字化仪 ^T
ID_Tracking 捕捉, 临时追踪点 创建对象捕捉所使用的临时点 _tt
ID_From 捕捉, 起点 在命令中获取某个点相对于参照点的偏移 _from
ID_MidTwoPts 捕捉, 两点之间的中点 查找两点之间的中点 _m2p
ID_PointFilx 捕捉, 点过滤器, .X 指定 .X 点过滤器 .X
ID_PointFily 捕捉, 点过滤器, .Y 指定 .Y 点过滤器 .Y
ID_PointFilz 捕捉, 点过滤器, .Z 指定 .Z 点过滤器 .Z
ID_PointFixy 捕捉, 点过滤器, .XY 指定 .XY 点过滤器 .XY
ID_PointFixz 捕捉, 点过滤器, .XZ 指定 .XZ 点过滤器 .XZ
ID_PointFiyz 捕捉, 点过滤器, .YZ 指定 .YZ 点过滤器 .YZ
ID_OsnapEndp 捕捉, 端点 捕捉到对象的最近端点 _endp
ID_OsnapMidp 捕捉, 中点 捕捉到对象的中点 _mid
ID_OsnapInte 捕捉, 交点 捕捉到两个对象的交点 _int
ID_OsnapAppa 捕捉, 外观交点 捕捉到两个对象的外观交点 _appint
ID_OsnapExte 捕捉, 延长线 捕捉到圆弧或直线的延长线 _ext
ID_OsnapCent 捕捉, 中心点 捕捉到圆弧、圆、椭圆或椭圆弧的中心点 _cen
ID_OsnapQuad 捕捉, 象限点 捕捉到圆弧、圆、椭圆或椭圆弧的象限点 _qua
ID_OsnapTang 捕捉, 切点 捕捉到圆弧、圆、椭圆、椭圆弧或样条曲线的切点 _tan
ID_OsnapPerp 捕捉, 垂足 捕捉到垂直于对象的点 _per
ID_OsnapPara 捕捉, 平行线 捕捉到指定直线的平行线 _par
ID_OsnapNode 捕捉, 节点 捕捉到点对象 _nod
ID_OsnapInse 捕捉, 插入点 捕捉到文字、块或属性等对象的插入点 _ins
ID_OsnapNear 捕捉, 最近点 捕捉到对象的最近点 _nea
ID_OsnapNone 捕捉, 无 禁止对当前选择执行对象捕捉 _non
ID_Osnap 捕捉, 对象捕捉设置... 设置执行对象捕捉模式 '_+dsettings 2
ID_3dOsnapVert 顶点 捕捉到边的最近顶点 _zvert
ID_3dOsnapMidEdge 边的中点 捕捉到边的中点 _zmid
ID_3dOsnapNearFace 最靠近面 捕捉到曲面上的最近点 _znea
ID_3dOsnapKnot 捕捉, 节点 捕捉到点样条曲线节点 _zkno
ID_3dOsnapCentFace 面中心 捕捉到曲面中心 _zcen
ID_3dOsnapPerp 垂足 捕捉到垂直于对象的点 _zper
ID_3dOsnapNone 禁止对当前选择执行三维对象捕捉 _znon
ID_3dOsnap 三维对象捕捉设置... 设置运行三维对象捕捉模式 '_+dsettings 5
ID_PCOsnapNode 点云的节点 捕捉到点云中最近的点 _pnod
ID_PCOsnapNearPlane 点云最近的平面 捕捉到点云的平面线段上最近的点 _pnea
ID_PCOsnapPerp 垂直于点云 垂直于点云的平面线段进行捕捉 _pper
ID_PCOsnapPint 点云的交点 捕捉到截面线矢量的交点 _pint
ID_PCOsnapPedg 最靠近点云的边 捕捉到两个平面相交线上最近的点 _pedg
ID_PCOsnapPped 垂直于点云的边 捕捉垂直于两个平面的相交线 _pped
ID_PCOsnapPcl 三个平面的交点 捕捉到三个平面的交点 _pcl
ID_PCOsnapPcor 圆柱体中心线上最近的点 捕捉圆柱体中心线上最近的点 _pcor
ID_PC_SAVE_CROP_SATE 新裁剪状态 将当前的裁剪状态保存为名称 ^C^C_pointcloudcropstate _save
ID_New 新建... 创建新的图形文件 ^C^C_new
ID_NewSheet 新建图纸集... 创建新图纸集 ^c^c_newsheetset
ID_Open 打开... 打开现有的图形文件 ^C^C_open
ID_OpenSheet 打开图纸集... 打开指定的图纸集 ^c^c_opensheetset
ID_OpenMarkupDWF 加载标记集... 加载包含标记的 DWF 文件 ^c^c_opendwfmarkup
ID_DWG_CLOSE 关闭 关闭当前图形 ^C^C_close
ID_PartialOp 局部加载 向局部打开的图形中加载几何图形 ^C^C_partiaload
ID_Save 保存 保存当前图形 ^C^C_qsave
ID_UIE_Save 保存 保存当前图形 ^C^C_save
ID_Saveas 另存为... 以新文件名保存当前图形的副本 ^C^C_saveas
ID_ETransmit 电子传递... 打包一组文件以用于 Internet 传递 ^C^C_etransmit
ID_Export 输出... 将图形中的对象保存为其他文件格式 ^C^C_export
ID_PlotSetup 页面设置 控制每个新布局的页面布局、打印设备、图纸尺寸以及其他设置 ^C^C_pagesetup
ID_PlotMgr 绘图仪管理器... 显示绘图仪管理器,从中可以添加或编辑绘图仪配置 ^C^C_plottermanager
ID_PlotStyMgr 打印样式管理器... 打开一个文件夹,在其中可以添加或编辑打印样式表 ^C^C_stylesmanager
ID_Preview 打印预览 显示图形在打印时的外观 ^C^C_preview
ID_Print 打印... 将图形打印到绘图仪、打印机或文件 ^C^C_plot
ID_Pub 发布... 将图形发布为电子图纸集(DWF、DWFx 或 PDF 文件),或者将图形发布到绘图仪 ^C^C_publish
ID_PubDetails 查看打印和发布详细信息... 显示关于当前任务中已完成的打印和发布作业的信息 ^C^c_viewplotdetails
ID_Audit 核查 检查图形的完整性并更正错误 ^C^C_audit
ID_Recover 修复... 修复损坏的图形文件,然后将其打开 ^C^C_recover
ID_OpenDR 图形修复管理器... 显示程序或系统出错后可修复的图形文件的列表 ^C^C_drawingrecovery
ID_BupdateA 更新块图标 为 AutoCAD 设计中心中显示的块生成预览图像 ^C^C_blockicon
ID_Purge 清理... 删除图形中未使用的命名项目,如块定义和图层 ^C^C_+purge 0
ID_PLUSPurge 查找不可清除项目 预览无法清理的对象并在当前图形中查找这些对象 ^C^C_+purge 1
ID_ExportLayout 将布局输出到模型... 在新图形的模型空间中创建当前布局的视觉表示 ^C^C_exportlayout
ID_SendMail 发送... 将当前图形文件作为电子邮件附件或传真进行发送 ``
ID_Props 图形特性... 设置和显示当前图形的文件属性 ^C^C_dwgprops
ID_MRU 图形历史 打开此图形 ``
ID_Quit 退出 退出应用程序;提示保存文档 ^C^C_quit
ID_U Undo 撤消上一个动作 _u
ID_Redo 重做 恢复上一个用 UNDO 或 U 命令放弃的效果 ^C^C_mredo 1
ID_UIE_Redo 重做 恢复上一个用 UNDO 或 U 命令放弃的效果 ^C^C_redo
ID_Cutclip 剪切 将选定对象复制到剪贴板并将其从图形中删除 ^C^C_cutclip
ID_Copyclip 复制剪裁 将选定对象复制到剪贴板 ^C^C_copyclip
ID_Copybase 带基点复制 将选定对象与指定的基点一起复制到剪贴板 ^C^C_copybase
ID_Copylink 复制链接 将当前视图复制到剪贴板以便链接到其他 OLE 应用程序 ^C^C_copylink
ID_Pasteclip 粘贴 将剪贴板中的对象粘贴到当前图形中 ^C^C_pasteclip
ID_Pastebloc 粘贴为块 将剪贴板中的对象作为块粘贴到当前图形中 ^C^C_pasteblock
ID_Pastehlnk 粘贴为超链接 创建指向某个文件的超链接,并将其与选定对象关联 ^C^C_pasteashyperlink
ID_Pasteorig 粘贴到原坐标 使用原坐标将剪贴板中的对象粘贴到当前图形中 ^C^C_pasteorig
ID_Pastesp 选择性粘贴... 将剪贴板中的对象粘贴到当前视图中并控制数据的格式 ^C^C_pastespec
ID_Erase 删除 从图形删除对象 ^C^C_erase
ID_SelAll 全部选择 选择模型空间或当前布局中的所有对象,处于冻结或锁定图层上的对象除外 ^C^C_ai_selall
ID_Links OLE 链接... 更新、修改和取消现有的 OLE 链接 ^C^C_olelinks
ID_TextFind 查找... 查找、替换、选择或缩放到指定的文字 ^C^C_find
ID_Redrawall 重画 刷新所有视口的显示 '_redrawall
ID_Regen 重生成 从图形数据库重生成整个图形 ^C^C_regen
ID_Regenall 全部重生成 ^C^C_regenall
ID_ZoomRealt 实时缩放 放大或缩小显示当前视口中对象的外观尺寸 '_zoom ;
ID_ZoomPrevi 缩放, 上一个 显示上一个视图 '_zoom _p
ID_ZoomWindo 窗口缩放 缩放以显示由矩形窗口指定的区域 '_zoom _w
ID_ZoomDynam 缩放, 动态 使用矩形视框平移和缩放 '_zoom _d
ID_ZoomScale 缩放, 比例 使用比例因子进行缩放,以更改视图的比例 '_zoom _s
ID_ZoomCente 缩放, 中心 缩放以显示由中心点及比例值或高度定义的视图 '_zoom _c
ID_ZoomObjec 缩放, 对象 缩放以在视图中心尽可能大地显示一个或多个选定对象 '_zoom _o
ID_ZoomIn 缩放, 放大 使用比例因子 2 进行缩放,增大当前视图的比例 '_zoom 2x
ID_ZoomOut 缩放, 缩小 使用比例因子 2 进行缩放,减小当前视图的比例 '_zoom .5x
ID_ZoomAll 缩放, 全部 缩放以显示所有可见对象和视觉辅助工具 '_zoom _all
ID_ZoomExten 范围缩放 缩放以显示所有对象的最大范围 '_zoom _e
ID_Pan 平移, 实时 在当前视口中移动视图 '_pan
ID_PanPick 平移, 点 将视图移动指定的距离 '_-pan
ID_PanLeft 平移, 向左 向左移动视图 ^P'_-pan (trans (list (* -0.2 (getvar "viewsize")) 0) 0 1) ;^P
ID_PanRight 平移, 向右 向右移动视图 ^P'_-pan (trans (list (* 0.2 (getvar "viewsize")) 0) 0 1) ;^P
ID_PanUp 平移, 向上 向上移动视图 ^P'_-pan (trans (list 0 (* 0.2 (getvar "viewsize"))) 0 1) ;^P
ID_PanDown 平移, 向下 向下移动视图 ^P'_-pan (trans (list 0 (* -0.2 (getvar "viewsize"))) 0 1) ;^P
ID_CleanScreen 全屏显示 打开或关闭全屏显示模式 $M=$(if,$(and,$(getvar,CleanScreenState),1),^C^C_CleanScreenOFF,^C^C_CleanScreenON)
ID_Ai_tiledv 视口, 命名视口... 显示图形中所保存视口配置的列表 ^C^C_+vports 1
ID_VportsSav 视口, 新建视口... 显示视口对话框以用于创建新视口或恢复已保存的视口配置 ^C^C_+vports 0
ID_VportsSin 视口, 1 个视口 用活动视口中的视图把图形恢复为单视口视图 ^C^C$M=$(if,$(eq,$(getvar,tilemode),1),^C^C_-vports _si,^C^C_-vports)
ID_Vports2 视口, 2 个视口 创建两个相同视口 ^C^C_-vports _2
ID_Vports3 视口, 3 个视口 创建三个视口 ^C^C_-vports _3
ID_Vports4 视口, 4 个视口 创建四个大小相同的视口 ^C^C_-vports _4
ID_VportsRes 视口, 多边形视口 用指定的点创建不规则形状的视口 ^C^C_-vports _p
ID_VportsDel 视口, 对象 指定闭合的多段线、椭圆、样条曲线、面域或圆,以转换为视口 ^C^C_-vports _o
ID_VportsJoi 视口, 合并 将两个相邻模型视口合并为一个较大的视口 ^C^C_-vports _j
ID_Ddview 命名视图... 管理命名视图。允许创建、删除、重命名和编辑命名视图。 ^C^C_view
ID_Ddvpoint 视图, 视点预设... 设置三维观察方向 ^C^C_vpoint
ID_CurScale 视图, 当前比例 仅显示当前比例 ^C^C_ANNOALLVISIBLE 0
ID_AllScale 视图, 所有比例 显示所有比例 ^C^C_ANNOALLVISIBLE 1
ID_VpointTri 视图, 视点 在模型空间中显示定义观察方向的指南针和三轴架 ^C^C_-vpoint ;
ID_PlanCurre 平面, 当前 UCS 显示指定的用户坐标系的平面视图 ^C^C_plan ;
ID_PlanWorld 平面, 世界 UCS 显示世界坐标系的平面视图 ^C^C_plan _w
ID_PlanUCS 平面, 命名 UCS 显示以前保存的用户坐标系的平面视图 ^C^C_plan _u
ID_VpointTop 视图, 俯视 将视点设置在上面 ^C^C_-view _top
ID_VpointBot 视图, 仰视 将视点设置在下面 ^C^C_-view _bottom
ID_VpointLef 视图, 左视 将视点设置在左面 ^C^C_-view _left
ID_VpointRig 视图, 右视 将视点设置在右面 ^C^C_-view _right
ID_VpointFro 视图, 前视 将视点设置在前面 ^C^C_-view _front
ID_VpointBac 视图, 后视 将视点设置在后面 ^C^C_-view _back
ID_VpointSW 视图, 西南等轴测 将视点设置为西南等轴测 ^C^C_-view _swiso
ID_VpointSE 视图, 东南等轴测 将视点设置为东南等轴测 ^C^C_-view _seiso
ID_VpointNE 视图, 东北等轴测 将视点设置为东北等轴测 ^C^C_-view _neiso
ID_VpointNW 视图, 西北等轴测 将视点设置为西北等轴测 ^C^C_-view _nwiso
ID_3d_orbit 三维动态观察 控制交互式观察三维对象 '_3dorbit
ID_Hide 隐藏 重生成不显示隐藏线的三维模型 ^C^C_hide
ID_2doptim 着色模式, 二维线框 将视口设置为二维线框 $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_shademode,^C^C_shademode _2)
ID_Wireframe 着色模式, 三维线框 将视口设置为三维线框 $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_shademode,^C^C_shademode _3)
ID_Hidden 着色模式, 隐藏 将视口设置为隐藏线 $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_shademode,^C^C_shademode _h)
ID_Flat 着色模式, 平面着色 将视口设置为平面着色 $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_shademode,^C^C_shademode _f)
ID_Gouraud 着色模式, 体着色 将视口设置为体着色 $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_shademode,^C^C_shademode _g)
ID_FlatEdges 着色模式, 平面着色, 带边框 将视口设置为带边框平面着色 $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_shademode,^C^C_shademode _l)
ID_GourEdges 着色模式, 体着色, 带边框 将视口设置为带边框体着色 $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_shademode,^C^C_shademode _o)
ID_Scene 场景... 管理模型空间场景 ^C^C_scene
ID_Light 光源... 管理光源和光照效果 ^C^C_light
ID_Rmat 材质浏览器 打开和关闭材质浏览器 $M=$(if,$(and,$(>,$(getvar,matbrowserstate),0)),^C^C_matbrowserclose,^C^C_matbrowseropen)
ID_ABL 随层附着 将材质与图层关联 ^C^C_MaterialAttach
ID_VSMM0 材质和纹理关 关闭材质和纹理 ^C^C_VSMATERIALMODE 0
ID_VSMM1 材质开/纹理关 打开材质并关闭纹理 ^C^C_VSMATERIALMODE 1
ID_VSMM2 材质和纹理开 打开材质和纹理 ^C^C_VSMATERIALMODE 2
ID_Copy_Map 复制贴图坐标 将原始对象或面中的贴图应用到选定对象 $M=$(if,$(eq,$(getvar,cvport),1),^C^C_MaterialMap,^C^C_MaterialMap _Y)
ID_Reset_Map 重置贴图坐标 将贴图的 UV 坐标重置为默认值 $M=$(if,$(eq,$(getvar,cvport),1),^C^C_MaterialMap,^C^C_MaterialMap _R)
ID_Matlib 材质库... 从材质库输入材质或向其输出材质 ^C^C_matlib
ID_Setuv 贴图... 将材质映射到对象上 ^C^C_setuv
ID_Adjust_Environment_And_Exposure 调整环境和曝光... 启动“渲染环境和曝光”选项板,在其中可以将光源和背景、深色/浅色以及冷/暖色调应用到场景。 $M=$(if,$(and,$(>,$(getvar,renderenvstate),0)),^C^C_renderexposureclose,^C^C_renderexposure)
MM_240_CF4EA 调整环境和曝光... 启动“渲染环境和曝光”选项板,在其中可以将光源和背景、深色/浅色以及冷/暖色调应用到场景。 $M=$(if,$(and,$(>,$(getvar,renderenvstate),0)),^C^C_renderenvironmentclose,^C^C_renderenvironment)
ID_Rpref 渲染预设管理器 显示或隐藏用于访问渲染设置的“渲染预设管理器”选项板 $M=$(if,$(and,$(>,$(getvar,renderprefsstate),0)),^C^C_rprefclose,^C^C_rpref)
MM_240_9D5FD 渲染预设管理器 显示或隐藏用于访问渲染设置的“渲染预设管理器”选项板 $M=$(if,$(and,$(>,$(getvar,renderprefsstate),0)),^C^C_renderpresetsclose,^C^C_renderpresets)
ID_Stats 统计信息... 显示渲染的统计信息 ^C^C_stats
ID_UcsiconOn UCS 图标, 打开 启用坐标系图标 $M=$(if,$(and,$(getvar,ucsicon),1),^C^C_ucsicon _off,^C^C_ucsicon _on)
ID_UcsiconOr UCS 图标, 原点 在用户坐标系的原点显示 UCS 图标 $M=$(if,$(and,$(getvar,ucsicon),2),^C^C_ucsicon _no,^C^C_ucsicon _or)
ID_UcsiconPr UCS 图标, 特性... 控制 UCS 图标的样式、大小和颜色 ^C^C_ucsicon _p
ID_AttdispNo 属性显示, 常规 恢复图形中所有属性的原始可见性设置 '_attdisp _n
ID_AttdispOn 属性显示, 打开 使所有属性可见,从而替代原始可见性设置 '_attdisp _on
ID_AttdispOf 属性显示, 关闭 使所有属性不可见,从而替代原始可见性设置 '_attdisp _off
ID_Textscr 文本窗口 打开文本窗口 ^P'_textscr
ID_Toolbar 工具栏... 显示、隐藏和自定义工具栏 ^C^C_toolbar
ID_Ddinsert 块... 向当前图形插入块或图形 $M=$(if,$(and,$(getvar,blockstate),1),'^C^C_blocksPaletteClose,'^C^C_blockspalette)
ID_Xattach DWG 参照... 插入 DWG 文件作为外部参照(xref) ^C^C_xattach
ID_Imageatta 光栅图像参照... 将参照插入到图像文件 ^C^C_imageattach
ID_Field 字段... 插入当字段值变化时可以自动更新的文字字符串 ^c^c_Field
ID_NewLayout 布局, 新建布局 创建和修改图形的布局选项卡 ^C^C_layout _new
ID_TmplLayou 布局, 来自样板的布局... 插入基于现有布局样板的新布局 ^C^C^R_layout _template
ID_LayoutWiz 布局, 创建布局向导 创建新的布局选项卡并指定页面和打印设置 ^C^C_layoutwizard
ID_3dsin 3D Studio... 输入 Autodesk 3ds MAX (3DS) 文件 ^C^C_3dsin
ID_Acisin ACIS 文件... 输入 ACIS (SAT) 文件,并创建三维实体、体或面域对象 ^C^C_acisin
ID_Dxbin 二进制图形交换... 输入 AutoCAD DXB(二进制图形交换)文件 ^C^C_dxbin
ID_Wmfin Windows 图元文件... 输入 Windows 图元文件 ^C^C_wmfin
ID_Insertobj OLE 对象... 插入链接或嵌入对象 ^C^C_insertobj
ID_Xref 附着外部参照 将外部参照附着到当前图形 ^C^C_xattach
ID_Image 附着图像 将多种格式的图像插入 AutoCAD 图形文件 ^C^C_imageattach
ID_Hyperlink 超链接... 向对象附着超链接或修改现有的超链接 ^C^C_hyperlink
ID_Layer 图层特性 管理图层和图层特性 $M=$(if,$(and,$(>,$(getvar,LayerManagerState),0)),^C^C'_LayerClose,^C^C'_Layer)
ID_Ddcolor 颜色... 设置新对象的颜色 '_color
ID_Linetype 线型... 加载并设置线型 '_linetype
ID_Linewt 线宽... 设置当前线宽、线宽显示选项和线宽单位 '_lweight
ID_Transparency 透明度 设定当前透明度 '_cetransparency
ID_ScaleList 比例列表... 控制布局视口、页面布局和打印的可用比例的列表 '_scalelistedit
ID_Style 文字样式... 创建、修改或指定文字样式 '_style
ID_Ddim 标注, 标注样式... 创建和修改标注样式 '_dimstyle
ID_TblStyle 表格样式... 创建、修改或指定表格样式 ^c^c_tablestyle
ID_PlotStyle 打印样式... 设置新对象的当前打印样式,或向选定对象指定打印样式 ^C^C_plotstyle
ID_Ddptype 点样式... 指定点对象的显示样式和大小 '_ptype
ID_Mlstyle 多线样式... 管理多线样式 ^C^C_mlstyle
ID_Units 单位... 控制坐标和角度的显示精度和格式 '_units
ID_Thickness 厚度 设置当前三维厚度 '_thickness
ID_Limits 图形界限 设置和控制当前模型或布局选项卡中栅格的显示范围 '_limits
ID_Ddrename 重命名... 修改指定给项(如图层和标注样式)的名称 ^C^C_rename
ID_Spell 拼写检查 检查整个或部分图形中的拼写错误 '_spell
ID_Qselect 快速选择... 根据过滤条件创建选择集 ^C^C_qselect
ID_DrawordeF 绘图次序, 前置 强制使选定对象显示在所有对象之前 ^C^C^P_ai_draworder _Front ^P
ID_DrawordeB 绘图次序, 后置 强制使选定对象显示在所有对象之后 ^C^C^P_ai_draworder _Back ^P
ID_DrawordeA 绘图次序, 置于对象之上 强制使选定对象显示在指定的参照对象之前 ^C^C^P_ai_draworder _Above ^P
ID_DrawordeU 绘图次序, 置于对象之下 强制使选定对象显示在指定的参照对象之后 ^C^C^P_ai_draworder _Under ^P
ID_TextOnly 绘图次序, 仅文字对象 强制使文字对象显示在所有其他对象之前 ^C^C^P_texttofront _t ^P
ID_DimsOnly 绘图次序, 仅标注对象 强制使标注对象显示在所有其他对象之前 ^C^C^P_texttofront _d ^P
ID_TxtAllAnno 绘图次序, 所有注释对象 强制所有注释对象显示在所有其他对象之前。 ^C^C^P_texttofront _a ^P
ID_Dist 测量距离 测量两点之间或多段线上的距离 ^C^C_MEASUREGEOM _distance
ID_Area 测量面积 测量面积 ^C^C_MEASUREGEOM _area
ID_Massprop 面域/质量特性 计算面域或三维实体的质量特性 ^C^C_massprop
ID_List 列表 显示选定对象的特性数据 ^C^C_list
ID_Id 点坐标 显示指定位置的 UCS 坐标值 '_id
ID_Time 时间 显示图形的日期和时间统计信息 '_time
ID_Status 状态 显示图形的统计信息、模式和范围 '_status
ID_Setvar 设置变量 列出系统变量或修改变量值 '_setvar
ID_UpdField 更新字段 将选定对象的字段手动更新为当前值 ^c^c_updatefield
ID_Bedit 块编辑器 在块编辑器中打开块定义 ^C^C_bedit
ID_BSave 保存 保存块定义 ^C^C_BSAVE
ID_BSaveAs 将块另存为 使用新名称保存块定义的副本 ^C^C_BSAVEAS
ID_BParameter 参数 参数 ^C^C_BPARAMETER
ID_BAction 动作 动作 ^C^C_BACTION
ID_BAttdef 定义属性 定义属性 ^C^C_ATTDEF
ID_BRegen 更新 更新参数和属性文字大小 ^C^C_Regen
ID_BLearn 了解 了解动态块 ^C^C^P(help "acad_aug" "OverviewOfTheBlockEditor") ^P
ID_BVMode 可见性模式 控制针对当前可见性状态设置为不可见的对象在块编辑器中如何显示 $M=$(if,$(and,$(>,$(getvar,"bvmode"),0)),^C^C_bvmode 0,^C^C_bvmode 1)
ID_BVShow 使可见 将对象针对当前可见性状态或所有可见性状态设置为可见 ^C^C_BVSHOW
ID_BVHide 使不可见 将对象针对当前可见性状态或所有可见性状态设置为不可见 ^C^C_BVHIDE
ID_BVState 可见性状态 创建、设置或删除动态块中的可见性状态 ^C^C_BVSTATE
ID_BClose 关闭 退出块编辑器并返回图形 ^C^C_BCLOSE
ID_XOpen 外部参照和块, 打开参照 在单独的窗口中打开块或外部参照 ^C^C_xopen;
ID_RefEditor 外部参照和块, 在位编辑参照 直接在当前图形中编辑块或外部参照 ^C^C_refedit;
ID_RefAdd 外部参照和块, 添加到工作集 从宿主图形向参照编辑工作集传输对象 $M=$(if,$(eq,$(getvar,refeditname),""),^C^C^P(ai_refedit_alert);^P,$(if,$(and,$(=,$(getvar,tilemode),0),$(=,$(getvar,cvport),1)),^C^C_refset;,^C^C_refset _add;))^Z
ID_RefRemove 外部参照和块, 从工作集删除 从参照编辑工作集向宿主图形传输对象 $M=$(if,$(eq,$(getvar,refeditname),""),^C^C^P(ai_refedit_alert);^P,$(if,$(and,$(=,$(getvar,tilemode),0),$(=,$(getvar,cvport),1)),^C^C_refset;,^C^C_refset _rem;))^Z
ID_RefSave 外部参照和块, 保存参照编辑 保存对参照编辑工作集的修改 $M=$(if,$(eq,$(getvar,refeditname),""),^C^C^P(ai_refedit_alert)^P,^C^C_refclose _sav)
ID_RefDscrd 外部参照和块, 关闭参照 放弃对参照编辑工作集的修改 $M=$(if,$(eq,$(getvar,refeditname),""),^C^C^P(ai_refedit_alert)^P,^C^C_refclose _disc)
ID_EAttExt 数据提取... 提取外部源中的图形数据并将其合并到数据提取处理表或外部文件中 ^C^C_dataextraction
ID_Modify 特性 控制现有对象的特性 $M=$(if,$(and,$(>,$(getvar,opmstate),0)),^C^C_propertiesclose,^C^C_properties)
ID_Content 设计中心 管理和插入块、外部参照和填充图案等内容 $M=$(if,$(and,$(getvar,adcstate),1),'_adcclose,'_adcenter)
ID_TPalette 工具选项板 打开和关闭“工具选项板”窗口 $M=$(if,$(and,$(getvar,tpstate),1),'_ToolPalettesClose,'_ToolPalettes)
ID_AuthorPalette 块编写选项板 显示或隐藏“块编写选项板”窗口 ``
ID_SSMPalette 图纸集管理器 打开“图纸集管理器” $M=$(if,$(and,$(getvar,ssmstate),1),'_SheetSetHide,^C^C_SheetSet)
ID_dbConnect dbConnect 提供到外部数据库表的 AutoCAD 接口 $M=$(if,$(and,$(getvar,dbcstate),1),^C^C_dbcClose,^C^C_dbConnect)
ID_MarkupMgr 标记集管理器 显示已加载标记集的相关信息及其状态 $M=$(if,$(and,$(>,$(getvar,msmstate),0)),^C^C_markupclose,^C^C_markup)
ID_QCalc 快速计算器 显示或隐藏快速计算器 $M=$(if,$(eq,$(getvar,qcstate),0),'_quickcalc,'_qcclose)
ID_CmdLine 命令行 显示或隐藏命令行窗口 $M=$(if,$(and,$(>,$(getvar,clistate),0)),^C^C_commandlinehide,^C^C_commandline)
ID_LockedLayerFadingToggle 锁定的图层淡入 控制是否淡入锁定图层上的对象 '_setvar;LAYLOCKFADECTL;$M=$(-,0,$(getvar,LAYLOCKFADECTL))
ID_XDwgFadingToggle 外部参照淡入 启用或禁用外部参照淡入 '_setvar;XDWGFADECTL;$M=$(-,0,$(getvar,XDWGFADECTL))
ID_VisualStyleEdgeOverhang 边缘外伸 使三维实体的边从相交处向外延伸,以获得手绘效果 ``
ID_VisualStyleEdgeJitter 边缘抖动 使三维实体的边显示抖动效果,以模拟铅笔绘制效果 ``
ID_VisualStyleSilouetteEdges 轮廓边 显示或隐藏实体的轮廓边 ``
ID_VisualStyleIntersectionEdges 相交边 显示或隐藏实体的相交边 ``
ID_VisualStyleObscuredEdges 遮挡边 显示或隐藏实体的遮挡边 ``
ID_DrawingStatusBar 图形状态栏 显示/隐藏图形状态栏 ``
ID_XRayMode X 射线 打开或关闭 X 射线效果 ``
ID_Appload 加载应用程序... 加载和卸载应用程序,定义要在启动时加载的应用程序 ^C^C_appload
ID_Script 运行脚本... 执行脚本文件中的命令序列 '_script
ID_VBARun VBA, 宏... 运行 VBA 宏 ^C^C_vbarun
ID_VBALoad VBA, 加载工程... 在当前工作任务中加载全局 VBA 工程 ^C^C_vbaload
ID_VBAMan VBA, VBA 管理器... 使用对话框管理 VBA 工程操作 ^C^C_vbaman
ID_VBAIDE VBA, Visual Basic 编辑器 显示 Visual Basic 编辑器 ^C^C_vbaide
ID_AULPIDE Visual LISP 编辑器 显示 Visual LISP 交互式开发环境 ^C^C_vlide
ID_Replay 视图... 显示 BMP、TGA 或 TIFF 图像 ^C^C_replay
ID_Saveimg 显示图像, 保存... 将渲染图像保存到文件 ^C^C_saveimg
ID_Dducs UCS, 命名 UCS... 管理已定义的用户坐标系 ^C^C_+ucsman 0
ID_Dducsp 预设... 管理已定义的用户坐标系 ^C^C_+ucsman 1
ID_UcsTop UCS, 俯视 指定俯视 UCS 方向 ^C^C_ucs _g _t
ID_UcsBottom UCS, 仰视 指定仰视 UCS 方向 ^C^C_ucs _g _b
ID_UcsLeft UCS, 左视 指定左视 UCS 方向 ^C^C_ucs _g _l
ID_UcsRight UCS, 右视 指定右视 UCS 方向 ^C^C_ucs _g _r
ID_UcsFront UCS, 前视 指定前视 UCS 方向 ^C^C_ucs _g _f
ID_UcsBack UCS, 后视 指定后视 UCS 方向 ^C^C_ucs _g _ba
ID_UcsMove 移动 UCS 移动已定义的 UCS ^C^C_ucs _move
ID_UcsWorld UCS, 世界 将当前用户坐标系设置为世界坐标系 ^C^C_ucs _w
ID_UcsObject 对象 将用户坐标系与选定对象对齐 ^C^C^R_ucs _ob
ID_UcsFace 将用户坐标系与三维实体上的面对齐 ^C^C^R_ucs _fa
ID_UcsView 视图 将用户坐标系的 XY 平面与屏幕对齐 ^C^C_ucs _v
ID_UcsOrigin 原点 通过移动原点来定义新的用户坐标系 ^C^C_ucs _o
ID_UcsZAxVec Z 轴矢量 将用户坐标系与指定的正向 Z 轴对齐 ^C^C_ucs _zaxis
ID_Ucs3point 三点 使用三个点定义新的用户坐标系 ^C^C_ucs _3
ID_UcsXAxRot X 绕 X 轴旋转用户坐标系 ^C^C^R_ucs _x
ID_UcsYAxRot Y 绕 Y 轴旋转用户坐标系 ^C^C^R_ucs _y
ID_UcsZAxRot Z 绕 Z 轴旋转用户坐标系 ^C^C^R_ucs _z
ID_UcsApply 应用 向选定的视口应用当前 UCS ^C^C_ucs _apply
ID_UcsSave 保存 将当前 UCS 保存至命名 UCS ^C^C_ucs _na _s
ID_Standards CAD 标准, 配置... 管理标准文件与图形之间的关联 ^C^C_standards
ID_CheckStan CAD 标准, 检查... 检查当前图形是否与标准有冲突 ^C^C_checkstandards
ID_LayTrans CAD 标准, 图层转换器... 将当前图形中的图层转换为指定的图层标准 ^C^C_laytrans
ID_AddPlotter 添加绘图仪... 添加并配置绘图仪 ^C^C^P(if(startapp "addplwiz.exe")(princ)) ^P
ID_AddPlStyle 添加打印样式表... 创建打印样式表 ^C^C^P(if(startapp "styshwiz.exe")(princ)) ^P
ID_PenSetting 添加颜色相关打印样式表... 创建颜色相关打印样式表 ^C^C_r14penwizard
ID_CreateLayout 创建布局... 用向导中提供的设置创建布局 ^C^C_layoutwizard
ID_ImpPlotSet 输入打印设置... 显示向导,以便将 PCP 和 PC2 配置文件打印设置输入到模型选项卡或当前布局 ^C^C_pcinwizard
ID_Ddrmodes 绘图设置... 设置栅格和捕捉、极轴追踪和对象捕捉模式 '_dsettings
ID_TabletOn 数字化仪, 打开 打开数字化仪模式 ^C^C_tablet _on
ID_TabletOff 数字化仪, 关闭 关闭数字化仪模式 ^C^C_tablet _off
ID_TabletCal 数字化仪, 校准 用图形的坐标系校准数字化仪 ^C^C_tablet _cal
ID_TabletCfg 数字化仪, 配置 指定或重排数字化仪菜单区域 ^C^C_tablet _cfg
ID_Menuload 自定义, 界面... 管理产品中自定义的用户界面元素 ^C^C_cui
ID_UIE_Menuload 自定义, 界面... 管理产品中自定义的用户界面元素 ^C^C_quickcui
ID_CPalette 自定义, 工具选项板... 自定义工具选项板和工具选项板组 ^C^C_+customize 4
ID_EditPGP 自定义, 编辑程序参数 (acad.pgp) 打开用于定义命令缩写的程序参数(PGP)文本文件 ^C^C^P_ai_editcustfile $M=$(getvar,program).pgp;^P
ID_Preferenc 选项... 自定义设置 ^C^C_options
ID_Line 直线 创建直线段 ^C^C_line
ID_Ray 射线 创建开始于一点并无限延伸的线 ^C^C_ray
ID_Xline 构造线 创建无限长的线 ^C^C_xline
ID_Mline 多线 创建多条平行线 ^C^C_mline
ID_Pline 多段线 创建二维多段线 ^C^C_pline
ID_3dpoly 三维多段线 创建三维多段线 ^C^C_3dpoly
ID_Polygon 多边形 创建等边闭合多段线 ^C^C_polygon
ID_Rectang 矩形 创建矩形多段线 ^C^C_rectang
ID_Arc3point 圆弧, 三点 用三点创建圆弧 ^C^C_arc
ID_ArcStCeEn 圆弧, 起点、圆心、端点 用起点、圆心和端点创建圆弧 ^C^C_arc \_c
ID_ArcStCeAn 圆弧, 起点、圆心、角度 用起点、圆心和包含角创建圆弧 ^C^C_arc \_c \_a
ID_ArcStCeLe 圆弧, 起点、圆心、长度 用起点、圆心和弦长创建圆弧 ^C^C_arc \_c \_l
ID_ArcStEnAg 圆弧, 起点、端点、角度 用起点、端点和包含角创建圆弧 ^C^C_arc \_e \_a
ID_ArcStEnDi 圆弧, 起点、端点、方向 用起点、端点和起点处的切线方向创建圆弧 ^C^C_arc \_e \_d
ID_ArcStEnRa 圆弧, 起点、端点、半径 用起点、端点和半径创建圆弧 ^C^C_arc \_e \_r
ID_ArcCeStEn 圆弧, 圆心、起点、端点 用圆心、起点和用于确定端点的第三个点创建圆弧 ^C^C_arc _c
ID_ArcCeStAn 圆弧, 圆心、起点、角度 用圆心、起点和包含角创建圆弧 ^C^C_arc _c \\_a
ID_ArcCeStLe 圆弧, 圆心、起点、长度 用圆心、起点和弦长创建圆弧 ^C^C_arc _c \\_l
ID_ArcContin 圆弧, 连续 创建圆弧使其相切于上一次绘制的直线或圆弧 ^C^C_arc ;
ID_CircleRad 圆, 圆心、半径 用圆心和半径创建圆 ^C^C_circle
ID_CircleDia 圆, 圆心、直径 用圆心和直径创建圆 ^C^C_circle \_d
ID_Circle2pt 圆, 两点 用直径的两个端点创建圆 ^C^C_circle _2p
ID_Circle3pt 圆, 三点 用圆周上的三个点创建圆 ^C^C_circle _3p
ID_CircleTTR 圆, 相切, 相切, 半径 以指定半径创建相切于两个对象的圆 ^C^C_circle _ttr
ID_CircleTTT 圆, 相切, 相切, 相切 创建相切于三个对象的圆 ^C^C_circle _3p _tan \_tan \_tan \
ID_Donut 圆环 创建实心圆或较宽的环 ^C^C_donut
ID_Spline 样条曲线 创建通过或接近指定点的平滑曲线 ^C^C^R_spline
ID_EllipseCe 椭圆, 中心点 用指定的中心点创建椭圆 ^C^C_ellipse _c
ID_EllipseAx 椭圆, 轴, 端点 创建椭圆或椭圆弧 ^C^C_ellipse
ID_EllipseAr 椭圆, 圆弧 创建椭圆弧 ^C^C_ellipse _a
ID_Bmake 块, 创建... 从选定对象创建块定义 ^C^C_block
ID_Base 块, 基点 设置当前图形的插入基点 '_base
ID_Attdef 块, 定义属性... 创建用于在块中存储数据的属性定义 ^C^C_attdef
ID_Table 表格... 创建空的表格对象 ^C^C_table
ID_PointSing 点, 单点 创建点对象 ^C^C_point
ID_PointMult 点, 多点 创建多个点对象 *^C^C_point
ID_Divide 定数等分 沿对象的长度或周长创建等间隔排列的点对象或块 ^C^C_divide
ID_Measure 定距等分 沿对象的长度或周长按指定间隔创建点对象或块 ^C^C_measure
ID_Bhatch 图案填充... 使用填充图案或填充对封闭区域或选定对象进行填充 ^C^C_hatch
ID_UIE_Bhatch 图案填充... 使用填充图案或填充对封闭区域或选定对象进行填充 ^C^C_bhatch
ID_Gradient 渐变色... 使用渐变填充对封闭区域或选定对象进行填充 ^C^C_gradient
ID_Boundary 边界... 用封闭区域创建面域或多段线 ^C^C_boundary
ID_Region 面域 将包含封闭区域的对象转换为面域对象 ^C^C_region
ID_Wipeout 区域覆盖 创建区域覆盖对象 ^C^C_wipeout
ID_Revcloud_Rectangle 矩形修订云线 通过绘制矩形创建修订云线。 ^C^C_^Rrevcloud _R
ID_Revcloud_Polygon 多边形修订云线 通过绘制多段线创建修订云线。 ^C^C_^Rrevcloud _P
ID_Revcloud 徒手画修订云线 通过绘制自由形状的多段线创建修订云线。 ^C^C_^Rrevcloud _F
ID_Mtext 多行文字... 创建多行文字对象 ^C^C_mtext
ID_Text 单行文字 输入文字的同时在屏幕上显示 ^C^C_text
ID_Solid 建模, 网格, 二维实体 创建实心三角形和四边形 ^C^C_solid
ID_3dface 建模, 网格, 三维面 在三维空间中创建由三条或四条边构成的曲面 ^C^C_3dface
ID_3dsurface 三维曲面... 用对话框创建三维曲面对象 $I=ACAD.image_3dobjects $I=ACAD.*
ID_Edge 建模, 网格, 边 修改三维面的边的可见性 ^C^C_edge
ID_3dmesh 建模, 网格, 三维网格 创建自由形式的多边形网格 ^C^C_3dmesh
ID_Revsurf 建模, 网格, 旋转曲面 通过绕轴旋转轮廓创建网格 ^C^C_revsurf
ID_Tabsurf 建模, 网格, 平移曲面 从沿直线路径扫掠的直线或曲线创建网格 ^C^C_tabsurf
ID_Rulesurf 建模, 网格, 直纹曲面 在两条直线或曲线之间创建表示曲面的网格 ^C^C_rulesurf
ID_Edgesurf 建模, 网格, 边界曲面 在四条彼此相连的边或曲线之间创建网格 ^C^C_edgesurf
ID_Box 长方体 创建三维实心长方体 ^C^C_box
ID_Sphere 球体 创建三维实心球体 ^C^C_sphere
ID_Cylinder 圆柱体 创建三维实心圆柱体 ^C^C_cylinder
ID_Cone 圆锥体 创建三维实心圆锥体 ^C^C_cone
ID_Wedge 楔体 创建三维实心楔形体 ^C^C_wedge
ID_Torus 圆环体 创建圆环形三维实体 ^C^C_torus
ID_Extrude 拉伸 通过拉伸二维或三维曲线来创建三维实体或曲面 ^C^C^R_extrude _MO _SO;
ID_Extrude2 拉伸 通过拉伸二维或三维曲线来创建三维实体或曲面 ^C^C^R_extrude;
ID_Revolve 旋转 通过绕轴扫掠二维或三维曲线来创建三维实体或曲面 ^C^C^R_revolve _MO _SO;
ID_Revolve2 旋转 通过绕轴扫掠二维或三维曲线来创建三维实体或曲面 ^C^C^R_revolve;
ID_Slice 剖切 通过剖切或分割现有对象创建新的三维实体和曲面 ^C^C_slice
ID_Section 截面 用平面和实体的截面创建面域 ^C^C_section
ID_Interfere 干涉检查 通过两组选定三维实体之间的干涉创建临时三维实体 ^C^C_interfere
ID_ExtractIntersection 提取交点 从因两组选定的三维实体之间干涉而产生的临时三维实体中提取边 ^C^C_select \_-interfere _p;;;
ID_Soldraw 建模, 设置, 图形 在使用 SOLVIEW 命令创建的布局视口中生成轮廓和截面 ^C^C_soldraw
ID_Solview 建模, 设置, 视图 自动为三维实体创建平行视图、图层和布局视口 ^C^C_solview
ID_Solprof 建模, 设置, 轮廓 创建三维实体的二维轮廓图像,以便显示在布局视口中 ^C^C_solprof
ID_QDim 标注, 快速标注 从选定对象中快速创建一组标注 ^C^C_qdim
ID_Dimlinear 标注, 线性 创建线性标注 ^C^C_dimlinear
ID_Dimaligne 标注, 对齐 创建对齐线性标注 ^C^C_dimaligned
ID_Dimarclen 标注, 弧长 创建弧长标注 ^C^C_dimarc
ID_Dimordina 标注, 坐标 创建坐标标注 ^C^C_dimordinate
ID_Dimradius 标注, 半径 创建圆或圆弧的半径标注 ^C^C_dimradius
ID_Dimjogged 标注, 折弯 创建圆和圆弧的折弯标注 ^C^C_dimjogged
ID_Dimdiamet 标注, 直径 创建圆或圆弧的直径标注 ^C^C_dimdiameter
ID_Dimangula 标注, 角度 创建角度标注 ^C^C_dimangular
ID_Dimbaseli 标注, 基线 从上一个或选定标注的基线作连续的线性、角度或坐标标注 ^C^C_dimbaseline
ID_Dimcontin 标注, 连续 创建从上一次所创建标注的延伸线处开始的标注 ^C^C_dimcontinue
ID_Leader 标注, 引线 创建引线和注释: ^C^C_qleader
ID_Tolerance 标注, 公差... 创建包含在特征控制框中的形位公差 ^C^C_tolerance
ID_Dimcenter 标注, 圆心标记 创建圆和圆弧的圆心标记或中心线 ^C^C_dimcenter
ID_Dimedito 标注, 倾斜 使线性标注的延伸线倾斜 ^C^C_dimedit _o
ID_DimeditH 标注, 对齐文字, 默认 将标注文字移回默认位置 ^C^C_dimedit _h
ID_DimteditA 标注, 对齐文字, 角度 将标注文字旋转一定角度 ^C^C_dimtedit \_a
ID_DimteditL 标注, 对齐文字, 左对齐 左对齐标注文字 ^C^C_dimtedit \_l
ID_DimteditC 标注, 对齐文字, 居中 标注文字置中 ^C^C_dimtedit \_c
ID_DimteditR 标注, 对齐文字, 右对齐 右对齐标注文字 ^C^C_dimtedit \_r
ID_Dimoverri 标注, 替代 控制对选定标注中所使用的系统变量的替代 ^C^C_dimoverride
ID_DimOverideClear 删除样式替代 删除在选定标注中使用的标注替代 C^C_dimoverride _c
ID_Dimreasso 标注, 重新关联标注 将选定的标注关联或重新关联到对象或对象上的点 ^C^C_dimreassociate
ID_Ai_propch 特性 控制现有对象的特性 ^C^C_properties
ID_UIE_Ai_propch Chprop 控制现有对象的特性 ^C^C_chprop
ID_UIE_Ai_propch2 修改 控制现有对象的特性 ^C^C_change
ID_Matchprop 特性匹配 将选定对象的特性应用到其他对象 '_matchprop
ID_Xbind 外部参照, 绑定... 将外部参照依赖符号绑定到当前图形 ^C^C_xbind
ID_Xclipfram 外部参照, 边框 控制外部参照或块的剪裁边界的可见性 $M=$(if,$(eq,$(getvar,xclipframe),1),^C^C_xclipframe 0,^C^C_xclipframe 1)
ID_Imageadju 图像, 调整... 控制图像的亮度、对比度和淡入度 ^C^C_imageadjust
ID_Imagequal 图像, 质量 控制图像显示质量 ^C^C_imagequality
ID_Transpare 图像, 背景透明度 控制图像的背景像素是否透明 ^C^C_transparency
ID_Imagefram 图像, 边框 控制是否在视图中显示图像边框 ^C^C_imageframe
ID_Hatchedit 图案填充编辑 修改现有的图案填充对象 ^C^C_hatchedit
ID_Pedit 编辑多段线 编辑多段线和三维多边形网格 ^C^C_pedit
ID_Splinedit 编辑样条曲线 编辑样条曲线或样条曲线拟合多段线 ^C^C^R_splinedit
ID_Mledit 多线编辑... 编辑多条平行线 ^C^C_mledit
ID_EAttEdit 属性, 单个... 编辑块参照中的属性 ^C^C_eattedit
ID_AtteditGlo 属性, 全局 单独编辑或全局编辑块的可变属性 ^C^C_-attedit
ID_BattMan 属性, 块属性管理器... 管理选定的块定义的属性 ^C^C_battman
ID_Ddedit 文字, 编辑... 编辑文字、标注文字和属性定义 ^C^C_textedit
ID_Scaletext 文字, 比例 保持选定文字对象位置不变,对其进行放大或缩小 ^C^C_scaletext
ID_Justifyte 文字, 对正 保持选定文字对象位置不变,更改其对正点 ^C^C_justifytext
ID_ImageClip 剪裁, 图像 将选定图像的显示剪裁到指定边界 ^C^C_imageclip
ID_XrefClip 剪裁, 外部参照 将选定外部参照或块参照的显示剪裁到指定边界 ^C^C_xclip
ID_VportClip 剪裁, 视口 剪裁布局视口对象并重塑视口边界的形状 ^C^C_vpclip
ID_Copy 复制 将对象复制到指定方向上的指定距离处 $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_copy,^C^C_copy)
ID_Mirror 镜像 创建选定对象的镜像副本 $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_mirror,^C^C_mirror)
ID_Offset 偏移 创建同心圆、平行线和等距曲线 ^C^C_offset
ID_Array 阵列... 创建按指定方式排列的多个对象副本 ^C^C_array
ID_Move 移动 将对象在指定方向上移动指定距离 $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_move,^C^C_move)
ID_Rotate 旋转 绕基点旋转对象 $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_rotate,^C^C_rotate)
ID_Scale 缩放 放大或缩小选定对象,缩放后保持对象的比例不变 $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_scale,^C^C_scale)
ID_Stretch 拉伸 通过窗选或多边形框选的方式拉伸对象 $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_stretch,^C^C_stretch)
ID_Lengthen 拉长 修改对象的长度和圆弧的包含角 ^C^C_lengthen
ID_Trim 修剪 修剪对象以适合其他对象的边 ^C^C_trim
ID_Extend 延伸 延伸对象以适合其他对象的边 ^C^C_extend
ID_Break 打断 在两点之间打断选定的对象 ^C^C_break
ID_Join 合并 合并相似对象以形成一个完整的对象 ^C^C_join
ID_Chamfer 倒角 给对象加倒角 ^C^C_chamfer
ID_Fillet 圆角 给对象加圆角 ^C^C_fillet
ID_3darray 三维阵列 按矩形或极轴排列方式创建对象的三维矩阵 ^C^C_3darray
ID_Mirror3d 三维镜像 在镜像平面上创建选定对象的镜像副本 ^C^C_mirror3d
ID_Rotate3d 三维旋转 绕三维轴转动对象 ^C^C_rotate3d
ID_3dalign 三维对齐 在二维和三维空间中将对象与其他对象对齐 ^C^C_3dalign
ID_Union 并集 用并集合并选定的三维实体或二维面域 ^C^C_union
ID_Subtract 差集 用差集合并选定的三维实体或二维面域 ^C^C_subtract
ID_Intersect 交集 从选定的重叠实体或面域创建三维实体或二维面域 ^C^C_intersect
ID_FaceExtru 拉伸面 按指定的距离或沿某条路径拉伸三维实体的选定平面 ^C^C_solidedit _face _extrude
ID_FaceMove 移动面 将三维实体上的面在指定方向上移动指定距离 ^C^C_solidedit _face _move
ID_FaceOffse 偏移面 按指定的距离偏移三维实体的选定面,从而更改其形状 ^C^C_solidedit _face _offset
ID_FaceDel 删除面 删除三维实体上的面,包括圆角或倒角 ^C^C_solidedit _face _delete
ID_FaceRotat 旋转面 绕指定的轴旋转三维实体上的选定面 ^C^C_solidedit _face _rotate
ID_FaceTaper 倾斜面 按指定的角度倾斜三维实体上的面 ^C^C_solidedit _face _taper
ID_FaceColor 着色面 更改三维实体上选定面的颜色 ^C^C^R_solidedit _face _color
ID_FaceCopy 复制面 复制三维实体上的面,从而生成面域或实体 ^C^C_solidedit _face _copy
ID_EdgeColor 着色边 更改三维实体上选定边的颜色 ^C^C^R_solidedit _edge _color
ID_EdgeCopy 复制边 将三维实体上的选定边复制为二维圆弧、圆、椭圆、直线或样条曲线 ^C^C_solidedit _edge _copy
ID_Imprint 压印 将二维几何图形压印到三维实体上,从而在平面上创建更多的边 ^C^C_imprint
ID_BodyCln 清除 删除三维实体上所有冗余的边和顶点 ^C^C_solidedit _body _clean
ID_Separate 分割 将具有多个不连续部分的三维实体对象分割为独立的三维实体 ^C^C_solidedit _body _separate
ID_Shell 抽壳 将三维实体转换为中空壳体,其壁具有指定厚度 ^C^C_solidedit _body _shell
ID_BodyChk 检查 检查三维实体中的几何数据 ^C^C_solidedit _body _check
ID_OffsetEdge 偏移边 ^C^C_offsetedge
ID_Explode 分解 将复合对象分解为其部件对象 ^C^C_explode
ID_WINDOW_CLOSEALL 全部关闭 ^C^C_closeall
ID_WINDOW_CLOSEALLOTHER 关闭其他所有 ^C^C_closeallother
ID_LockToolbarFloat 锁定, 浮动工具栏 锁定/解锁工具栏 '_lockui $M=$(if,$(<,$(getvar,LOCKUI),0),4,$(if,$(and,$(getvar,lockui),4),$(-,$(getvar,lockui),4),$(+,$(getvar,lockui),4)))
ID_LockToolbarDock 锁定, 固定工具栏 '_lockui $M=$(if,$(<,$(getvar,LOCKUI),0),1,$(if,$(and,$(getvar,lockui),1),$(-,$(getvar,lockui),1),$(+,$(getvar,lockui),1)))
ID_LockWindowFloat 锁定, 浮动窗口 锁定/解锁窗口 '_lockui $M=$(if,$(<,$(getvar,LOCKUI),0),8,$(if,$(and,$(getvar,lockui),8),$(-,$(getvar,lockui),8),$(+,$(getvar,lockui),8)))
ID_LockWindowDock 锁定, 固定窗口 '_lockui $M=$(if,$(<,$(getvar,LOCKUI),0),2,$(if,$(and,$(getvar,lockui),2),$(-,$(getvar,lockui),2),$(+,$(getvar,lockui),2)))
ID_WINDOW_CASCADE 层叠 使窗口重叠,保持标题栏可见 ^C^C^Q_syswindows;_cascade
ID_WINDOW_TILE_HORZ 水平平铺 在水平方向上以不重叠的平铺方式排列窗口和图标 ^C^C^Q_syswindows;_hor
ID_WINDOW_TILE_VERT 垂直平铺 在垂直方向上以不重叠的平铺方式排列窗口和图标 ^C^C^Q_syswindows;_vert
ID_WINDOW_ARRANGE 排列图标 排列窗口图标 ^C^C^Q_syswindows;_arrange
ID_Help Help\tF1 打开“帮助”窗口 '_help
ID_DevHelp 开发人员帮助 显示联机开发人员帮助 ^C^C^P(help "acad_dev180" "") ^P
ID_SCELearn Subscription e-Learning 目录 连接到 Subscription Center,并向 Subscription 维护合约客户提供互动式自学课程 ^C^C^P_access_subctr 1 ^P
ID_SCNewCSR 生成支持请求 连接到 Subscription Center,然后向 Subscription 维护合约客户提供直接技术支持 ^C^C^P_access_subctr 2 ^P
ID_SCViewCSR 查看支持请求 连接到 Subscription Center,并让用户可以查看已提交的技术支持请求 ^C^C^P_access_subctr 3 ^P
ID_SCLogin 编辑 Subscription Center 概要 连接到 Subscription Center,并让 Subscription 维护合约客户能够管理 Subscription 维护合约概要 ^C^C^P_access_subctr 4 ^P
ID_ProdSuppSafe 支持知识库 启动 Web 浏览器并显示产品支持信息 ^C^C^P_ai_product_support_safe ^P
ID_TrainingSafe 联机培训资源 启动 Web 浏览器并显示此产品培训的相关链接 ^C^C^P_ai_training_safe ^P
ID_CustomSafe 联机开发人员中心 启动 Web 浏览器并显示产品特定的自定义信息的链接 ^C^C^P_ai_custom_safe ^P
ID_AUGI Autodesk 国际用户组 启动 Web 浏览器并显示用户组信息 ^C^C^P_ai_browse augi.htm ^P
ID_About 关于 显示关于本产品的信息 '_about
ID_Enter 输入 完成命令、接受命令值以及轮换夹点模式 ;
ID_GripMove 夹点, 移动 将对象在指定方向上平移指定的距离 _move
ID_GripMirro 夹点, 镜像 创建对象的镜像图像副本 _mirror
ID_GripRotat 夹点, 旋转 绕基点移动对象 _rotate
ID_GripScale 夹点, 缩放 在 X、Y 和 Z 方向上同比放大或缩小对象 _scale
ID_GripStret 夹点, 拉伸 移动或拉伸对象 _stretch
ID_GripBase 夹点, 基点 设置当前图形的插入基点 _base
ID_GripCopy 夹点, 复制 复制对象 _copy
ID_GripRefer 夹点, 参照 设置参照点 _reference
ID_GripExit 夹点, 退出 取消夹点编辑模式并返回到命令行 _exit
ID_CMNonLast 重复%s 重复上一条命令 ^C^C;
ID_UNDO 放弃 撤消上一个动作 ^C^C_u
ID_UIE_UNDO 放弃 撤消上一个动作 ^C^C_undo
ID_Deselectall 全部不选 从选择集中删除所有对象 ^C^C^Pai_deselect ^P
ID_Cancel 取消 取消命令 ^C
ID_DimAbove 标注, 文字, 在尺寸线上 将标注文字移到尺寸线上方 ^C^C_ai_dim_textabove
ID_DimTxtCen 标注, 文字, 置中 将标注文字移到中心位置 ^C^C_ai_dim_textcenter
ID_DimHome 标注, 文字, 默认文字 将标注文字移回默认位置 ^C^C_ai_dim_texthome
ID_DimTxtMove2 标注, 文字, 单独移动文字 单独移动标注文字 ^C^C_aidimtextmove _2
ID_DimTxtMove1 标注, 文字, 与引线一起移动 标注文字与引线一起移动 ^C^C_aidimtextmove _1
ID_DimTxtMove0 标注, 文字, 与尺寸线一起移动 标注文字与尺寸线一起移动 ^C^C_aidimtextmove _0
ID_DimPrec0 标注, 精度, 0 将标注值设置为 0 位小数 ^C^C_aidimprec _0
ID_DimPrec1 标注, 精度, 0.0 将标注值设置为 1 位小数 ^C^C_aidimprec _1
ID_DimPrec2 标注, 精度, 0.00 将标注值设置为 2 位小数 ^C^C_aidimprec _2
ID_DimPrec3 标注, 精度, 0.000 将标注值设置为 3 位小数 ^C^C_aidimprec _3
ID_DimPrec4 标注, 精度, 0.0000 将标注值设置为 4 位小数 ^C^C_aidimprec _4
ID_DimPrec5 标注, 精度, 0.00000 将标注值设置为 5 位小数 ^C^C_aidimprec _5
ID_DimPrec6 标注, 精度, 0.000000 将标注值设置为 6 位小数 ^C^C_aidimprec _6
ID_DimSty2 标注样式, 另存为新样式... 将选定标注的特性另存为新标注样式 ^C^C_aidimstyle _S
ID_DimSty3 标注样式, MRU1 向选定的标注指定样式 ^C^C_aidimstyle _1
ID_DimSty4 标注样式, MRU2 向选定的标注指定样式 ^C^C_aidimstyle _2
ID_DimSty5 标注样式, MRU3 向选定的标注指定样式 ^C^C_aidimstyle _3
ID_DimSty6 标注样式, MRU4 向选定的标注指定样式 ^C^C_aidimstyle _4
ID_DimSty7 标注样式, MRU5 向选定的标注指定样式 ^C^C_aidimstyle _5
ID_DimSty8 标注样式, MRU6 向选定的标注指定样式 ^C^C_aidimstyle _6
ID_DimSty9 标注样式, 其他... 显示其他可用的标注样式 ^C^C_aidimstyle _O
ID_DimFlipArrow 标注, 翻转箭头 将标注箭头翻转到延伸线相邻的一侧 ^C^C_aidimfliparrow
ID_WBLOCK 写块 保存选定的对象或将块转换为指定的图形文件 ^C^C_wblock
ID_VpMax 最大化视口 最大化视口 ^C^C_vpmax
ID_Vport_dispon 视口, 显示, 是 打开视口,激活视口并使其对象可见 ^C^C_-vports _on _p;;
ID_Vport_dispoff 视口, 显示, 否 关闭视口,使其对象不可见 ^C^C_-vports _off _p;;
ID_Vport_lockon 视口, 锁定, 是 锁定当前视口。类似于图层锁定 ^C^C_-vports _lock _on _p;;
ID_VPORTS 视口,矩形 创建矩形图纸空间视口 ^C^C_-vports
ID_Vport_lockoff 视口, 锁定, 否 解锁当前视口 ^C^C_-vports _lock _off _p;;
ID_Vport_asdisp 视口, 着色, 按显示 指定视口按其显示形式打印 ^C^C_-vports _shadeplot _as _p;;
ID_Vport_wframe 视口, 着色, 线框 指定视口打印线框,而不管当前显示设置 ^C^C_-vports _shadeplot _wireframe _p;;
ID_Vport_hidden 视口, 着色, 隐藏 指定视口打印线框,而不管当前显示设置 ^C^C_-vports _shadeplot _hidden _p;;
ID_Vport_render 视口, 着色, 渲染 指定视口打印渲染,而不管当前显示设置 ^C^C_-vports _shadeplot _rendered _c _p;;
MM_0088 打开外部参照 ^C^C_xopen
ID_Mtedit 编辑多行文字... 打开多行文字编辑器,编辑选定的多行文字对象 ^C^C_mtedit
ID_RefEdit 在位编辑块 在位打开块定义 ^C^C_refedit
ID_ResetBlock 重置块 重置块参照,以匹配原始定义 ^C^C_resetblock
ID_VpMin 最小化视口 最小化已最大化的视口 ^C^C_vpmin
MM_0125 快速引线 ^C^C_qleader
ID_Dimedit 编辑标注 编辑标注文字和延伸线 ^C^C_dimedit
ID_Dimtedit 编辑标注文字 移动和旋转标注文字,重新定位尺寸线 ^C^C_dimtedit
ID_Import 输入 将 PDF 和 DGN 等不同格式的文件输入到当前图形中 ^C^C_import
ID_VpDialog 视口, 显示“视口”对话框 显示“视口”对话框 ^C^C_vports
ID_BreakSele 打断于点 在一点打断选定的对象 ^C^C_breakatpoint
ID_Draworder 绘图次序 修改图像和其他对象的显示顺序 ^C^C_draworder
ID_AttSync 同步属性 使用指定块定义中的新属性和更改后的属性更新块参照 ^C^C_AttSync
ID_Laymcur 图层, 将对象的图层置为当前图层 将当前图层设置为选定对象所在的图层 ^C^C_Laymcur
ID_LayerP 图层, 上一个图层 放弃对图层设置的上一个或上一组更改 ^C^C_LayerP
ID_3dpan 三维平移 启动 3DORBIT 命令并允许水平或垂直拖动视图 '_3dpan
ID_3dzoom 三维缩放 启动 3DORBIT 命令并允许缩放视图 '_3dzoom
ID_3dcorbit 三维连续动态观察 以连续运动方式在三维空间中旋转视图 '_3dcorbit
ID_3dswivel 三维旋转 启动 3DSWIVEL 命令并模拟旋转相机的效果 '_3dswivel
ID_3ddistanc 三维调整视距 启动 3DORBIT 命令并调整对象的显示距离 '_3ddistance
ID_3dclip 三维调整剪裁平面 启动 3DORBIT 命令并打开“调整剪裁平面”窗口 '_3dclip
ID_3dclipfr 启用/关闭前向剪裁 在三维动态观察的“调整剪裁平面”窗口中打开或关闭前向剪裁平面 ^C^C_dview$M=$(if,$(or,$(eq,$(getvar,tilemode),1),$(!=,$(getvar,cvport),1)),$(if,$(and,$(getvar,viewmode),2),$(if,$(and,$(getvar,viewmode),4), _all _cl _off _cl _b _on^M, _all _cl _off^M), _all _cl _f $(getvar,frontz)^M)^Z)
ID_3dclipbk 启用/关闭后向剪裁 在三维动态观察的“调整剪裁平面”窗口中打开或关闭后向剪裁平面 ^C^C_dview$M=$(if,$(or,$(eq,$(getvar,tilemode),1),$(!=,$(getvar,cvport),1)),$(if,$(and,$(getvar,viewmode),4), _all _cl _b _off^M, _all _cl _b _on^M)^Z)
ID_QNew 新建 创建空白的图形文件 ^C^C_qnew
MM_0278 缩放上一个 '_zoom _p
ID_ViewForward 向前查看 前进视图导航 ^C^C'_VIEWFORWARD
ID_ViewBackward 向后查看 后退视图导航 ^C^C'_VIEWBACK
ID_TEDIT TEXTEDIT ^C^C_TEXTEDIT
MM_0284 快速计算器 显示计算器 '_quickcalc
ID_Spacetran 在空间之间转换距离 将距离或高度在模型空间和图纸空间之间转换 '_spacetrans
ID_Ucs UCS 管理用户坐标系 ^C^C_ucs
ID_UcsPrevio UCS, 上一个 恢复上一个用户坐标系 ^C^C_ucs _p
MM_0307 面 UCS ^C^C^R_ucs _fa
ID_WsSettings 工作空间, 工作空间设置... 显示“工作空间设置”对话框 ^C^C_wssettings
ID_Camera 创建相机 在模型空间中创建相机对象 ^C^C_camera
ID_VpSingle 视口, 单个视口 创建单个图纸空间视口 $M=$(if,$(eq,$(getvar,vpmaximizedstate),1),^C^C_-vports,$(if,$(eq,$(getvar,tilemode),1),^C^C_-vports _si,^C^C_-vports))
ID_VpPoly 视口, 多边形视口 创建由一系列直线段和圆弧段定义的非矩形布局视口 $M=$(if,$(eq,$(getvar,vpmaximizedstate),1),^C^C_-vports,$(if,$(eq,$(getvar,tilemode),0),^C^C_-vports _p,^C^C^P_ai_viewports_alert^P))
ID_VpConvert 视口, 将对象转换为视口 通过闭合的多段线、椭圆、样条曲线、面域或圆创建非矩形布局视口 $M=$(if,$(eq,$(getvar,vpmaximizedstate),1),^C^C_-vports,$(if,$(eq,$(getvar,tilemode),0),^C^C_-vports _o,^C^C^P_ai_viewports_alert^P))
ID_HlnkBack 后退 定位到上一个超链接的文档 '_hyperlinkBack
ID_HlnkFwd 前进 定位到下一个超链接的文档 '_hyperlinkFwd
ID_HlnkStop 停止浏览 取消当前定位选择 '_hyperlinkStop
ID_Browser 浏览 Web 启动系统注册表中定义的默认 Web 浏览器 ^C^C_browser ;
MM_0358 圆心半径 用圆心和半径创建圆 ^C^C_circle
MM_0371 电子传递 创建图形和相关文件的传递集 ^C^C_etransmit
MM_0379 图形实用工具 清理 ^C^C_purge
ID_DimOrx 标注, 坐标, X 基准 ^C^C_dimordinate \_x
ID_DimOry 标注, 坐标, Y 基准 ^C^C_dimordinate \_y
ID_DTbDraw 绘图工具栏 ^C^C_-toolbar;TB_DRAW;;
ID_DTbModify 修改工具栏 ^C^C_-toolbar;TB_MODIFY;;
ID_DTbDimensi 标注工具栏 ^C^C_-toolbar;TB_DIMENSION;;
ID_DTbObjectP 对象特性工具栏 ^C^C_-toolbar;TB_OBJECT_PROPERTIES;;
ID_DTbStandar 标准工具栏 ^C^C_-toolbar;TB_STANDARD;;
ID_Seladd 选择添加 $M=$(if,$(getvar,cmdactive),,_select;)_a
ID_Selcp 选择多边形交叉及包含的对象 $M=$(if,$(getvar,cmdactive),,_select;)_cp
ID_Selcro 选择包含或交叉的对象 $M=$(if,$(getvar,cmdactive),,_select;)_c
ID_Selfen 栏选 $M=$(if,$(getvar,cmdactive),,_select;)_f
ID_Selgro 选择组 $M=$(if,$(getvar,cmdactive),,_select;)_g
ID_Sellas 选择最新创建 $M=$(if,$(getvar,cmdactive),,_select;)_l
ID_Selpre 选择前次选择的对象 $M=$(if,$(getvar,cmdactive),,_select;)_p
ID_Selrem 选择删除 $M=$(if,$(getvar,cmdactive),,_select;)_r
ID_Selwin 按窗口选择 $M=$(if,$(getvar,cmdactive),,_select;)_w
ID_Selwp 按多边形窗口选择 $M=$(if,$(getvar,cmdactive),,_select;)_wp
MM_0399 全部选择 选择解冻图层上的所有对象 $M=$(if,$(getvar,cmdactive),_all,^P_ai_selall ^P)
MM_0418 网格 ^C^C_mesh
MM_0419 二次拟合网格 '_surftype 5
MM_0420 三次拟合网格 '_surftype 6
MM_0421 Bezier 拟合网格 '_surftype 8
MM_0422 二次拟合多段线 '_splinetype 5
MM_0423 三次拟合多段线 '_splinetype 6
MM_0424 平铺视口, 单个 ^C^C(ai_tiledvp 1 nil)
MM_0425 平铺视口, 三个: 垂直 ^C^C(ai_tiledvp 3 "_V")
MM_0426 平铺视口, 三个: 水平 ^C^C(ai_tiledvp 3 "_H")
MM_0427 平铺视口, 四个: 相等 ^C^C(ai_tiledvp 4 nil)
MM_0428 平铺视口, 两个: 垂直 ^C^C(ai_tiledvp 2 "_V")
MM_0429 平铺视口, 三个: 右 ^C^C(ai_tiledvp 3 "_R")
MM_0430 平铺视口, 三个: 左 ^C^C(ai_tiledvp 3 "_L")
MM_0431 平铺视口, 四个: 左 ^C^C(ai_tiledvp 4 "_L")
MM_0432 平铺视口, 两个: 水平 ^C^C(ai_tiledvp 2 "_H")
MM_0433 平铺视口, 三个: 上 ^C^C(ai_tiledvp 3 "_A")
MM_0434 平铺视口, 三个: 下 ^C^C(ai_tiledvp 3 "_B")
MM_0435 平铺视口, 四个: 右 ^C^C(ai_tiledvp 4 "_R")
MM_0436 AutoCAD ^C^C^P(ai_rootmenus) ^P
MM_0437 * * * * $S=ACAD.OSNAP
MM_0438 FILE $S=ACAD.01_FILE
MM_0439 EDIT $S=ACAD.02_EDIT
MM_0440 视图 1 $S=ACAD.03_VIEW1
MM_0441 视图 2 $S=ACAD.04_VIEW2
MM_0442 INSERT $S=ACAD.05_INSERT
MM_0443 FORMAT $S=ACAD.06_FORMAT
MM_0444 TOOLS 1 $S=ACAD.07_TOOLS1
MM_0445 TOOLS 2 $S=ACAD.08_TOOLS2
MM_0446 DRAW 1 $S=ACAD.09_DRAW1
MM_0447 DRAW 2 $S=ACAD.10_DRAW2
MM_0448 DIMNSION $S=ACAD.11_DIMENSION
MM_0449 MODIFY1 $S=ACAD.12_MODIFY1
MM_0450 MODIFY2 $S=ACAD.13_MODIFY2
MM_0451 HELP $S=ACAD.14_HELP
MM_0453 LAST $S=ACAD.
MM_0456 交点 _int
MM_0457 外观交点 _appint
MM_0461 垂足 _per
MM_0466 追踪 _tt
MM_0468 上一个 _l
MM_0469 上一个 _p
MM_0470 全部 _all
MM_0471 多边框选 _cp
MM_0472 多边窗口 _wp
MM_0473 栏选 _f
MM_0474 _g
MM_0475 添加 _a
MM_0476 删除 _r
MM_0477 放弃 _u
MM_0478 过滤器 _'filter
MM_0479 .x .x
MM_0480 .y .y
MM_0481 .z .z
MM_0482 .xy .xy
MM_0483 .xz .xz
MM_0484 .yz .yz
MM_0485 对象捕捉... '_+dsettings 2
MM_0486 绘图模式 '_+dsettings 0
MM_0487 图层 '_layer
MM_0488 ^C^C_group
MM_0489 OSNAP $S=ACAD.OSNAP
MM_0490 夹点 ``
MM_0491 编辑 ``
MM_0492 移动 _mo
MM_0493 镜像 _mi
MM_0494 旋转 _ro
MM_0495 缩放 _sc
MM_0496 拉伸 _st
MM_0497 基点 _b
MM_0498 复制 _c
MM_0499 参照 _r
MM_0501 特性检查 ^C^C_properties
MM_0502 退出 _x
MM_0504 新建 ^C^C_new
MM_0505 打开 ^C^C_open
MM_0506 保存 ^C^C_qsave
MM_0507 另存为 ^C^C_saveas
MM_0508 输出 ^C^C_export
MM_0509 配置 ^C^C_config
MM_0510 打印 ^C^C_plot
MM_0512 修复 ^C^C_recover
MM_0513 清理 ^C^C_-purge
MM_0514 退出 ^C^C_quit
MM_0516 重做 ^C^C_mredo 1
MM_0517 剪切 ^C^C_cutclip
MM_0518 复制 ^C^C_copyclip
MM_0519 复制基点 ^C^C_copybase
MM_0520 复制链接 ^C^C_copylink
MM_0521 粘贴 ^C^C_pasteclip
MM_0522 粘贴为块 ^C^C_pasteblock
MM_0523 粘贴原点 ^C^C_pasteorig
MM_0524 选择性粘贴 ^C^C_pastespec
MM_0525 OLE 链接 ^C^C_olelinks
MM_0526 重画 '_redraw
MM_0527 全部重画 '_redrawall
MM_0529 全部重生成 ^C^C_regenall
MM_0530 缩放 '_zoom
MM_0531 平移 '_pan
MM_0533 平铺模式 ^C^C_tilemode
MM_0534 模型空间 ^C^C_mspace
MM_0535 点空间 ^C^C_pspace
MM_0536 视口 ^C^C_-vports
MM_0537 多视图 ^C^C_mview
MM_0538 动态视图 ^C^C_view
MM_0539 视点 ^C^C_vpoint
MM_0540 平面 ^C^C_plan
MM_0541 -视点 ^C^C_-vpoint
MM_0542 三维观察 '_3dorbit
MM_0544 着色 ^C^C_-shademode
MM_0545 渲染 ^C^C_render
MM_0546 场景 ^C^C_scene
MM_0547 光源 ^C^C_light
MM_0548 贴图 ^C^C_setuv
MM_0550 渲染环境 ^C^C_renderenvironment
MM_0551 Lsnew ^C^C_lsnew
MM_0552 Lsedit ^C^C_lsedit
MM_0553 Lslib ^C^C_lslib
MM_0554 Rmat ^C^C_rmat
MM_0555 Matlib ^C^C_matlib
MM_0556 Rpref ^C^C_rpref
MM_0557 统计信息 ^C^C_stats
MM_0558 UCS 图标 ^C^C_ucsicon
MM_0559 属性显示 '_attdisp
MM_0560 文字字符串 '_textscr
MM_0561 工具栏 ^C^C_toolbar
MM_0562 动态插入 ^C^C_insert
MM_0563 外部参照 ^C^C_xref
MM_0564 图像 ^C^C_image
MM_0565 3DSin ^C^C_3dsin
MM_0566 ACISin ^C^C_acisin
MM_0567 DXBin ^C^C_dxbin
MM_0568 WMFin ^C^C_wmfin
MM_0570 插入对象 ^C^C_insertobj
MM_0572 颜色 '_color
MM_0573 线型 '_linetype
MM_0574 样式 '_style
MM_0575 Ddim '_dimstyle
MM_0576 点类型 '_ptype
MM_0577 Mlstyle ^C^C_mlstyle
MM_0578 单位 '_units
MM_0579 厚度 '_thickness
MM_0580 界限 '_limits
MM_0581 Ddrename ^C^C_rename
MM_0582 拼写 '_spell
MM_0583 绘图次序 ^C^C_draworder
MM_0584 距离 '_dist
MM_0586 质量特性 ^C^C_massprop
MM_0588 ID '_id
MM_0591 Setvar '_setvar
MM_0592 Appload ^C^C_appload
MM_0593 脚本 '_script
MM_0594 Saveimg ^C^C_saveimg
MM_0595 重放 ^C^C_replay
MM_0597 栅格 '_+dsettings 0
MM_0598 极轴 '_+dsettings 1
MM_0599 Ucsp ^C^C_+ucsman 1
MM_0600 Ucsman ^C^C_+ucsman 0
MM_0602 夹点 ^C^C_+options 7
MM_0603 选择 ^C^C_+options 7
MM_0605 数字化仪 ^C^C_tablet
MM_0606 Cuiload ^C^C_cuiload
MM_0607 选项 ^C^C_options
MM_0610 构造线 ^C^C_xline
MM_0611 多线 ^C^C_mline
MM_0612 PLINE ^C^C_pline
MM_0613 3Dpoly ^C^C_3dpoly
MM_0615 矩形 ^C^C_rectang
MM_0616 圆弧 ^C^C_arc
MM_0617 ^C^C_circle
MM_0620 椭圆 ^C^C_ellipse
MM_0621 ^C^C_block
MM_0623 附着定义 ^C^C_attdef
MM_0624 *^C^C_point
MM_0627 图案填充 ^C^C_hatch
MM_0628 边界 ^C^C_boundary
MM_0630 多行文字 ^C^C_mtext
MM_0631 动态文字 ^C^C_dtext
MM_0632 SURFACES $S=ACAD.3D
MM_0633 SOLIDS $S=ACAD.101_SOLIDS
MM_0644 干涉 ^C^C_interfere
MM_0645 Soldraw ^C^C_soldraw
MM_0646 Solview ^C^C_solview
MM_0647 Solprof ^C^C_solprof
MM_0650 弧长 ^C^C_dimarc
MM_0658 公差 ^C^C_tolerance
MM_0659 圆心 ^C^C_dimcenter
MM_0660 编辑标注 ^C^C_dimedit
MM_0661 标注文字 ^C^C_dimtedit
MM_0663 标注样式 ^C^C_-dimstyle
MM_0664 更新 ^C^C_dim _update
MM_0665 特性 ^C^C_properties
MM_0666 特性匹配 '_matchprop
MM_0667 外部参照绑定 ^C^C_xbind
MM_0668 图像调整 ^C^C_imageadjust
MM_0669 图像质量 ^C^C_imagequality
MM_0670 透明 ^C^C_transparency
MM_0671 图像边框 ^C^C_imageframe
MM_0672 Xclip ^C^C_xclip
MM_0673 图像剪裁 ^C^C_imageclip
MM_0674 填充图案编辑 ^C^C_hatchedit
MM_0675 Pedit ^C^C_pedit
MM_0676 编辑样条 ^C^C^R_splinedit
MM_0677 Mledit ^C^C_mledit
MM_0678 Attedit ^C^C_attedit
MM_0679 -改属性 ^C^C_-attedit
MM_0680 文字编辑 ^C^C_textedit
MM_0681 删除 ^C^C_erase
MM_0685 阵列 ^C^C_-array
MM_0686 参照编辑 ^C^C_refedit;
MM_0697 3Darray ^C^C_3darray
MM_0698 三维镜像 ^C^C_mirror3d
MM_0699 三维旋转 ^C^C_rotate3d
MM_0703 交集 ^C^C_intersect
MM_0705 帮助 '_help
MM_0707 浏览器 ^C^C_browser ;
MM_0709 实体: ^C^C_solid
MM_0710 3Dface ^C^C_3dface
MM_0711 三维对象: $I=ACAD.image_3dobjects $I=ACAD.*
MM_0712 边: ^C^C_edge
MM_0713 三维网格: ^C^C_3dmesh
MM_0714 旋转曲面: ^C^C_revsurf
MM_0715 平移曲面: ^C^C_tabsurf
MM_0716 直纹曲面: ^C^C_rulesurf
MM_0717 边界曲面: ^C^C_edgesurf
MM_0718 Surftb1: '_surftab1
MM_0719 Surftb2: '_surftab2
MM_0720 多段变量 $I=ACAD.image_poly $I=*
MM_0721 三维阵列: ^C^C_3darray
MM_0722 矩形 _r
MM_0723 极轴 _p
MM_0724 _y
MM_0725 _n
MM_0726 三维面: ^C^C_3dface
MM_0727 不可见 _i
MM_0728 显示边 ^P(setvar "splframe" 1)(ai_showedge_alert) ^P
MM_0729 隐藏边 ^P(setvar "splframe" 0)(ai_hideedge_alert) ^P
MM_0732 三维多段线: ^C^C_3dpoly
MM_0733 关闭 _c
MM_0735 @ @\
MM_0736 圆弧: ^C^C_arc
MM_0737 三点 \\
MM_0738 起,中,端 \_c \
MM_0739 起,中,角 \_c \_a
MM_0740 起,中,长 \_c \_l
MM_0741 起,端,角 \_e \_a
MM_0742 起,端,向 \_e \_d
MM_0743 起,端,半 \_e \_r
MM_0744 中,起,端 _c \\
MM_0745 中,起,角 _c \\_a
MM_0746 中,起,长 _c \\_l
MM_0747 弧继续: ^C^C_arc ;
MM_0748 线继续: ^C^C_line ;
MM_0749 面积: ^C^C_area
MM_0750 对象 _o
MM_0752 差集 _s
MM_0753 边界: ^C^C_boundary
MM_0754 阵列: ^C^C_-array
MM_0759 属性显示: '_attdisp
MM_0760 普通 _n
MM_0761 _on
MM_0762 _off
MM_0763 -改属性: ^C^C_-attedit
MM_0764 编辑属性: ^C^C_attedit
MM_0767 _v
MM_0768 位置 _p
MM_0769 高度 _h
MM_0770 角度 _a
MM_0771 样式 _s
MM_0772 图层 _l
MM_0773 颜色 _c
MM_0774 下一步 _n
MM_0775 颜色 (acad_colordlg 256)
MM_0776 核查: ^C^C_audit
MM_0779 核查当前: '_auditctl
MM_0780 打断: ^C^C_break
MM_0781 第一条 _f
MM_0783 选第二点 \\
MM_0784 选择点 \@\
MM_0785 选择两点 \_first \
MM_0786 选第一点 \_first \@\
MM_0787 倒角: ^C^C_chamfer
MM_0788 多段线 _p
MM_0789 距离 _d \\_chamfer
MM_0790 距离 = 0 _d 0 0 _chamfer
MM_0791 角度 _a \\ _chamfer
MM_0792 修剪 _t
MM_0793 不修剪 _n
MM_0794 方式 _m
MM_0795 距离 _d
MM_0797 圆: ^C^C_circle
MM_0798 圆心,弧度 \\
MM_0799 圆心,直径 \_d
MM_0800 两点 _2p \
MM_0801 三点 _3p \\
MM_0802 TTR _ttr
MM_0803 切 切 切 _3p _tan \_tan \_tan \
MM_0804 复制半径: ^C^C_circlerad '_cal rad;
MM_0805 复制: ^C^C_copy
MM_0806 多个 _m
MM_0807 对齐标注: ^C^C_dimaligned
MM_0808 文字 _t
MM_0810 角度标注: ^C^C_dimangular
MM_0813 编辑标注: ^C^C_dimedit
MM_0814 默认 _h
MM_0815 新建 _n
MM_0816 旋转 _r
MM_0817 倾斜 _o
MM_0818 线性标注: ^C^C_dimlinear
MM_0819 水平 _h
MM_0820 垂直 _v
MM_0823 坐标标注 ^C^C_dimordinate
MM_0824 Xdatum _x
MM_0825 Ydatum _y
MM_0826 标注替代: ^C^C_dimoverride
MM_0827 清除 _c
MM_0828 标注文字: ^C^C_dimtedit
MM_0829 _l
MM_0830 _r
MM_0833 定数等分: ^C^C_divide
MM_0834 _b
MM_0837 绘图次序: ^C^C_draworder
MM_0838 _a
MM_0839 _u
MM_0840 _f
MM_0841 _b
MM_0842 动态文字: ^C^C_dtext
MM_0843 多行文字: ^C^C_mtext
MM_0845 对正 _j
MM_0846 对齐 _a
MM_0847 居中 _c
MM_0848 调整 _f
MM_0849 中间 _m
MM_0851 左上 _tl
MM_0852 中上 _tc
MM_0853 右上 _tr
MM_0854 左中 _ml
MM_0855 正中 _mc
MM_0856 右中 _mr
MM_0857 左下 _bl
MM_0858 中下 _bc
MM_0859 右下 _br
MM_0860 样式: '_style
MM_0861 三维观察: '_3dorbit
MM_0862 动态写块: ^C^C_dview ;
MM_0863 相机 _ca
MM_0864 目标 _ta
MM_0866 _po
MM_0867 平移 _pa
MM_0868 缩放 _z
MM_0869 扭曲 _tw
MM_0870 剪裁 _cl
MM_0871 隐藏 _h
MM_0878 椭圆: ^C^C_ellipse
MM_0879 圆弧 _a
MM_0881 旋转 _r
MM_0882 多段椭圆: '_pellipse
MM_0883 删除: ^C^C_erase
MM_0884 Oops: ^C^C_oops
MM_0885 延伸: ^C^C_extend
MM_0886 _e
MM_0887 延伸 _e
MM_0888 不延伸 _n
MM_0889 工程 _p
MM_0890 _n
MM_0891 UCS _u
MM_0892 视图 _v
MM_0894 拉伸: ^C^C^R_extrude _MO _SO;
MM_0895 路径 _p
MM_0896 圆角: ^C^C_fillet
MM_0898 半径 _r
MM_0899 半径 0 _r 0
MM_0902 图像剪裁: ^C^C_imageclip
MM_0903 新建 ;
MM_0906 删除 _d
MM_0907 多边形 _p
MM_0908 矩形 ;
MM_0909 图像质量: ^C^C_imagequality
MM_0910 _h
MM_0911 草稿 _d
MM_0912 引线: ^C^C_qleader
MM_0913 格式 _f
MM_0915 拉长: ^C^C_lengthen
MM_0916 差值 _de
MM_0917 百分比 _p
MM_0918 总共 _t
MM_0919 动态 _dy
MM_0921 长度 _l
MM_0923 直线: ^C^C_line
MM_0924 一条直线: ^C^C_line \\;
MM_0925 连续 ;
MM_0930 特性匹配: '_matchprop
MM_0931 设置 _s
MM_0932 定距等分: ^C^C_measure
MM_0936 镜像: ^C^C_mirror
MM_0937 三维镜像: ^C^C_mirror3d
MM_0940 镜像文字: '_mirrtext
MM_0942 图元 _e
MM_0943 Z 轴 _z
MM_0944 视图 _v
MM_0945 XY _xy
MM_0946 YZ _yz
MM_0947 ZX _zx
MM_0948 三点 _3
MM_0949 多线: ^C^C_mline
MM_0951 比例 _s
MM_0952 样式 _st
MM_0956 多重引线样式: ^C^C_mlstyle
MM_0957 编辑多线: ^C^C_mledit
MM_0958 多视图: ^C^C_mview
MM_0961 着色打印 _s
MM_0963 2 2
MM_0964 3 3
MM_0965 4 4
MM_0966 恢复 _r
MM_0967 偏移: ^C^C_offset
MM_0968 通过 _t
MM_0971 对象捕捉: '_-osnap
MM_0976 扩展名 _ext
MM_0987 点编辑: ^C^C_pedit
MM_0988 打断 _b
MM_0990 下/十进制 _d
MM_0991 编辑顶点 _e
MM_0993 开始 _g
MM_0994 插入 _i
MM_0995 合并 _j
MM_0996 生成线型 _l
MM_0997 移动/打开 _m
MM_0998 下一/打开 _n
MM_0999 打开 _o
MM_1000 上一个 _p
MM_1001 重生成/重画 _r
MM_1002 重新显示 _re
MM_1003 样条曲线/直线 _s
MM_1004 切点 _t
MM_1005 放弃/向上 _u
MM_1006 宽度 _w
MM_1009 平面: ^C^C_plan
MM_1010 当前 _c
MM_1011 UCS _u
MM_1012 世界 _w
MM_1013 跟随: '_ucsfollow
MM_1014 多段线: ^C^C_pline
MM_1017 半宽 _h
MM_1022 居中 _ce
MM_1023 关闭 _cl
MM_1024 方向 _d \
MM_1025 直线 _l
MM_1027 第二点 _s \
MM_1029 点: *^C^C_point
MM_1030 点类型: '_ptype
MM_1031 点标注模式: '_pdmode
MM_1032 点标注尺寸: '_pdsize
MM_1033 多边形: ^C^C_polygon
MM_1035 内接 _i
MM_1036 外切 _c
MM_1037 清理: ^C^C_-purge
MM_1038 _b
MM_1039 标注样式 _d
MM_1040 图层 _la
MM_1041 线型 _lt
MM_1042 _sh
MM_1043 样式 _st
MM_1044 全部 _a
MM_1047 旋转: ^C^C^R_revolve _Mo _SO;
MM_1049 X 轴 _x
MM_1050 Y 轴 _y
MM_1051 旋转: ^C^C_rotate
MM_1053 三维旋转: ^C^C_rotate3d
MM_1054 三维旋转: ^C^C_rotate3d
MM_1061 两点 _2p
MM_1062 比例: ^C^C_scale
MM_1064 截面: ^C^C_section
MM_1071 三点 _3p
MM_1072 设置变量: '_setvar
MM_1073 列表 ?
MM_1074 * *
MM_1075 着色: ^C^C_-shademode
MM_1076 2D 线框 _2
MM_1077 3D 线框 _3
MM_1078 隐藏 _h
MM_1079 平面着色 _f
MM_1080 _g
MM_1081 平面 + 线框 _l
MM_1082 体 + 线框 _o
MM_1083 着色漫反 '_shadedif
MM_1084 重生成: ^C^C_regen
MM_1085 剖切: ^C^C_slice
MM_1093 样条曲线: ^C^C^R_spline
MM_1096 拟合公差 _f
MM_1097 样条框架 '_splframe
MM_1098 样条曲线编辑: ^C^C^R_splinedit
MM_1099 调整 _fit
MM_1100 添加 _add
MM_1101 删除 _delete
MM_1103 清理 _purge
MM_1104 切点 _tangents
MM_1105 公差 _tolerance
MM_1108 移动顶点 _v
MM_1111 选择 _s
MM_1112 优化 _r
MM_1113 添加点 _a
MM_1114 标高阶数 _e
MM_1115 权值 _w
MM_1116 反转 _e
MM_1119 数字化仪: ^C^C_tablet
MM_1120 校准 _cal
MM_1121 配置 _cfg 4 \\\25 9 \\\11 9 \\\9 13 \\\25 7 _y \\_y
MM_1122 重配置 _cfg 4 _y \\\;;\\\;;\\\;;\\\;;_y \\
MM_1123 另行配置 _cfg 4 _y \\\25 9 \\\11 9 \\\9 13 \\\25 7 _y \\
MM_1128 正交 _o
MM_1129 仿射 _a
MM_1130 投影 _p
MM_1131 修剪: ^C^C_trim
MM_1140 UCS: ^C^C_ucs
MM_1141 原点 _o
MM_1144 X _x
MM_1145 Y _y
MM_1146 Z _z
MM_1151 保存 _s
MM_1155 UCS 管理器: ^C^C_+ucsman 0
MM_1156 UCS 点: ^C^C_+ucsman 1
MM_1158 UCS 图标: ^C^C_ucsicon
MM_1163 原点 _or
MM_1164 非原点 _n
MM_1165 特性 _p
MM_1166 视图: '_-view
MM_1167 列表 _?
MM_1171 窗口 _w
MM_1172 平移: '_pan
MM_1173 缩放: '_zoom
MM_1174 动态视图: ^C^C_view
MM_1176 动态视图: ^C^C_dview
MM_1177 视口: ^C^C_vports
MM_1178 布局 ^C^C^P(ai_tiledvp_chk T) ^P
MM_1183 单个 _s
MM_1184 ? ?
MM_1191 下方 _b
MM_1194 -视点: ^C^C_-vpoint
MM_1196 ;
MM_1197 俯视 _non *0,0,1
MM_1198 仰视 _non *0,0,-1
MM_1199 左视 _non *-1,0,0
MM_1200 右视 _non *1,0,0
MM_1201 前视 _non *0,-1,0
MM_1202 后视 _non *0,1,0
MM_1203 西南等轴 _non *-1,-1,1
MM_1204 东南等轴 _non *1,-1,1
MM_1205 东北等轴 _non *1,1,1
MM_1206 西北等轴 _non *-1,1,1
MM_1212 布局: ^C^C^P(ai_tiledvp_chk T) ^P
MM_1217 单个 _si
MM_1228 X 剪裁: ^C^C_xclip
MM_1231 剪裁深度 _c
MM_1237 构造线: ^C^C_xline
MM_1241 平分 _b
MM_1242 偏移 _o
MM_1243 射线: ^C^C_ray
MM_1245 实时 ;
MM_1248 动态 _d
MM_1251 放大 2x
MM_1252 缩小 .5x
MM_1254 范围 _e
MM_1255 TABLET2CC_regen ^C^C_regen
MM_1256 TABLET2'_zoom _e '_zoom _e
MM_1257 TABLET2'_zoom _a '_zoom _a
MM_1258 TABLET2'_zoom _w '_zoom _w
MM_1259 TABLET2'_zoom _p '_zoom _p
MM_1260 TABLET2CC_box ^C^C_box
MM_1261 TABLET2CC_mtext ^C^C_mtext
MM_1262 TABLET2CC_circle ^C^C_circle
MM_1263 TABLET2CC_line ^C^C_line
MM_1264 TABLET2CC ^C^C
MM_1265 TABLET2CC_regenall ^C^C_regenall
MM_1266 TABLET2'_dsviewer '_dsviewer
MM_1267 TABLET2'_zoom _c '_zoom _c
MM_1268 TABLET2'_zoom .5x '_zoom .5x
MM_1269 TABLET2'_zoom 2x '_zoom 2x
MM_1270 TABLET2CC_sphere ^C^C_sphere
MM_1271 TABLET2CC_dtext ^C^C_dtext
MM_1272 TABLET2CC_donut ^C^C_donut
MM_1273 TABLET2CC_ray ^C^C_ray
MM_1274 TABLET2'_zoom ; '_zoom ;
MM_1275 TABLET2'_attdisp '_attdisp
MM_1276 TABLET2CC_ucsicon ^C^C_ucsicon
MM_1277 TABLET2CC_tilemode 1 ^C^C_tilemode 1
MM_1278 TABLET2CC^P_mspace ^P ^C^C^P_mspace ^P
MM_1279 TABLET2CC^P_pspace ^P ^C^C^P_pspace ^P
MM_1280 TABLET2CC_cylinder ^C^C_cylinder
MM_1281 TABLET2CC_solid ^C^C_solid
MM_1282 TABLET2CC_spline ^C^C^R_spline
MM_1283 TABLET2CC_xline ^C^C_xline
MM_1285 TABLET2CC_render ^C^C_render
MM_1286 TABLET2CC_hide ^C^C_hide
MM_1287 TABLET2CC_vports ^C^C_vports
MM_1289 TABLET2CC_view ^C^C_view
MM_1290 TABLET2CC_cone ^C^C_cone
MM_1291 TABLET2CC_3dface ^C^C_3dface
MM_1292 TABLET2CC_ellipse ^C^C_ellipse
MM_1293 TABLET2CC_mline ^C^C_mline
MM_1295 TABLET2CC_scene ^C^C_scene
MM_1296 TABLET2CC_shade ^C^C_shade
MM_1297 TABLET2CC_plan ^C^C_plan
MM_1298 TABLET2CC_-vpoint ^C^C_-vpoint
MM_1299 TABLET2CC_vpoint ^C^C_vpoint
MM_1300 TABLET2CC_wedge ^C^C_wedge
MM_1301 三维曲面... $I=ACAD.image_3dobjects $I=ACAD.*
MM_1302 TABLET2CC_block ^C^C_block
MM_1303 TABLET2CC_pline ^C^C_pline
MM_1304 TABLET2'_pan '_pan
MM_1305 TABLET2CC_light ^C^C_light
MM_1306 TABLET2CC_shademode ^C^C_shademode
MM_1307 TABLET2'_-view _nwiso '_-view _nwiso
MM_1308 TABLET2'_-view _back '_-view _back
MM_1309 TABLET2'_-view _neiso '_-view _neiso
MM_1310 TABLET2CC_torus ^C^C_torus
MM_1311 TABLET2CC_revsurf ^C^C_revsurf
MM_1312 TABLET2*CC_point *^C^C_point
MM_1313 TABLET2CC_3dpoly ^C^C_3dpoly
MM_1315 TABLET2CC_rmat ^C^C_rmat
MM_1316 TABLET2CC_renderenvironment ^C^C_renderenvironment
MM_1317 TABLET2'_-view _left '_-view _left
MM_1318 TABLET2'_-view _top '_-view _top
MM_1319 TABLET2'_-view _right '_-view _right
MM_1320 TABLET2CC_extrude ^C^C^R_extrude _MO _SO;
MM_1321 TABLET2CC_tabsurf ^C^C_tabsurf
MM_1322 TABLET2CC_hatch ^C^C_hatch
MM_1323 TABLET2CC_polygon ^C^C_polygon
MM_1325 TABLET2CC_matlib ^C^C_matlib
MM_1327 TABLET2'_-view _swiso '_-view _swiso
MM_1328 TABLET2'_-view _front '_-view _front
MM_1329 TABLET2'_-view _seiso '_-view _seiso
MM_1330 TABLET2CC_revolve ^C^C^R_revolve _MO _SO;
MM_1331 TABLET2CC_rulesurf ^C^C_rulesurf
MM_1332 TABLET2CC_boundary ^C^C_boundary
MM_1333 TABLET2CC_rectang ^C^C_rectang
MM_1334 TABLET2'_redrawall '_redrawall
MM_1335 TABLET2CC_setuv ^C^C_setuv
MM_1336 TABLET2CC_rpref ^C^C_rpref
MM_1337 TABLET2CC_toolbar ^C^C_toolbar
MM_1338 TABLET2'_-view _bottom '_-view _bottom
MM_1339 TABLET2'_3dorbit '_3dorbit
MM_1340 TABLET2CC_qleader ^C^C_qleader
MM_1341 TABLET2CC_edgesurf ^C^C_edgesurf
MM_1342 TABLET2CC_region ^C^C_region
MM_1343 TABLET2CC_arc ^C^C_arc
MM_1345 TABLET3<<135 <<135
MM_1347 TABLET3<<90 <<90
MM_1349 TABLET3<<45 <<45
MM_1351 TABLET3<<180 <<180
MM_1353 TABLET3<\ <\
MM_1355 TABLET3<<0 <<0
MM_1357 TABLET3<<225 <<225
MM_1359 TABLET3<<270 <<270
MM_1361 TABLET3<<315 <<315
MM_1363 TABLET3^H ^H
MM_1369 TABLET37/8\ 7/8\
MM_1371 TABLET3/16\ /16\
MM_1373 TABLET3/32\ /32\
MM_1375 TABLET31/2\ 1/2\
MM_1377 TABLET35/8\ 5/8\
MM_1379 TABLET33/4\ 3/4\
MM_1381 TABLET31/8\ 1/8\
MM_1383 TABLET31/4\ 1/4\
MM_1385 TABLET33/8\ 3/8\
MM_1387 TABLET3-\ -\
MM_1389 TABLET3/\ /\
MM_1391 TABLET3X\ X\
MM_1393 TABLET3@\ @\
MM_1395 TABLET3'\ '\
MM_1397 TABLET3"\ "\
MM_1399 TABLET37\ 7\
MM_1401 TABLET38\ 8\
MM_1403 TABLET39\ 9\
MM_1405 TABLET34\ 4\
MM_1407 TABLET35\ 5\
MM_1409 TABLET36\ 6\
MM_1411 TABLET31\ 1\
MM_1413 TABLET32\ 2\
MM_1415 TABLET33\ 3\
MM_1417 TABLET30\ 0\
MM_1419 TABLET3.\ .\
MM_1421 TABLET3,\ ,\
MM_1423 TABLET4CC_insertobj ^C^C_insertobj
MM_1424 TABLET4CC_import ^C^C_import
MM_1425 TABLET4CC_image ^C^C_image
MM_1426 TABLET4CC_xref ^C^C_xref
MM_1427 TABLET4CC_insert ^C^C_insert
MM_1428 TABLET4CC_area ^C^C_area
MM_1429 TABLET4'_dist '_dist
MM_1430 TABLET4CC_draworder ^C^C_draworder
MM_1431 TABLET4'_spell '_spell
MM_1432 TABLET4CC_u ^C^C_u
MM_1433 TABLET4CC_cutclip ^C^C_cutclip
MM_1434 TABLET4CC_copyclip ^C^C_copyclip
MM_1435 TABLET4_parallel _parallel
MM_1436 TABLET4_endpoint _endpoint
MM_1437 TABLET4_midpoint _midpoint
MM_1438 TABLET4_intersect _intersect
MM_1439 TABLET4_appint _appint
MM_1440 TABLET4_center _center
MM_1441 TABLET4_quadrant _quadrant
MM_1442 TABLET4_tangent _tangent
MM_1443 TABLET4CC_new ^C^C_new
MM_1444 TABLET4CC_open ^C^C_open
MM_1445 TABLET4'_ptype '_ptype
MM_1446 TABLET4'_style '_style
MM_1447 TABLET4'_linetype '_linetype
MM_1448 TABLET4'_color '_color
MM_1449 TABLET4'_layer '_layer
MM_1450 TABLET4CC_massprop ^C^C_massprop
MM_1451 TABLET4CC_list ^C^C_list
MM_1452 TABLET4'_id '_id
MM_1453 TABLET4'_setvar '_setvar
MM_1454 TABLET4CC_mredo 1 ^C^C_mredo 1
MM_1455 TABLET4CC_pasteclip ^C^C_pasteclip
MM_1456 TABLET4CC_erase ^C^C_erase
MM_1457 TABLET4_from _from
MM_1458 TABLET4_perpend _perpend
MM_1459 TABLET4_insert _insert
MM_1460 TABLET4_node _node
MM_1461 TABLET4_nearest _nearest
MM_1462 TABLET4_extension _extension
MM_1463 TABLET4_none _none
MM_1464 TABLET4'_+dsettings 2 '_+dsettings 2
MM_1465 TABLET4CC_qsave ^C^C_qsave
MM_1467 TABLET4CC_rename ^C^C_rename
MM_1468 TABLET4'_limits '_limits
MM_1469 TABLET4'_thickness '_thickness
MM_1470 TABLET4'_units '_units
MM_1471 TABLET4CC_mlstyle ^C^C_mlstyle
MM_1472 TABLET4CC_saveimg ^C^C_saveimg
MM_1473 TABLET4CC_replay ^C^C_replay
MM_1474 TABLET4'_script '_script
MM_1475 TABLET4CC_appload ^C^C_appload
MM_1476 TABLET4CC_measure ^C^C_measure
MM_1477 TABLET4CC_divide ^C^C_divide
MM_1479 TABLET4\(M=\)(if,\((eq,\)(substr,$(getvar,cmdnames),1,4),GRIP),_copy,CC_copy) $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_copy,^C^C_copy)
MM_1480 TABLET4\(M=\)(if,\((eq,\)(substr,$(getvar,cmdnames),1,4),GRIP),_mirror,CC_mirror) $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_mirror,^C^C_mirror)
MM_1481 TABLET4CC_offset ^C^C_offset
MM_1482 TABLET4CC_array ^C^C_array
MM_1483 TABLET4\(M=\)(if,\((eq,\)(substr,$(getvar,cmdnames),1,4),GRIP),_move,CC_move) $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_move,^C^C_move)
MM_1484 TABLET4\(M=\)(if,\((eq,\)(substr,$(getvar,cmdnames),1,4),GRIP),_rotate,CC_rotate) $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_rotate,^C^C_rotate)
MM_1485 TABLET4\(M=\)(if,\((eq,\)(substr,$(getvar,cmdnames),1,4),GRIP),_scale,CC_scale) $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_scale,^C^C_scale)
MM_1486 TABLET4\(M=\)(if,\((eq,\)(substr,$(getvar,cmdnames),1,4),GRIP),_stretch,CC_stretch) $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_stretch,^C^C_stretch)
MM_1487 TABLET4CC_saveas ^C^C_saveas
MM_1488 TABLET4CC_pagesetup ^C^C_pagesetup
MM_1489 TABLET4CC_qdim ^C^C_qdim
MM_1490 TABLET4CC_qleader ^C^C_qleader
MM_1491 TABLET4CC_dimordinate ^C^C_dimordinate
MM_1492 TABLET4CC_dimaligned ^C^C_dimaligned
MM_1493 TABLET4CC_dimlinear ^C^C_dimlinear
MM_1494 TABLET4CC_ucs ^C^C_ucs
MM_1495 TABLET4CC_+ucsman 0 ^C^C_+ucsman 0
MM_1496 TABLET4CC_+ucsman 1 ^C^C_+ucsman 1
MM_1497 TABLET4'_dsettings '_dsettings
MM_1498 TABLET4CC_dbconnect ^C^C_dbconnect
MM_1500 TABLET4CC_lengthen ^C^C_lengthen
MM_1501 TABLET4CC_trim ^C^C_trim
MM_1502 TABLET4CC_extend ^C^C_extend
MM_1503 TABLET4CC_break ^C^C_break
MM_1504 TABLET4CC_chamfer ^C^C_chamfer
MM_1505 TABLET4CC_fillet ^C^C_fillet
MM_1506 TABLET4CC_3darray ^C^C_3darray
MM_1507 TABLET4CC_mirror3d ^C^C_mirror3d
MM_1508 TABLET4CC_rotate3d ^C^C_rotate3d
MM_1509 TABLET4CC_export ^C^C_export
MM_1510 TABLET4CC_plot ^C^C_plot
MM_1511 TABLET4CC_tolerance ^C^C_tolerance
MM_1512 TABLET4CC_dimcenter ^C^C_dimcenter
MM_1513 TABLET4CC_dimangular ^C^C_dimangular
MM_1514 TABLET4CC_dimdiameter ^C^C_dimdiameter
MM_1515 TABLET4CC_dimradius ^C^C_dimradius
MM_1516 TABLET4CC_tablet ^C^C_tablet
MM_1517 TABLET4CC_group ^C^C_group
MM_1518 TABLET4CC_qselect ^C^C_qselect
MM_1519 TABLET4CC_find ^C^C_find
MM_1520 TABLET4'_adcenter '_adcenter
MM_1522 TABLET4CC_align ^C^C_align
MM_1523 TABLET4CC_union ^C^C_union
MM_1524 TABLET4CC_subtract ^C^C_subtract
MM_1525 TABLET4CC_intersect ^C^C_intersect
MM_1526 TABLET4CC_xclip ^C^C_xclip
MM_1527 TABLET4CC_xbind ^C^C_xbind
MM_1528 TABLET4CC_imageadjust ^C^C_imageadjust
MM_1529 TABLET4CC_transparency ^C^C_transparency
MM_1530 TABLET4CC_imageclip ^C^C_imageclip
MM_1531 TABLET4CC_preview ^C^C_preview
MM_1532 TABLET4CC_purge ^C^C_purge
MM_1533 TABLET4CC_dimedit ^C^C_dimedit
MM_1534 TABLET4CC_dimtedit ^C^C_dimtedit
MM_1535 TABLET4CC_-dimstyle _apply ^C^C_-dimstyle _apply
MM_1536 TABLET4CC_dimoverride ^C^C_dimoverride
MM_1537 TABLET4'_dimstyle '_dimstyle
MM_1538 TABLET4'_help '_help
MM_1539 TABLET4CC_browser ; ^C^C_browser ;
MM_1540 TABLET4CC_cuiload ^C^C_cuiload
MM_1541 TABLET4CC_options ^C^C_options
MM_1542 TABLET4CC_properties ^C^C_properties
MM_1544 TABLET4'_matchprop '_matchprop
MM_1546 TABLET4CC_hatchedit ^C^C_hatchedit
MM_1547 TABLET4CC_pedit ^C^C_pedit
MM_1548 TABLET4CC_splinedit ^C^C^R_splinedit
MM_1549 TABLET4CC_mledit ^C^C_mledit
MM_1550 TABLET4CC_attedit ^C^C_attedit
MM_1551 TABLET4CC_textedit ^C^C_textedit
MM_1552 TABLET4CC_explode ^C^C_explode
MM_1553 TABLET4CC_stylesmanager ^C^C_stylesmanager
MM_1554 TABLET4CC_exit ^C^C_exit
MM_1556 CTRL+R ^V
MM_SP_02 Ctrl + Home ^C^C_gotostart
MM_1557 CTRL+H '_setvar;pickstyle;$M=$(if,$(eq,$(getvar,pickstyle),0),1,$(if,$(eq,$(getvar,pickstyle),1),0,$(if,$(eq,$(getvar,pickstyle),2),3,2)))
MM_1615 切换正交模式 ^P'_.orthomode $M=$(if,$(and,$(getvar,orthomode),1),$(-,$(getvar,orthomode),1),$(+,$(getvar,orthomode),1))
MM_1616 切换对象捕捉模式 ^P'_.osmode $M=$(if,$(and,$(getvar,osmode),16384),$(-,$(getvar,osmode),16384),$(+,$(getvar,osmode),16384))
MM_1617 切换极轴模式 ^P'_.autosnap $M=$(if,$(and,$(getvar,autosnap),8),$(-,$(getvar,autosnap),8),$(+,$(getvar,autosnap),8))
MM_1618 强制对象捕捉 ^P$M=$(if,$(and,$(getvar,osmode),16384),'_.osmode $(-,$(getvar,osmode),16384) )$(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1619 切换对象捕捉追踪模式 ^P$M=$(if,$(and,$(getvar,autosnap),16),,$(if,$(and,$(getvar,osmode),16384),'_.osmode $(-,$(getvar,osmode),16384) ))'_.autosnap $(if,$(and,$(getvar,autosnap),16),$(-,$(getvar,autosnap),16),$(+,$(getvar,autosnap),16))
MM_1620 对象捕捉替代: 端点 ^P'_.osmode 1 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1621 对象捕捉替代: 中点 ^P'_.osmode 2 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1622 对象捕捉替代: 圆心 ^P'_.osmode 4 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1623 禁用所有捕捉和追踪 ^P'_.orthomode 0 '_.osmode 0 '_.snapmode 0 '_.autosnap 0
MM_1625 切换对象捕捉模式 ^P'_.osmode $M=$(if,$(and,$(getvar,osmode),16384),$(-,$(getvar,osmode),16384),$(+,$(getvar,osmode),16384))
MM_1626 切换极轴模式 ^P'_.autosnap $M=$(if,$(and,$(getvar,autosnap),8),$(-,$(getvar,autosnap),8),$(+,$(getvar,autosnap),8))
MM_1627 强制对象捕捉 ^P$M=$(if,$(and,$(getvar,osmode),16384),'_.osmode $(-,$(getvar,osmode),16384) )$(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1628 切换对象捕捉追踪模式 ^P$M=$(if,$(and,$(getvar,autosnap),16),,$(if,$(and,$(getvar,osmode),16384),'_.osmode $(-,$(getvar,osmode),16384) ))'_.autosnap $(if,$(and,$(getvar,autosnap),16),$(-,$(getvar,autosnap),16),$(+,$(getvar,autosnap),16))
MM_1629 对象捕捉替代: 端点 ^P'_.osmode 1 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1630 对象捕捉替代: 中点 ^P'_.osmode 2 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1631 对象捕捉替代: 圆心 ^P'_.osmode 4 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1632 禁用所有捕捉和追踪 ^P'_.orthomode 0 '_.osmode 0 '_.snapmode 0 '_.autosnap 0
MM_1633 切换对象捕捉模式 ^P'_.osmode $M=$(if,$(and,$(getvar,osmode),16384),$(-,$(getvar,osmode),16384),$(+,$(getvar,osmode),16384))
MM_1634 切换正交模式 ^P'_.orthomode $M=$(if,$(and,$(getvar,orthomode),1),$(-,$(getvar,orthomode),1),$(+,$(getvar,orthomode),1))
MM_1635 切换捕捉模式 ^P'_.snapmode $M=$(if,$(and,$(getvar,snapmode),1),$(-,$(getvar,snapmode),1),$(+,$(getvar,snapmode),1))
MM_1636 切换极轴模式 ^P'_.autosnap $M=$(if,$(and,$(getvar,autosnap),8),$(-,$(getvar,autosnap),8),$(+,$(getvar,autosnap),8))
MM_1637 切换对象捕捉追踪模式 ^P$M=$(if,$(and,$(getvar,autosnap),16),,$(if,$(and,$(getvar,osmode),16384),'_.osmode $(-,$(getvar,osmode),16384) ))'_.autosnap $(if,$(and,$(getvar,autosnap),16),$(-,$(getvar,autosnap),16),$(+,$(getvar,autosnap),16))
MM_1638 隐藏动态输入 按下指定的临时替代键快捷方式将临时隐藏动态输入 (即 DYNMODE=0)。例如,如果 DYNMODE 系统变量设置为1,则其将临时重置为 0. ^P'_.dynmode $M=$(if,$(>,$(getvar,dynmode),0),$(*,$(getvar,dynmode),-1),$(getvar,dynmode))
MM_1639 对象捕捉替代: 外观交点 ^P'_.osmode 2048 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1640 对象捕捉替代: 最近点 ^P'_.osmode 512 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1641 对象捕捉替代: 象限点 ^P'_.osmode 16 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1642 对象捕捉替代: 平行线 ^P'_.osmode 8192 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1644 对象捕捉替代: 插入点 ^P'_.osmode 64 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1645 对象捕捉替代: 交点 ^P'_.osmode 32 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1646 对象捕捉替代: 节点 ^P'_.osmode 8 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1647 对象捕捉替代: 垂足 ^P'_.osmode 128 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1648 对象捕捉替代: 切点 ^P'_.osmode 256 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1649 对象捕捉替代: 延长线 ^P'_.osmode 4096 $(if,$(eq,$(getvar,osnapoverride),0),'_.osnapoverride 1)
MM_1650 OverrideCommand1 ``
MM_1651 OverrideCommand2 ``
MM_1652 OverrideCommand3 ``
MM_1653 OverrideCommand4 ``
MM_1654 OverrideCommand5 ``
MM_1655 OverrideCommand6 ``
MM_1656 OverrideCommand7 ``
MM_1657 OverrideCommand8 ``
MM_1658 OverrideCommand9 ``
MM_1660 OverrideCommand10 ``
MM_1661 OverrideCommand11 ``
MM_1662 OverrideCommand12 ``
MM_1663 OverrideCommand13 ``
MM_1664 OverrideCommand14 ``
MM_1665 OverrideCommand15 ``
MM_1666 OverrideCommand16 ``
MM_1667 OverrideCommand17 ``
MM_1668 OverrideCommand18 ``
MM_1669 OverrideCommand19 ``
MM_1670 OverrideCommand20 ``
MM_1671 OverrideCommand21 ``
MM_1672 OverrideCommand22 ``
MM_1673 OverrideCommand23 ``
MM_1674 OverrideCommand24 ``
MM_1675 OverrideCommand25 ``
MM_1676 OverrideCommand26 ``
MM_1677 OverrideCommand27 ``
MM_1679 OverrideCommand29 ``
MM_1680 OverrideCommand30 ``
MM_1681 OverrideCommand31 ``
MM_1682 OverrideCommand32 ``
MM_1683 OverrideCommand33 ``
MM_1684 OverrideCommand34 ``
MM_1558 自定义, 输入自定义设置... 将企业或局部 CUI 文件中的自定义设置输入到主 CUI 文件中 ^C^C_cuiimport;
MM_1559 自定义, 输出自定义设置... 将主 CUI 文件中的自定义设置输出到企业或局部 CUI 文件中 ^C^C_cuiexport;
MM_1561 删除\tDel 从图形删除对象 ^C^C_erase;
MM_1562 平移 在当前视口中移动视图 '_pan
MM_1563 缩放 增大或缩小当前视口中对象的外观尺寸 '_zoom ;
MM_1564 我的工作空间 将当前工作空间设置为“我的工作空间” ^C^C_wscurrent . ;
ID_LockAll 锁定, 全部, 锁定 锁定所有工具栏和窗口 '_lockui 15
ID_UnlockAll 锁定, 全部, 解锁 解锁所有工具栏和窗口 '_lockui 0
MM_1565 块编辑器 在块编辑器中打开块定义 ^C^C_-bedit
ID_CopySelect 复制选择 复制对象 $M=$(if,$(eq,$(substr,$(getvar,cmdnames),1,4),GRIP),_copy,^C^C_copy)
MM_1569 工作空间, 将当前工作空间另存为... 保存当前工作空间 ^C^C_WSSAVE;
MM_1570 自定义... 显示“自定义用户界面”对话框 ^C^C_CUI;
ID_WorkspaceLabelToggle 显示工作空间标签 确定是否在状态栏中显示工作空间标签以切换工作空间 '_setvar;WORKSPACELABEL;$M=$(-,1,$(getvar,WORKSPACELABEL))
ID_SPACETRANS 从 PS 转换为 MS 将距离或高度在模型空间和图纸空间之间转换 ^C^C_spacetrans
MM_1571 剪裁现有视口 剪裁视口对象 ^C^C_vpclip
MM_1572 实时平移 沿屏幕方向平移视图 '_pan
MM_1573 实时缩放 放大或缩小显示当前视口中对象的外观尺寸 '_zoom ;
MM_1574 窗口缩放 放大或缩小显示当前视口中对象的外观尺寸 '_zoom _w
MM_1575 动态缩放 缩放显示图形的生成部分 $M=$(if,$(eq,$(getvar,perspective),0),'_zoom _d,'_zoom;)
MM_1576 比例缩放 按指定的比例缩放显示 $M=$(if,$(eq,$(getvar,perspective),0),'_zoom _s,'_zoom;)
MM_1577 中心缩放 显示由中心点及比例或高度指定的视图 $M=$(if,$(eq,$(getvar,perspective),0),'_zoom _c,'_zoom;)
MM_1578 缩放对象 缩放为显示对象的范围 $M=$(if,$(eq,$(getvar,perspective),0),'_zoom _o,'_zoom;)
MM_1579 放大 放大显示对象的外观尺寸 $M=$(if,$(eq,$(getvar,perspective),0),'_zoom 2x,'_zoom;)
MM_1580 缩小 缩小显示对象的外观尺寸 $M=$(if,$(eq,$(getvar,perspective),0),'_zoom .5x,'_zoom;)
MM_1582 范围缩放 显示图形范围 '_zoom _e
MM_1583 图案填充编辑... 修改现有的图案填充对象 ^C^C_hatchedit
MM_1584 编辑图案填充 修改现有的图案填充对象 ^C^C_hatchedit
MM_1585 编辑多段线 编辑多段线和三维多边形网格 ^C^C_pedit
MM_1586 编辑样条曲线 编辑样条曲线或样条曲线拟合多段线 ^C^C^R_splinedit
MM_1587 编辑属性... 编辑块参照中的属性 ^C^C_eattedit
MM_1588 创建块 从选定对象创建块定义 ^C^C_block
MM_1589 块说明... 从选定对象创建块定义 ^C^C_block
MM_1607 圆弧 用三点创建圆弧 ^C^C_arc
MM_1608 用圆心和半径创建圆 ^C^C_circle
MM_1609 椭圆 创建椭圆或椭圆弧 ^C^C_ellipse
MM_1610 椭圆弧 创建椭圆弧 ^C^C_ellipse _a
MM_1612 定位点 显示点坐标 '_id
MM_1613 图层特性管理器 管理图层和图层特性 $M=$(if,$(and,$(>,$(getvar,LayerManagerState),0)),^C^C'_LayerClose,^C^C'_Layer)
ID_DimstyleA 标注, 更新 用当前标注样式更新标注对象 ^C^C_-dimstyle _apply
MM_1614 插入块 向当前图形插入块或图形 ^C^C_insert
MM_1685 视口剪裁 剪裁视口对象 ^C^C_vpclip
ID_Block_DoubleClick 块 - 双击 在块编辑器中打开块定义 $M=$(if,$(and,$(>,$(getvar,blockeditlock),0)),^C^C_properties,^C^C_bedit)
ID_DynBlock_DoubleClick 动态块 - 双击 在块编辑器中打开块定义 $M=$(if,$(and,$(>,$(getvar,blockeditlock),0)),^C^C_properties,^C^C_bedit)
ID_LAYMCH 图层, 图层匹配 将选定对象的图层更改为与目标图层相匹配 ^C^C_laymch
ID_LAYCUR 图层, 更改为当前图层 将选定对象的图层特性更改为当前图层 ^C^C_laycur
ID_LAYISO 图层, 图层隔离 隐藏或锁定除选定对象的图层之外的所有图层 ^C^C_layiso
ID_COPYTO 图层, 将对象复制到新图层 将一个或多个对象复制到其他图层 ^C^C_copytolayer
ID_LAYWLK 图层, 图层漫游... 显示选定图层上的对象,并隐藏所有其他图层上的对象 ^C^C_.laywalk
ID_LAYFRZ 图层, 图层冻结 冻结选定对象的图层 ^C^C_layfrz
ID_LAYOFF 图层, 图层关闭 关闭选定对象的图层 ^C^C_layoff
ID_LAYLCK 图层, 图层锁定 锁定选定对象的图层 ^C^C_laylck
ID_LAYULK 图层, 图层解锁 解锁选定对象的图层 ^C^C_layulk
ID_LAYVPI 图层,视口冻结除当前视口以外的所有视口 冻结除当前视口外的其他所有布局视口中的选定图层 ^C^C_layvpi
ID_LAYON 图层, 打开所有图层 打开图形中的所有图层 ^C^C_layon
ID_LAYTHW 图层, 解冻所有图层 解冻图形中的所有图层 ^C^C_laythw
ID_LAYMRG 图层, 图层合并 将选定图层合并为一个目标图层,从而将以前的图层从图形中删除 ^C^C_laymrg
ID_LAYDEL 图层, 图层删除 删除图层上的所有对象并清理图层 ^C^C_laydel
ID_CHSPAC 更改空间 在模型空间和图纸空间之间移动对象 ^C^C_chspace
ID_Pyramid 棱锥体 创建三维实体棱锥体 ^C^C_pyramid
ID_Loft 放样 在数个横截面之间的空间中创建三维实体或曲面 ^C^C^R_loft _MO _SO;
ID_Loft2 放样 在数个横截面之间的空间中创建三维实体或曲面 ^C^C^R_loft;
ID_Sweep 扫掠 通过沿路径扫掠二维或三维曲线来创建三维实体或曲面 ^C^C^R_sweep _MO _SO;
ID_Sweep2 扫掠 通过沿路径扫掠二维或三维曲线来创建三维实体或曲面 ^C^C^R_sweep;
MM_1688 Command1 ^P'_.ucsdetect $M=$(if,$(and,$(getvar,ucsdetect),1),$(-,$(getvar,ucsdetect),1),$(+,$(getvar,ucsdetect),1))
MM_1689 Command2 ``
MM_1690 Command3 ^P'_.ucsdetect $M=$(if,$(and,$(getvar,ucsdetect),1),$(-,$(getvar,ucsdetect),1),$(+,$(getvar,ucsdetect),1))
MM_1691 Command4 ``
ID_AniPath 动画运动路径 保存相机在三维模型中移动或平移时的动画文件 ^C^C_anipath
MM_1694 Command5 ^P'_.ucsdetect $M=$(if,$(and,$(getvar,ucsdetect),1),$(-,$(getvar,ucsdetect),1),$(+,$(getvar,ucsdetect),1))
MM_1695 Command6 ``
ID_CAMERAS_OnOf 相机显示 显示或隐藏图形中的相机对象 $M=$(if,$(and,$(getvar,cameradisplay),1),^C^C_cameradisplay 0,^C^C_cameradisplay 1)
ID_ViewPrevious 上一视图 缩放以显示上一视图。您最多可恢复前 10 个视图 '_zoom _p
ID_3DWalk 三维漫游 交互式更改图形中的三维视图,以创建在模型中漫游的外观 ^C^C_3dwalk
ID_Animation_Record 开始录制动画 ``
ID_Animation_Play 播放动画 ``
ID_Animation_Pause 暂停录制动画 ``
ID_Animation_Save 保存动画 ``
ID_Animation_Settings 动画设置 ``
ID_3DWalk_Settings 三维漫游和飞行设置 控制漫游和飞行导航设置 ^C^C_walkflysettings
ID_PointLight 光源, 新建点光源 创建点光源,该光源从其位置向所有方向发射光线 ^C^C_pointlight
ID_SpotLight 光源, 新建聚光灯 创建聚光灯,该光源发射出一个圆锥形光柱 ^C^C_spotlight
ID_DistantLight 光源, 新建平行光 创建平行光 ^C^C_distantlight
ID_LightList 模型中的光源 在列出模型中所有光源的“模型”选项板上打开或关闭光源 $M=$(if,$(and,$(>,$(getvar,lightliststate),0)),^C^C_lightlistclose,^C^C_lightlist)
ID_GeoLocation_Map 地图中的地理位置 使用联机 Web 服务中的地图指定地理位置 $M=$(if,$(or,$(eq,$(getvar,"cvport"),1),$(eq,$(getvar,"blockeditor"),1)),^C^C_geographiclocation,^C^C_geographiclocation _m)
ID_GeoLocation_Edit_From_Map 地图中的地理位置 使用联机 Web 服务中的地图更改地理位置 $M=$(if,$(or,$(eq,$(getvar,"cvport"),1),$(eq,$(getvar,"blockeditor"),1)),^C^C_geographiclocation,^C^C_geographiclocation _m)
ID_GeoLocation_File 文件中的地理位置 通过从 GIS 文件中输入坐标来指定地理位置 $M=$(if,$(or,$(eq,$(getvar,"cvport"),1),$(eq,$(getvar,"blockeditor"),1)),^C^C_geographiclocation,^C^C_geographiclocation _f)
ID_GeoLocation_Edit_From_File 文件中的地理位置 通过从 GIS 文件中输入坐标来更改地理位置 $M=$(if,$(or,$(eq,$(getvar,"cvport"),1),$(eq,$(getvar,"blockeditor"),1)),^C^C_geographiclocation,^C^C_geographiclocation _f)
ID_GeoReorientMarker 重定向标记 更改地理标记的位置和北向特性,这将确定纬度和经度坐标 ^C^C_GEOREORIENTMARKER
ID_GeoRemove 删除位置 从图形文件删除所有地理位置信息 ^C^C_GEOREMOVE
ID_GeoMap 地图类型 选择地图类型 ^C^C_GEOMAP
ID_GeoLocateMe 查找我的位置 显示图形中相对于所设位置的当前位置。 ^C^C_GEOLOCATEME
ID_GeoLocation_MarkLocation 放置标记 将位置标记放置在当前图形中。 ^C^C_geomarkposition
ID_GeoLocation_MarkLocation_CurrentLocation 我的位置 将位置标记放置在您当前的相应位置 ^C^C_geomarkme
ID_GeoLocation_MarkLocation_PickPoint 将位置标记放置在指定点 ^C^C_geomarkpoint
ID_GeoLocation_MarkLocation_SpecifyLatLong 经纬度 为由经纬度坐标定义的位置放置位置标记 ^C^C_geomarklatlong
ID_GeoMapImage 地理贴图图像 基于当前视口的范围通过背景地图创建图像对象 ^C^C_geomapimage
ID_GeoMapImageUpdate 地理贴图图像更新 使用最新的贴图图像更新图像并优化分辨率 ^C^C_geomapimageupdate
ID_SunProperties 阳光特性 显示“阳光特性”窗口 $M=$(if,$(and,$(>,$(getvar,sunpropertiesstate),0)),^C^C_sunpropertiesclose,^C^C_sunproperties)
ID_SunStatus 阳光状态 在当前视口中打开或关闭日光的光照效果 ^C^C
ID_Skylight_Off 光源, 关闭天光 在当前视口中关闭天光的视觉表示和光照效果 ``
ID_Skylight_Background 光源, 天光背景 在当前视口中打开天光的视觉表示 ``
ID_Skylight_Illumination 光源, 天光背景和照明 在当前视口中打开天光的光照效果 ``
ID_DefaultLighting 默认光源 打开或关闭代替其他光源的默认光源 ^C^C
ID_LightGlyphsShow 光线轮廓 打开或关闭光线轮廓的显示 $M=$(if,$(and,$(getvar,lightglyphdisplay),1),^C^C_lightglyphdisplay 0,^C^C_lightglyphdisplay 1)
ID_ShadowDrag 阴影拖拽 ^C^C_shadowdrag
ID_PlanarMapping 材质贴图, 平面贴图 将图像投影到平面上 $M=$(if,$(eq,$(getvar,cvport),1),^C^C_MaterialMap,^C^C_MaterialMap _P)
ID_BoxMapping 材质贴图, 长方体贴图 将图像投影到盒状实体的各个面上 $M=$(if,$(eq,$(getvar,cvport),1),^C^C_MaterialMap,^C^C_MaterialMap _B)
ID_CylindricalMapping 材质贴图, 柱面贴图 将图像投影到柱面对象上 $M=$(if,$(eq,$(getvar,cvport),1),^C^C_MaterialMap,^C^C_MaterialMap _C)
ID_SphericalMapping 材质贴图, 球面贴图 将图像投影到球面对象上 $M=$(if,$(eq,$(getvar,cvport),1),^C^C_MaterialMap,^C^C_MaterialMap _S)
ID_Multiple_Vports 多个视口 $M=$(if,$(eq,$(getvar,tilemode),1),^C^C_-vports;_m,^P_ai_emptyprinc^P)
ID_Single_Vport 单个视口 $M=$(if,$(eq,$(getvar,tilemode),1),^C^C_-vports _si,^P_ai_emptyprinc^P)
ID_Free_Orbit 三维自由动态观察 在三维空间中不受滚动约束地旋转视图 '_3DFOrbit
ID_XPARENT_Orbit 透明动态观察 ^P'_3DORBITTRANSPARENT ^P
ID_XPARENT_WALK 透明漫游 ^P'_3DWALKTRANSPARENT ^P
ID_XPARENT_SWIVEL 透明回旋 ^P'_3DSWIVELTRANSPARENT ^P
ID_Perspective_Projection 透视投影 将当前视口显示更改为透视视图 $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_perspective,$(if,$(eq,$(getvar,perspective),0),^C^C_perspective 1,^P_ai_emptyprinc^P))
ID_Parallel_Projection 平行投影 将当前视口视图更改为平行视图 $M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),^C^C_perspective,$(if,$(eq,$(getvar,perspective),1),^C^C_perspective 0,^P_ai_emptyprinc^P))
ID_3DFLY 三维飞行 交互式更改图形中的三维视图,以创建绕模型飞行的外观 ^C^C_3DFly
MM_1696 3DDWF 启动三维 DWF 发布界面 ^C^C_3DDWF
MM_1697 DWF 参考底图... 将参照作为参考底图插入到 DWF 或 DWFx 文件中 ^C^C_dwfattach
MM_1700 DWF 剪裁... 将选定 DWF 或 DWFx 参考底图的显示剪裁到指定边界 ^C^C_dwfclip
MM_1701 DWF 对象捕捉 启用对 DWF 参考底图中对象的捕捉 $M=$(if,$(and,$(getvar,dwfosnap),1),^C^C_dwfosnap 0,^C^C_dwfosnap 1)
ID_SubObjectAll 子对象选择, 无过滤器 使用 CTRL+单击关闭所有子对象过滤器 (setvar "SubObjSelectionMode" 0)
ID_SubObjectVertex 子对象选择, 顶点 使用 CTRL+单击仅选择顶点 (setvar "SubObjSelectionMode" 1)
ID_SubObjectEdge 子对象选择, 边 使用 CTRL+单击仅选择边 (setvar "SubObjSelectionMode" 2)
ID_SubObjectFace 子对象选择, 面 使用 CTRL+单击仅选择面 (setvar "SubObjSelectionMode" 3)
ID_SubObjectSolidHistory 实体历史记录 使用 CTRL+单击仅选择历史记录子对象 (setvar "SubObjSelectionMode" 4)
ID_SubObjectAll2 子对象选择, 无过滤器 使用 CTRL+单击关闭所有子对象过滤器 '_setvar;SubObjSelectionMode;0
ID_SubObjectVertex2 子对象选择, 顶点 使用 CTRL+单击仅选择顶点 '_setvar;SubObjSelectionMode;1
ID_SubObjectEdge2 子对象选择, 边 使用 CTRL+单击仅选择边 '_setvar;SubObjSelectionMode;2
ID_SubObjectFace2 子对象选择, 面 使用 CTRL+单击仅选择面 '_setvar;SubObjSelectionMode;3
ID_SubObjectSolidHistory2 实体历史记录 使用 CTRL+单击仅选择历史记录子对象 '_setvar;SubObjSelectionMode;4
ID_DEFAULTGIZMO_MOVE 移动 将三维移动小控件设置为默认 '_DEFAULTGIZMO 0
ID_DEFAULTGIZMO_ROTATE 旋转 将三维旋转小控件设置为默认 '_DEFAULTGIZMO 1
ID_DEFAULTGIZMO_SCALE 缩放 将三维缩放小控件设置为默认 '_DEFAULTGIZMO 2
ID_DEFAULTGIZMO_NO 无小控件 未将小控件设置为默认 '_DEFAULTGIZMO 3
ID_Helix 螺旋 创建二维螺旋或三维弹簧 ^C^C_Helix
ID_Polysolid 多段体 创建三维墙状多段体 ^C^C_Polysolid
ID_Planesurf 平面曲面 创建平面曲面 ^C^C_Planesurf
ID_Thicken 加厚 将曲面转换为具有指定厚度的三维实体 ^C^C_Thicken
ID_CONV2SOLID 转换为实体 将对象转换为实体 ^C^C_convtosolid
ID_Conv2surface 转换为曲面 将对象转换为曲面 ^C^C_convtosurface
ID_ExtractEdges 提取边 通过三维实体、曲面、网格、面域或子对象的边创建线框几何图形 ^C^C_xedges
ID_3DMove 三维移动 在三维视图中显示三维移动小控件,以便将三维对象在指定方向上移动指定距离 ^C^C_3dmove
ID_3DROTATE 三维旋转 在三维视图中显示三维旋转小控件,以便将三维对象绕基点旋转 ^C^C_3drotate
ID_Flatshot 平面摄影 基于当前视图创建所有三维对象的二维表示 ^C^C_flatshot
ID_VSSHADOWS_GROUND 视觉样式, 阴影, 地面 仅在某个视觉样式中打开地面阴影的显示 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsshadows;,_vsshadows 1;)^Z
MM_1706 外部参照 显示外部参照窗口 ^C^C_externalreferences
MM_1707 SurfU: 打开或关闭外部参照选项板 '_surfu
MM_1708 SurfV: 设定曲面控制变量: SURFU '_surfv
MM_1711 工作空间三维建模 将当前工作空间设定为三维建模工作空间 ^C^C_wscurrent 3D Modeling;
ID_Materials 材质浏览器 打开和关闭材质浏览器 $M=$(if,$(and,$(>,$(getvar,matbrowserstate),0)),^C^C_matbrowserclose,^C^C_matbrowseropen)
ID_VisualStyles 视觉样式 显示或隐藏视觉样式管理器 $M=$(if,$(and,$(>,$(getvar,vsstate),0)),^C^C_visualstylesclose,^C^C_visualstyles)
ID_ExtReferences 外部参照 打开或关闭外部参照选项板 $M=$(if,$(and,$(>,$(getvar,erstate),0)),^C^C_externalreferencesclose,^C^C_externalreferences)
ID_Ribbon 功能区 显示或隐藏功能区 $M=$(if,$(and,$(>,$(getvar,ribbonstate),0)),^C^C_ribbonclose,^C^C_ribbon)
ID_VSFACEOPACITY 视觉样式, X 射线模式 打开或关闭三维实体和曲面的预设透明度级别 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsfaceopacity;,_vsfaceopacity $(-,0,$(getvar,"vsfaceopacity"));)^Z
ID_VSSHADOWS_OFF 视觉样式, 阴影, 关闭 在某个视觉样式中关闭所有阴影的显示 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsshadows;,_vsshadows 0;)^Z
ID_VSEDGES_FACET 视觉样式, 边, 镶嵌面边 显示三维实体和曲面的所有边和镶嵌面 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsedges;,_vsedges 2;)^Z
ID_VSSHADOWS_FULL 视觉样式, 阴影, 全 在某个视觉样式中打开全阴影的显示 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsshadows;,_vsshadows 2;)^Z
ID_VSFACECOLORMODE_REGU 视觉样式, 面颜色模式, 常规 使用图层颜色或适用的颜色和材质显示三维实体和曲面的所有面 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsfacecolormode;,_vsfacecolormode 0;)^Z
ID_VSFACECOLORMODE_MONO 视觉样式, 面颜色模式, 单色 以默认的白色或其他指定颜色显示三维实体和曲面上的所有面 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsfacecolormode;,_vsfacecolormode 1;)^Z
ID_VSFACECOLORMODE_TINT 视觉样式, 面颜色模式, 明 使用单色对三维实体和曲面上的所有面进行染色 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsfacecolormode;,_vsfacecolormode 2;)^Z
ID_VSFACECOLORMODE_DESA 视觉样式, 面颜色模式, 降饱和度 通过降低颜色饱和度来柔化所有面上的颜色 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsfacecolormode;,_vsfacecolormode 3;)^Z
ID_VSESWMGR 视觉样式, 管理器 启动视觉样式管理器 ^C^C^P_visualstyles ^P
ID_VSPERFDLG 视觉样式, “调节”对话框 设置影响三维显示性能的选项 ^C^C^P^R_3dconfig ^P
ID_VSFACESTYLE_NONE 视觉样式, 面样式, 无 不使用颜色、材质或着色来显示三维实体和曲面 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsfacestyle;,_vsfacestyle 0;)^Z
ID_VSFACESTYLE_REAL 视觉样式, 面样式, 真实 使用图层颜色或适用的颜色、材质以及着色来显示三维实体和曲面真实感 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsfacestyle;,_vsfacestyle 1;)^Z
ID_VSFACESTYLE_WARMCOOL 视觉样式, 面样式, 古氏 柔化加亮区域和阴影区域的对比度 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsfacestyle;,_vsfacestyle 2;)^Z
ID_VSEDGES_NONE 视觉样式, 边, 无边 仅显示三维实体和曲面的轮廓边 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsedges;,_vsedges 0;)^Z
ID_VSEDGES_ISOLINES 视觉样式, 边, 素线 使用间距相等的网格显示曲线形三维实体和曲面 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsedges;,_vsedges 1;)^Z
ID_VSLIGHTINGQUALITY_FACET 视觉样式, 镶嵌面光源 镶嵌面光源 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vslightingquality;,_vslightingquality 0;)^Z
ID_VSLIGHTINGQUALITY_SMOOTH 视觉样式, 平滑光源 通过计算每个面上顶点之间的渐变色来显示三维实体和曲面 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vslightingquality;,_vslightingquality 1;)^Z
ID_VSOBSCUREDEDGES 视觉样式, 暗显边 打开或关闭暗显边 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsobscurededges;,_vsobscurededges $(-,1,$(getvar,"vsobscurededges"));)^Z
ID_VSINTERSECTIONEDGES 视觉样式, 相交边 打开或关闭相交边 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vsintersectionedges;,_vsintersectionedges $(-,1,$(getvar,"vsintersectionedges"));)^Z
ID_VSSILHEDGES 视觉样式, 轮廓边 控制三维实体和曲面上轮廓边的显示 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vssilhedges;,_vssilhedges $(-,1,$(getvar,"vssilhedges"));)^Z
MM_1719 建模, 截面平面 创建用作贯穿三维对象的剪切平面的截面对象 ^C^C_sectionplane
ID_RenderWin 显示渲染窗口... 显示渲染窗口而不执行渲染操作 ^C^C_renderwindow
MM_1720 切换动态 UCS ^D
MM_1726 视觉样式, 概念 概念视觉样式 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _C)
MM_1740 视觉样式, 灰度 灰度视觉样式 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _G)
MM_1741 视觉样式, 勾画 勾画视觉样式 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _SK)
MM_1742 视觉样式, X 射线 X 射线视觉样式 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _X)
MM_1743 视觉样式, 带边缘着色 带边缘着色视觉样式 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _E)
MM_1744 视觉样式, 着色 着色视觉样式 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _S)
MM_1721 视觉样式, 真实 真实视觉样式 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _R)
MM_1722 视觉样式, 线框 线框视觉样式 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _W)
MM_1723 视觉样式, 隐藏 隐藏视觉样式 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _H)
MM_1724 视觉样式管理器... 管理视觉样式... ^C^C$M=$(if,$(eq,$(getvar,vsstate),0),_visualstyles,_visualstylesclose)
MM_1725 视觉样式, 二维线框 二维线框 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vscurrent;,_vscurrent _2)
ID_Constrained_Orbit 受约束的三维动态观察 在三维空间中旋转视图,但仅限于在水平和垂直方向上进行动态观察 '_3dorbit
ID_Render_Region 渲染面域 渲染视口内指定的矩形区域(称为“裁剪窗口”) ^C^C_rendercrop
ID_Livesection 活动截面 打开或关闭截面对象的活动截面状态 ^C^C_livesection
ID_Jogsection 建模, 折弯截面平面 将折弯添加到截面对象 ^C^C_sectionplanejog
ID_Presspull 按住并拖动 按住或拖动有边界区域 ^C^C_presspull
MM_LAYUNISO 图层, 取消图层隔离 恢复使用 LAYISO 命令隐藏或锁定的所有图层 ^C^C_Layuniso
ID_Align 对齐 在二维和三维空间中将对象与其他对象对齐 ^C^C_align
ID_DWFLAYERS 编辑图层 控制图层在 DWF 参考底图中的显示 ^C^C_dwflayers
MM_1727 ATTIPEDIT ^C^C_ATTIPEDIT
MM_1728 DGN 参考底图... 将参照作为参考底图插入到 DGN 文件中 ^C^C_dgnattach
MM_1729 DGN 剪裁... 将选定 DGN 参考底图的显示剪裁到指定边界 ^C^C_dgnclip
MM_1730 DGN 对象捕捉 启用对 DGN 参考底图中对象的捕捉 $M=$(if,$(and,$(getvar,dgnosnap),1),^C^C_dgnosnap 0,^C^C_dgnosnap 1)
ID_IMPORT 输入... 将 PDF 和 DGN 等不同格式的文件输入到当前图形中 ^C^C_import
MM_1731 更改为 ByLayer 将选定对象的特性替代更改为 ByLayer ^C^C_setbylayer
MM_1732 删除所有图层的视口替代 删除选定视口的视口图层特性替代 ^C^C_-vports _layer _yes _p;;
MM_1733 添加当前比例 将当前注释比例添加到注释性对象 ^C^C_AIOBJECTSCALEADD
MM_1900 添加当前比例 将当前注释比例添加到选定的注释性对象 ^C^C_AIOBJECTSCALEADD
MM_1901 删除当前比例 删除选定对象的当前注释比例 ^C^C_AIOBJECTSCALEREMOVE
MM_1734 删除当前比例 删除对象的当前注释比例 ^C^C_AIOBJECTSCALEREMOVE
MM_1735 添加/删除比例... 为注释性对象添加或删除支持的比例 ^C^C_objectscale
MM_1736 同步多比例位置 重置选定注释性对象的所有换算比例图示的位置 ^C^C_annoreset
ID_Dimspace 标注, 等距标注 调整线性标注或角度标注之间的间距 ^C^C_DIMSPACE
ID_Dimbreak 标注, 折断标注 在标注或延伸线与其他对象交叉处折断或恢复标注和延伸线 ^C^C_DIMBREAK
ID_Diminspection 标注, 检验 添加或删除与选定标注关联的检验信息 ^C^C_DIMINSPECT
ID_Dimjoglin 标注, 折弯标注 在线性或对齐标注上添加或删除折弯线 ^C^C_DIMJOGLINE
ID_LayerStatesMgr 图层状态管理器 保存、恢复和管理命名的图层状态 ^C^C_LAYERSTATE
ID_RecoverAll 修复图形和外部参照... 将损坏的图形文件与所有附着的外部参照一起修复 ^C^C_recoverall
ID_DataLinkMgr 数据链接管理器 显示数据链接管理器 ^C^C_DATALINK
ID_WriteDataLinks 更新数据链接 更新从当前图形中表格链接到外部数据文件的数据 ^C^C_DATALINKUPDATE _W
ID_UpdateDataLinksAll 更新数据链接 更新从外部数据文件链接到当前图形中表格的数据 ^C^C_DATALINKUPDATE _U
ID_Mleader 多重引线 创建多重引线对象 ^C^C_mleader
ID_Mleader_Add 添加引线 将引线添加至现有的多重引线对象 ^C^C^P_aimleadereditadd ^P
ID_Mleader_Remove 删除引线 将引线从现有的多重引线对象中删除 ^C^C^P_aimleadereditremove ^P
ID_Mleader_Align 多重引线对齐 将选定多重引线对象对齐并按一定间距排列 ^C^C_mleaderalign
ID_Mleader_Collect 多重引线合并 将包含块的选定多重引线组织到行或列中,并使用单引线显示结果 ^C^C_mleadercollect
ID_Mleader_Style 多重引线样式管理器 创建和修改多重引线样式 ^C^C_mleaderstyle
ID_SendFeedback 发送反馈 通过 Autodesk.com.cn 向我们提交反馈 ^C^C^P_ai_send_feedback ^P
ID_Mleader_Edit 多重引线编辑 编辑多重引线对象 ^C^C_MLEADEREDIT
ID_LightingUnitsAmerican 光源单位, 美制 启用美制光源单位和光度控制光源 ^C^C_lightingunits 1
ID_LightingUnitsSI 光源单位, 国际标准 启用国际光源单位(SI)和光度控制光源 ^C^C_lightingunits 2
ID_VSLIGHTINGQUALITY_SMOOTHEST 视觉样式, 最平滑光源 通过计算单个像素的颜色来显示三维实体和曲面 ^C^C$M=$(if,$(or,$(and,$(eq,$(getvar,"tilemode"),0),$(eq,$(getvar,"cvport"),1)),$(eq,$(getvar,"blockeditor"),1)),_vslightingquality;,_vslightingquality 2;)^Z
ID_MacroRecord 动作录制器, 录制 创建动作宏 _ACTRECORD
ID_MacroStop 动作录制器, 停止 停止录制或回放动作宏 _ACTSTOP
ID_MacroHistory 动作录制器, 宏历史记录 ``
MM_1902 切换快捷特性 切换快捷特性 ^P_.QUICKPROPERTIES
ID_QUICKPROPERTIES 快捷特性 快捷特性 ^P_.QUICKPROPERTIES
ID_TOGGLEQPMODE 切换 QPMODE 切换 QPMODE ^P'_.qpmode $M=$(if,$(eq,$(getvar,qpmode),0),1,$(*,$(getvar,qpmode),-1))
MM_Toggle_Selection_Cycling 切换选择循环 切换选择循环 ^W
MM_1904 切换 HIDEPALETTES 切换选项板状态. $M=$(if,$(and,$(getvar,ShowPaletteState),1),^C^C_HIDEPALETTES,^C^C_SHOWPALETTES)
ID_SteeringWheel SteeringWheels 显示包含一系列视图导航工具的控制盘 '_navswheel
ID_ShowMotion ShowMotion 显示 ShowMotion ^C^C_navsmotion
ID_ViewcubeOn ViewCube 显示 控制 ViewCube 的可见性 ^C^C_navvcube _on
ID_ViewcubePr Viewcube, 设置... 打开“ViewCube 设置”对话框 ^C^C_navvcube _s
ID_NavBarOn 导航栏显示 设置导航栏的可见性 ^C^C_navbar _on
ID_MESH_SMOOTH_MORE 提高平滑度 将网格对象的平滑度提高一个级别 '_MESHSMOOTHMORE
ID_MESH_SMOOTH_LESS 降低平滑度 将网格对象的平滑度降低一个级别 '_MESHSMOOTHLESS
ID_MESH_SMOOTH_REFINE 优化网格 成倍增加选定网格对象或网格面中的面数 '_MESHREFINE
ID_MESH_SMOOTH_CREASE 增加锐化 锐化选定的网格面、边或顶点 ^C^C_MESHCREASE
ID_MESH_SMOOTH_UNCREASE 删除锐化 从选定的网格面、边或顶点删除锐化 ^C^C_MESHUNCREASE
ID_MESH_PRIMITIVE_BOX 网格长方体 创建三维网格图元长方体 ^C^C_MESH _BOX
ID_MESH_PRIMITIVE_SPHERE 网格球体 创建三维网格图元球体 ^C^C_MESH _SPHERE
ID_MESH_PRIMITIVE_PYRAMID 网格棱锥体 创建三维网格图元棱锥体 ^C^C_MESH _PYRAMID
ID_MESH_PRIMITIVE_CONE 网格圆锥体 创建三维网格图元圆锥体 ^C^C_MESH _CONE
ID_MESH_PRIMITIVE_WEDGE 网格楔体 创建三维网格图元楔体 ^C^C_MESH _WEDGE
ID_MESH_PRIMITIVE_CYLINDER 网格圆柱体 创建三维网格图元圆柱体 ^C^C_MESH _CYLINDER
ID_MESH_PRIMITIVE_TORUS 网格圆环体 创建三维网格图元圆环体 ^C^C_MESH _TORUS
ID_MESH_SMOOTH 平滑对象 将三维对象转换为网格对象 ^C^C_MESHSMOOTH
ID_MESH_SPLIT_FACE 分割网格面 将一个网格面分割为两个面 ^C^C_MESHSPLIT
ID_MESH_EXTRUDE_FACE 拉伸面 将网格面延伸到三维空间 ^C^C_MESHEXTRUDE
ID_MESH_MERGE_FACES 合并面 将相邻面合并为单个面 ^C^C_MESHMERGE
ID_MESH_SPIN_TRIANGE_FACES 旋转三角面 旋转两个三角网格面的相邻边 ^C^C_MESHSPIN
ID_MESH_CLOSE_HOLE 闭合孔 创建用于连接开放边的网格面 ^C^C_MESHCAP
ID_MESH_COLLAPSE_FACE_EDGE 收拢面或边 合并选定网格面或边的顶点 ^C^C_MESHCOLLAPSE
ID_MESH_CONVERT_TO_FACETED_SOLID 转换为具有镶嵌面的实体 将具有厚度的网格和对象转换为具有镶嵌面的三维实体 ^P(setvar "SMOOTHMESHCONVERT" 2);^C^C_.CONVTOSOLID;^P
ID_MESH_CONVERT_TO_FACETED_SURFACE 转换为具有镶嵌面的曲面 将具有厚度的网格和对象转换为具有镶嵌面的曲面 ^P(setvar "SMOOTHMESHCONVERT" 2);^C^C_.CONVTOSURFACE;^P
ID_MESH_CONVERT_TO_SMOOTH_SOLID 转换为平滑实体 将具有厚度的网格和对象转换为平滑三维实体 ^P(setvar "SMOOTHMESHCONVERT" 0);^C^C_.CONVTOSOLID;^P
ID_MESH_CONVERT_TO_SMOOTH_SURFACE 转换为平滑曲面 将具有厚度的网格和对象转换为平滑曲面 ^P(setvar "SMOOTHMESHCONVERT" 0);^C^C_.CONVTOSURFACE;^P
ID_MESH_SMOOTH_CREASE_LEVEL 默认锐化级别 设置默认锐化级别 '_SMOOTHMESHCREASELEV
ID_MESH_PRIMITIVE_OPTIONS 网格图元选项 显示“网格图元选项”对话框 ^C^C_MESHPRIMITIVEOPTIONS
ID_MESH_TESSELATION_OPTIONS 网格镶嵌选项 显示“网格镶嵌选项”对话框 ^C^C_MESHOPTIONS
ID_SURF_LOFT 放样 在数个横截面之间的空间中创建三维曲面 ^C^C^R_loft _mo _su;
ID_SURF_SWEEP 扫掠 通过沿路径扫掠二维或三维曲线来创建三维曲面 ^C^C^R_sweep _mo _su;
ID_SURF_EXTRUDE 拉伸 通过拉伸二维或三维曲线来创建三维曲面 ^C^C^R_extrude _mo _su;
ID_SURF_REVOLVE 旋转 通过绕轴扫掠二维或三维曲线来创建三维曲面 ^C^C^R_revolve _mo _su;
ID_SURF_NETWORK 曲面网络 在 U 和 V 方向的多条曲线之间的空间中创建三维曲面 ^C^C_SURFNETWORK
ID_SURF_BLEND 曲面过渡 在两个现有曲面之间创建连续的过渡曲面 ^C^C_SURFBLEND
ID_SURF_PATCH 曲面修补 创建新的曲面或封口以闭合现有曲面的开放边 ^C^C_SURFPATCH
ID_SURF_OFFSET 曲面偏移 创建与原始曲面相距指定距离的平行曲面 ^C^C_SURFOFFSET
ID_SURF_FILLET 曲面圆角 在现有曲面之间的空间中创建新的圆角曲面 ^C^C_SURFFILLET
ID_SURF_TRIM 曲面修剪 修剪与其他曲面或其他类型的几何图形相交的曲面部分 ^C^C_SURFTRIM
ID_SURF_UNTRIM 取消曲面修剪 替换 SURFTRIM 命令删除的曲面区域 ^C^C_SURFUNTRIM
ID_SURF_MODELINGMODE 曲面建模模式 设置是创建程序曲面还是创建 NURBS 曲面 $M=$(if,$(and,$(getvar,SURFACEMODELINGMODE),1),^C^C_SURFACEMODELINGMODE 0,^C^C_SURFACEMODELINGMODE 1)
ID_SURF_CONVTONURBS 转换为 NURBS 将曲面、实体或网格转换为 NURBS 曲面 ^C^C_CONVTONURBS
ID_SURF_SCULPT 曲面造型 修剪和合并构成面域的多个曲面,以创建无间隙实体。 ^C^C_SURFSCULPT
ID_SURF_EXTEND 曲面延伸 延长曲面以便与其他对象相交 ^C^C_SURFEXTEND
ID_SURF_SPLINE_KNOT 样条曲线节点 使用拟合点绘制样条曲线 ^C^C_^RSPLINE _M _FIT
ID_SURF_SPLINECV 样条曲线 使用控制点绘制样条曲线 ^C^C_^RSPLINE _M _CV
ID_SURF_SPLINE_FREEHAND 样条曲线手画线 绘制手画线样条曲线 ^C^C^R_SKETCH _TYPE _SPLINE
ID_SURF_SPLINE_DISPLAY_FIT_POINTS 显示拟合点 ^C^C^R_SPLINEDIT _F _X
ID_SURF_SPLINE_DIPSLAY_CONTROL_VERTICES 显示控制点 ^C^C^R_SPLINEDIT _F _P
ID_SURF_SPLINE_ADD_FIT_POINT 添加拟合点 ^C^C^R_SPLINEDIT _F _A
ID_SURF_SPLINE_ADD_FIT_KINK 添加扭折 ^C^C^R_SPLINEDIT _F _K
ID_SURF_SPLINE_ADD_CV 添加控制点 ^C^C^R_SPLINEDIT _E _A
ID_SURF_SPLINE_DEL_CV 删除控制点 ^C^C^R_SPLINEDIT _E _D
ID_SURF_SPLINE_ELEV_ORDER 提高阶数 ^C^C^R_SPLINEDIT _E _E
ID_SURF_SPLINE_CONV_TO_PLINE 转换为多段线 ^C^C^R_SPLINEDIT _P
ID_SURF_SPLINE_JOIN 合并 ^C^C^R_SPLINEDIT _J
ID_SURF_SPLINE_REVERSE 反转方向 ^C^C^R_SPLINEDIT _R;;
ID_SURF_SPLINE_CLOSE 反转方向 ^C^C^R_SPLINEDIT _T;;
ID_SURF_3DEDITBAR 曲面控制点编辑栏 在 NURBS 曲面或样条曲线上添加和编辑控制点 ^C^C_3DEDITBAR
ID_CV_SHOW 曲面控制点 - 显示 显示 NURBS 曲面或样条曲线的控制点 ^C^C_CVSHOW
ID_CV_HIDE 曲面控制点 - 隐藏 隐藏 NURBS 曲面或样条曲线的控制点 ^C^C_CVHIDE
ID_SURF_CV_REBUILD 曲面控制点 - 重新生成 允许您重新生成 NURBS 曲面或样条曲线的控制点 ^C^C_CVREBUILD
ID_SURF_CV_ADD 曲面控制点 - 添加 将控制点添加到 NURBS 曲面或样条曲线 ^C^C_CVADD
ID_SURF_CV_REMOVE 曲面控制点 - 删除 从 NURBS 曲面或样条曲线中删除控制点 ^C^C_CVREMOVE
ID_SURF_ZEBRA 分析斑纹 将平行线投影到模型上以便分析曲面连续性 ^C^C_ANALYSISZEBRA
ID_SURF_ANALYSIS_OPTIONS 分析选项 显示“分析选项”对话框 ^C^C_ANALYSISOPTIONS
ID_SURF_DRAFT 分析拔模 在曲面上显示渐变色,以便计算模型在零件及其模具之间是否具有足够的拔模 ^C^C_ANALYSISDRAFT
ID_SURF_CURVATURE 分析曲率 在曲面部分上显示渐变色,以便评估高曲率区域和低曲率区域 ^C^C_ANALYSISCURVATURE
ID_SURF_SURFACEAUTOTRIM 曲面自动修剪 设定在投影几何图形时是否自动修剪曲面 ^C^C_SURFACEAUTOTRIM
ID_SURF_PROJECTGEOMETRY_UCS 曲面投影 UCS 从不同角度将直线或曲线投影在任何类型的曲面上 ^C^C_PROJECTGEOMETRY _PRO _UCS
ID_SURF_PROJECTGEOMETR_VIEW 曲面投影视图 从不同角度将直线或曲线投影在任何类型的曲面上 ^C^C_PROJECTGEOMETRY _PRO _VIEW
ID_SURF_PROJECTGEOMETR_VECTOR 曲面投影矢量 从不同角度将直线或曲线投影在任何类型的曲面上 ^C^C_PROJECTGEOMETRY _PRO _POINTS
ID_SURF_ASSOCIATIVITY 曲面关联性 创建新曲面时启用关联性 $M=$(if,$(and,$(getvar,SURFACEASSOCIATIVITY),1),^C^C_SURFACEASSOCIATIVITY 0,^C^C_SURFACEASSOCIATIVITY 1)
ID_SOLIDHISTORY 实体历史记录 切换实体历史记录 $M=$(if,$(and,$(getvar,solidhist),1),^C^C_solidhist 0,^C^C_solidhist 1)
ID_FILLET_EDGE 圆角边 为实体对象的边制作圆角 ^C^C_FILLETEDGE
ID_CHAMFER_EDGE 倒角边 为实体对象的边制作倒角 ^C^C_CHAMFEREDGE
ID_WEBLIGHT 光域网灯光 光域网灯光 ^C^C_WEBLIGHT
ID_DGNLAYERS DGN 图层... 控制图层在 DGN 参考底图中的显示 ^C^C_dgnlayers
ID_AlignTopLeft 左上 将选定表格单元中的文字对齐方式更改为左上对齐 ^R^C^C_EditTableCell _Format _ALignment _TL _Quit
ID_AlignTopCenter 中上 将选定表格单元中的文字对齐方式更改为中上对齐 ^R^C^C_EditTableCell _Format _ALignment _TC _Quit
ID_AlignTopRight 右上 将选定表格单元中的文字对齐方式更改为右上对齐 ^R^C^C_EditTableCell _Format _ALignment _TR _Quit
ID_AlignMiddleLeft 左中 将选定表格单元中的文字对齐方式更改为左中对齐 ^R^C^C_EditTableCell _Format _ALignment _ML _Quit
ID_AlignMiddleCenter 正中 将选定表格单元中的文字对齐方式更改为正中对齐 ^R^C^C_EditTableCell _Format _ALignment _MC _Quit
ID_AlignMiddleRight 右中 将选定表格单元中的文字对齐方式更改为右中对齐 ^R^C^C_EditTableCell _Format _ALignment _MR _Quit
ID_AlignBottomLeft 左下 将选定表格单元中的文字对齐方式更改为左下对齐 ^R^C^C_EditTableCell _Format _ALignment _BL _Quit
ID_AlignBottomCenter 中下 将选定表格单元中的文字对齐方式更改为中下对齐 ^R^C^C_EditTableCell _Format _ALignment _BC _Quit
ID_AlignBottomRight 右下 将选定表格单元中的文字对齐方式更改为右下对齐 ^R^C^C_EditTableCell _Format _ALignment _BR _Quit
ID_RowInsAbove 在上方插入 在选定的单元上方插入行 ^R^C^C_EditTableCell _O _AB _Q
ID_RowInsBelow 在下方插入 在选定的单元下方插入行 ^R^C^C_EditTableCell _O _BE _Q
ID_RowDelete 删除行 删除表格中的行 ^R^C^C_EditTableCell _O _RO _Q
ID_ColumnInsLeft 在左侧插入 在选定的单元左侧插入列 ^R^C^C_EditTableCell _O _LE _Q
ID_ColumnInsRight 在右侧插入 在选定的单元右侧插入列 ^R^C^C_EditTableCell _O _RI _Q
ID_ColumnDelete 删除列 删除表格中的列 ^R^C^C_EditTableCell _O _CO _Q
ID_CellUnmerge 取消合并单元 分隔之前合并的表格单元 ^R^C^C_EditTableCell _O _U _Q
ID_CellMergeAll 合并全部 合并表格中的所有单元 ^R^C^C_EditTableCell _Operation _Merge _All _Quit
ID_CellMergeByRow 按行合并 按行合并表格单元 ^R^C^C_EditTableCell _Operation _Merge _Horizontal _Quit
ID_CellMergeByColumn 按列合并 按列合并表格单元 ^R^C^C_EditTableCell _Operation _Merge _Vertical _Quit
ID_CellMatch 匹配单元 将选定表格单元的特性应用到其他表格单元 _matchcell
ID_CellBorder 单元边框 控制单元边框的外观 ^R^C^C_EditTableCell _O _BO _Q
ID_DatatypeAngle 角度 设置表格单元中显示角度所使用的数据类型 ^R^C^C_EditTableCell _Content _Datatype _Angle _Quit
ID_DatatypeCurrency 货币 设置表格单元中显示货币所使用的数据类型 ^R^C^C_EditTableCell _Content _Datatype _CurrencY _Quit
ID_DatatypeDate 日期 设置表格单元中显示日期所使用的数据类型 ^R^C^C_EditTableCell _Content _Datatype _Date _Quit
ID_DatatypeDecimalNumber 十进制数 设置表格单元中显示小数所使用的数据类型 ^R^C^C_EditTableCell _Content _Datatype _DecNumber _Quit
ID_DatatypeGeneral 常规 设置表格单元中显示常规数据所使用的数据类型 ^R^C^C_EditTableCell _Content _Datatype _General _Quit
ID_DatatypePercentage 百分比 设置表格单元中显示百分比所使用的数据类型 ^R^C^C_EditTableCell _Content _Datatype _Percentage _Quit
ID_DatatypePoint 输入表格单元中显示坐标所使用的数据类型 ^R^C^C_EditTableCell _Content _Datatype _POint _Quit
ID_DatatypeText 文字 设置表格单元中显示文字所使用的数据类型 ^R^C^C_EditTableCell _Content _Datatype _Text _Quit
ID_DatatypeWholeNumber 整数 设置表格单元中显示整数所使用的数据类型 ^R^C^C_EditTableCell _Content _Datatype _WholeNumber _Quit
ID_DatatypeCustom 自定义表格单元格式... 自定义表格单元格式... ^R^C^C_EditTableCell _Content _Datatype _CustoM _Quit
ID_FormulaSum 求和 对某个表格单元范围中的值求和 ^R^C^C_EditTableCell _ExecuteOneAction _Operation _insertFOrmula _Sum
ID_FormulaAverage 均值 对某个表格单元范围中的值求平均值 ^R^C^C_EditTableCell _ExecuteOneAction _Operation _insertFOrmula _Average
ID_FormulaCount 计数 计算某个表格列或表格行中的单元数目 ^R^C^C_EditTableCell _ExecuteOneAction _Operation _insertFOrmula _COunt
ID_FormulaCell 单元 在公式中使用其他表格中的单元 ^R^C^C_EditTableCell _ExecuteOneAction _Operation _insertFOrmula _CEll
ID_FormulaEquation 方程式 插入基于等式的数学公式 ^R^C^C_EditTableCell _ExecuteOneAction _Operation _insertFOrmula _Equation
ID_InsertBlock 插入块 插入块 ^R^C^C_EditTableCell _O _BL _Q
ID_InsertField 插入字段 将文字字段插入到当前的表格单元 ^R^C^C_EditTableCell _O _FI _Q
ID_Unlock 解锁 解锁表格单元中的格式或内容以进行编辑 ^R^C^C_EditTableCell _Content _Unlock _Back _Format _Unlock _Quit
ID_LockContent 内容已锁定 锁定表格单元中的内容以进行编辑 ^R^C^C_EditTableCell _Content _Lock _Back _Format _Unlock _Quit
ID_LockFormat 格式已锁定 锁定表格单元中的格式以进行编辑 ^R^C^C_EditTableCell _Format _Lock _Back _Content _Unlock _Quit
ID_LockContentAndFormat 内容和格式已锁定 锁定表格单元中的内容和格式以进行编辑 ^R^C^C_EditTableCell _Content _Lock _Back _Format _Lock _Quit
ID_ManageCellContents 管理单元内容... 控制单元内容的次序和方向 ^R^C^C_EditTableCell _C _M _Q
ID_CellLink 链接单元... 在表格单元中的数据与 Microsoft Excel 文件中的数据之间建立链接 ^R^C^C_EditTableCell _D _N _Q
ID_CellUpdateLink 从源下载 从源文件下载更改 ^R^C^C_EditTableCell _D _U _Q
MM_1905 快速查看图形 启动快速查看图形 ^C^C_QVDrawing
MM_1906 快速查看布局 启动快速查看布局 ^C^C_QVLayout
MM_1909 快速查看图形关闭 关闭快速查看图形 ^C^C_QVDrawingClose
MM_1910 快速查看布局关闭 关闭快速查看布局 ^C^C_QVLayoutClose
ID_MnToolbars 工具栏 此项会根据可用的菜单组动态填充. ^C^C
ID_Radius 测量半径 测量圆或圆弧的半径 ^C^C_MEASUREGEOM _radius
ID_Angle 测量角度 测量角度 ^C^C_MEASUREGEOM _angle
ID_Volume 测量体积 测量体积 ^C^C_MEASUREGEOM _volume
MM_GeomConstraint_Coincident 几何约束, 重合 约束两个点使其重合,或者约束一个点使其位于对象或对象延长部分的任意位置 ^C^C_GcCoincident
MM_GeomConstraint_Perpendicular 几何约束, 垂直 约束两条直线或多段线线段,使其夹角始终保持为 90 度 ^C^C_GcPerpendicular
MM_GeomConstraint_Parallel 几何约束, 平行 约束两条直线,使其具有相同的角度 ^C^C_GcParallel
MM_GeomConstraint_Tangent 几何约束, 相切 约束两条曲线,使其彼此相切或其延长线彼此相切 ^C^C_GcTangent
MM_GeomConstraint_Horizontal 几何约束, 水平 约束一条直线或一对点,使其与当前 UCS 的 X 轴平行 ^C^C_GcHorizontal
MM_GeomConstraint_Vertical 几何约束, 竖直 约束一条直线或一对点,使其与当前 UCS 的 Y 轴平行 ^C^C_GcVertical
MM_GeomConstraint_Colinear 几何约束, 共线 约束两条直线,使其位于同一无限长的线上 ^C^C_GcCollinear
MM_GeomConstraint_Concentric 几何约束, 同心 约束选定的圆、圆弧或椭圆,使其具有相同的圆心点 ^C^C_GcConcentric
MM_Geomconstraint_smooth 几何约束, 平滑 约束一条样条曲线,使其与其他样条曲线、直线、圆弧或多段线彼此相连并保持 G2 连续性。 ^C^C_GcSmooth
MM_GeomConstraint_Symmetric 几何约束, 对称 约束对象上的两条曲线或两个点,使其以选定直线为对称轴彼此对称 ^C^C_GcSymmetric
MM_GeomConstraint_Equal 几何约束, 相等 约束两条直线或多段线线段使其具有相同长度,或约束圆弧和圆使其具有相同半径值 ^C^C_GcEqual
MM_GeomConstraint_Fix 几何约束, 固定 约束一个点或一条曲线,使其固定在相对于世界坐标系的特定位置和方向上 ^C^C_GcFix
MM_DimConstraint_Aligned 标注约束, 对齐 约束对象上两个点之间的距离,或者约束不同对象上两个点之间的距离。 ^C^C_DcAligned
MM_DimConstraint_Horizontal 标注约束, 水平 约束对象上两个点之间或不同对象上两个点之间 X 方向的距离 ^C^C_DcHorizontal
MM_DimConstraint_Vertical 标注约束, 竖直 约束对象上两个点之间或不同对象上两个点之间 Y 方向的距离 ^C^C_DcVertical
MM_DimConstraint_Angular 标注约束, 角度 约束直线段或多段线线段之间的角度、由圆弧或多段线圆弧段扫掠得到的角度,或对象上三个点之间的角度 ^C^C_DcAngular
MM_DimConstraint_Radius 标注约束, 半径 约束圆或圆弧的半径 ^C^C_DcRadius
MM_DimConstraint_Diameter 标注约束, 直径 约束圆或圆弧的直径 ^C^C_DcDiameter
MM_Del_Constraint 删除约束 删除选定对象上的所有约束 ^C^C_DelConstraint
MM_SelectObject 显示几何约束 显示或隐藏选定对象的几何约束 ^C^C_ConstraintBar
MM_Show_All 显示所有几何约束 显示图形中的所有几何约束 $M=$(if,$(or,$(eq,$(getvar,refeditname),""),$(eq,$(getvar,VIEWSKETCHMODE),1)),^C^C^Q_ConstraintBar _Showall,^C^C^Q_ConstraintBar)
MM_Hide_All 隐藏所有几何约束 隐藏图形中的所有几何约束 $M=$(if,$(or,$(eq,$(getvar,refeditname),""),$(eq,$(getvar,VIEWSKETCHMODE),1)),^C^C^Q_ConstraintBar _Hideall,^C^C^Q_ConstraintBar)
MM_ConstraintBarSettings 约束设置... 控制约束栏上的约束显示 ^C^C_ConstraintSettings
MM_Parameters 参数管理器 打开或关闭参数管理器 $M=$(if,$(and,$(>,$(getvar,ParametersStatus),0)),^C^C_PARAMETERSCLOSE,^C^C_PARAMETERS)
MM_AutoConstrain 自动约束 将多个几何约束应用于选定的对象 ^C^C_AutoConstrain
MM_Parameters_Menu_Macro 参数管理器菜单宏 打开或关闭参数管理器 $M=$(if,$(and,$(>,$(getvar,ParametersStatus),0)),^C^C_PARAMETERSCLOSE,^C^C_PARAMETERS)
MMU_0001 测试块 打开用于测试块的窗口 ^C^C_btestblock
ID_ConstructionGeometry 构造几何图形 将对象转换为构造几何图形 ^C^C_bconstruction
ID_BlockTable 块表 创建块特性表和夹点 ^C^C_btable
ID_BlockParameterPoint 块参数, 点 将点参数添加到块定义 ^C^C_bparameter _point
ID_BlockParameterLinear 块参数, 线性 将线性参数添加到块定义 ^C^C_bparameter _linear
ID_BlockParameterPolar 块参数, 极轴 将极轴参数添加到块定义 ^C^C_bparameter _polar
ID_BlockParameterXY 块参数, XY 将 XY 参数添加到块定义 ^C^C_bparameter _xy
ID_BlockParameterRotation 块参数, 旋转 将旋转参数添加到块定义 ^C^C_bparameter _rotation
ID_BlockParameterAlignment 块参数, 对齐 将对齐参数添加到块定义 ^C^C_bparameter _alignment
ID_BlockParameterFlip 块参数, 翻转 将翻转参数添加到块定义 ^C^C_bparameter _flip
ID_BlockParameterVisibility 块参数, 可见性 将可见性参数添加到块定义 ^C^C_bparameter _visibility
ID_BlockParameterLookup 块参数, 查寻 将查询参数添加到块定义 ^C^C_bparameter _lookup
ID_BlockActionMove 块操作, 移动 将移动操作添加到块定义 ^C^C_Bactiontool _move
ID_BlockActionStretch 块操作, 拉伸 将拉伸操作添加到块定义 ^C^C_bactiontool _stretch
ID_BlockActionPolarStretch 块操作, 极轴拉伸 将极轴拉伸操作添加到块定义 ^C^C_bactiontool _polar
ID_BlockActionScale 块操作, 缩放 将缩放操作添加到块定义 ^C^C_bactiontool _scale
ID_BlockActionRotate 块操作, 旋转 将旋转操作添加到块定义 ^C^C_bactiontool _rotate
ID_BlockActionFlip 块操作, 翻转 将翻转操作添加到块定义 ^C^C_bactiontool _flip
ID_BlockActionArray 块操作, 阵列 将阵列操作添加到块定义 ^C^C_bactiontool _array
ID_BlockActionLookup 块操作, 查寻 将查寻操作添加到块定义 ^C^C_bactiontool _lookup
ID_BlockParameterBasepoint 块参数, 基点 将基点参数添加到块定义 ^C^C_bparameter _base
MMU_0022 块约束参数, 对齐 约束一条直线的长度或两条直线之间、一个对象上的一点与一条直线之间以及不同对象上两点之间的距离 ^C^C_bcparameter _aligned
MMU_0023 块约束参数, 水平 约束一条直线或不同对象上两点之间在 X 轴方向上的距离 ^C^C_bcparameter _horizontal
MMU_0024 块约束参数, 竖直 约束一条直线或不同对象上两点之间在 Y 轴方向上的距离 ^C^C_bcparameter _vertical
MMU_0025 块约束参数, 角度 约束两条直线或多段线线段之间的角度 ^C^C_bcparameter _angular
MMU_0026 块约束参数, 半径 约束圆或圆弧的半径 ^C^C_bcparameter _radius
ID_ShowAllActions 显示所有动作 显示选定参数对象的动作栏 ^C^C_bactionbar _showall
ID_HideAllActions 隐藏所有动作 隐藏选定参数对象的动作栏 ^C^C_bactionbar _hideall
MMU_0029 块约束参数, 直径 约束圆或圆弧的直径 ^C^C_bcparameter _diameter
MMU_0030 块约束参数, 线性 创建水平或竖直约束和自定义特性 ^C^C_bcparameter _linear
MMU_0031 标注约束, 线性 约束两点之间的水平或竖直距离 ^C^C_DcLinear
MM_1911 拾取点 ^C^C_.-HATCHEDIT _AD
MM_1912 选择对象 ^C^C_.-HATCHEDIT _AD _S
MM_1913 删除边界 ^C^C_.-HATCHEDIT _R
MM_1914 重新创建 ^C^C_HATCHEDIT _B
MM_1915 独立的图案填充 ^C^C_HATCHEDIT _H
MM_1916 合并竖直多重引线 ^C^C_mleadercollect _v
MM_1917 合并水平多重引线 ^C^C_mleadercollect _h
MM_1918 换行 ^C^C_mleadercollect _w
MM_1919 多重引线对齐 - 分散 ^C^C_mleaderalign _O _D
MM_1920 多重引线对齐 - 水平 ^C^C_mleaderalign _O _P
MM_1921 多重引线对齐 - 设置间距 ^C^C_mleaderalign _O _S
MM_1922 多重引线编辑 - 删除 编辑多重引线对象 ^C^C_MLEADEREDIT _R
ID_SendTo3DPrintService 发布, 发送到三维打印服务 将实体对象和无间隙网格发送到三维打印服务 ^C^C_3dprintservice
ID_SECTIONPLANETOBLOCK 生成截面块 打开“生成截面/标高”对话框 ^C^C_SECTIONPLANETOBLOCK
ID_SECTIONPLANESETTINGS 截面平面设置 设置选定截面平面的显示选项。 ^C^C_SECTIONPLANESETTINGS
ID_SECTIONSPINNERS 截面微调器增量 在功能区内设置截面偏移的距离增量和切片厚度微调器控件 ^C^C_SECTIONSPINNERS
ID_DWFNewClippingBoundary DWF, 新建剪裁边界 允许您删除旧剪裁边界并创建一个新剪裁边界 ^C^C_dwfclip _N
ID_MiniTourBuildingWheel Steering Wheels, 巡视建筑控制盘(小) 通过鼠标光标大小的控制盘,提供对专用导航工具的访问,可使用这些工具在模型中漫游或穿越漫游模型。控制盘经过优化,可供熟练的三维用户使用 ^C^C_navswheelmode 5 '_navswheel
ID_MiniViewObjectWheel Steering Wheels, 查看对象控制盘(小) 通过鼠标光标大小的控制盘,提供对专用导航工具的访问,可使用这些工具查看模型中的对象。控制盘经过优化,可供熟练的三维用户使用 ^C^C_navswheelmode 4 '_navswheel
ID_2DNavigationWheel Steering Wheels, 二维导航控制盘 提供对基本二维导航工具(平移、缩放和回放)的访问。当系统没有配备带滚轮的鼠标时,控制盘特别有用 ^C^C_navswheelmode 3 '_navswheel
ID_BigTourBuildingWheel Steering Wheels, 巡视建筑控制盘(大) 提供在三维导航工具之间的快速切换,可使用这些工具在模型中漫游或穿越漫游模型。控制盘经过优化,可供三维新用户使用 ^C^C_navswheelmode 1 '_navswheel
ID_BigFullNavigationWheel Steering Wheels, 全导航控制盘(大) 提供对通用和专用导航工具的访问。控制盘经过优化,可供熟练的三维用户使用 ^C^C_navswheelmode 2 '_navswheel
ID_MiniFullNavigationWheel Steering Wheels, 全导航控制盘(小) 通过鼠标光标大小的控制盘,提供对通用导航工具(缩放、动态观察、平移和回放)的访问,以及对专用导航工具(中心、向上/向下、漫游和环视)的访问。控制盘经过优化,可供熟练的三维用户使用 ^C^C_navswheelmode 6 '_navswheel
ID_BigViewObjectWheel Steering Wheels, 查看对象控制盘(大) 提供在三维导航工具之间的快速切换,可使用这些工具查看模型中的对象。控制盘经过优化,可供三维新用户使用 ^C^C_navswheelmode 0 '_navswheel
ID_UCSSettings UCS, UCS 设置 管理已定义的用户坐标系 ^C^C_+UCSMAN 2
ID_PlotOptionsDialog 打印,“打印选项”对话框 ^C^C_+OPTIONS 3
ID_SectionPlaneSettings 截面, 截面平面设置 设置选定截面平面的显示设置 ^C^C_SECTIONPLANESETTINGS
ID_DGNNewClippingBoundary DGN, 新建剪裁边界 允许您删除旧剪裁边界并创建一个新剪裁边界 ^C^C_dgnclip _n
ID_DGNDeleteClippingBoundary DGN, 删除剪裁边界 删除剪裁边界 ^C^C_dgnclip _d
MM_1927 图像, 新建剪裁边界 允许您删除旧剪裁边界并创建一个新剪裁边界 ^C^C_imageclip _N
ID_XREFNewClipBoundary 外部参照, 新建剪裁边界 允许您删除旧剪裁边界并创建一个新剪裁边界 ^C^C_xclip _N
ID_XrefDeleteClipBoundary 外部参照, 删除剪裁边界 删除剪裁边界 ^C^C_xclip _D
ID_PDFNewClippingBoundary PDF, 新建剪裁边界 允许您删除旧剪裁边界并创建一个新剪裁边界 ^C^C_pdfclip _N
ID_DWFDeleteClipBoundary DWF, 删除剪裁边界 删除剪裁边界 ^C^C_dwfclip _d
ID_ImageDeleteClipBoundary 图像, 删除剪裁边界 删除剪裁边界 ^C^C_imageclip _D
ID_PDFDeleteClipBoundary PDF, 删除剪裁边界 删除剪裁边界 ^C^C_pdfclip _d
ID_EditConstraintText 编辑约束 在“在位编辑器”中编辑约束 ^C^C_textedit
ID_Export_DWF 输出为 DWF 输出为 DWF ^C^C_exporteplotformat 1 _exportdwf
ID_Export_PDF 输出为 PDF 输出为 PDF ^C^C_exporteplotformat 0 _exportpdf
ID_Export_DWFX 输出为 DWFx 输出为 DWFx ^C^C_exporteplotformat 2 _exportdwfx
ID_Publish_Preview 发布预览 在预览窗口中打开图形 ^C^C^Q_exportsettings _Preview
ID_Publish_Options 发布选项 显示“输出为 DWF”选项板 ^C^C^Q_exportsettings _Options
ID_ATTACH 附着 插入对外部文件(如其他图形、光栅图像和参考底图)的参照。 ^C^C_attach
ID_CLIP 剪裁 按照指定边界剪裁块、外部参照文件或视口 ^C^C_clip
ID_ADJUST 调整 调整图像或参考底图(DWF、DWFx、PDF 或 DGN)的淡入度、对比度、亮度和单色设置 ^C^C_adjust
ID_ULAYERS 参考底图图层 控制图层在参考底图中的显示 ^C^C_ulayers
ID_PDFIMPORTCMD PDFIMPORT 将 PDF 文件或 PDF 参考底图的指定区域作为 AutoCAD 对象输入 ^C^C_pdfimport;
ID_INSERT_PDFIMPORT 输入 PDF 文件 将数据从 PDF 文件的某个页面作为 AutoCAD 对象输入到到当前图形中。 ^C^C_pdfimport _file;
ID_INSERT_PDFIMPORT2 输入 PDF 文件 将数据从 PDF 文件的某个页面作为 AutoCAD 对象输入到到当前图形中。 ^C^C_pdfimport _file;
ID_INSERT_DGNIMPORT 输入 DGN 文件 将数据从 DGN 文件作为 AutoCAD 对象输入到当前图形中。 ^C^C_dgnimport;
ID_INSERT_OTHERIMPORT 输入其他文件格式 将不同格式的文件输入(例如 PDF 和 DGN)输入到当前图形中。 ^C^C_import;
ID_INSERT_PDFSHXTEXT PDF SHX 识别 将输入的 SHX 几何图形从 PDF 文件转换为文字对象 ^C^C_pdfshxtext
ID_INSERT_PDFSHXTEXT_SETTINGS PDF SHX 识别设置 指定在将输入的 PDF 文字几何图形转换为文字时要与其进行比较的 SHX 字体 ^C^C_PDFSHXTEXTSETTINGS 1;_pdfshxtext _settings
ID_INSERT_TXT2MTXT 将文字转换为多行文字 将多个文字对象合并为单个多行文字对象 ^C^C_txt2mtxt;
ID_FRAME_OFF 边框关 确定所有边框(包括图像边框、XClip 边框以及参考底图边框)的显示状态 ^C^C_FRAME 0;
ID_FRAME_ON 边框开 确定所有边框(包括图像边框、XClip 边框以及参考底图边框)的显示状态 ^C^C_FRAME 1;
ID_FRAME_DISPLAYNOPLOT 显示但不打印边框 确定所有边框(包括图像边框、XClip 边框以及参考底图边框)的显示状态 ^C^C_FRAME 2;
ID_FRAME_VARIES 边框可变选项 确定所有边框(包括图像边框、XClip 边框以及参考底图边框)的显示状态 ^C^C_FRAME 3;
ID_UOSNAP_OFF 参考底图对象捕捉关 打开/关闭所有参考底图对象的对象捕捉。 ^C^C_UOSNAP 0;
ID_UOSNAP_ON 参考底图对象捕捉开 打开/关闭所有参考底图对象的对象捕捉。 ^C^C_UOSNAP 1;
ID_UOSNAP_VARIES 参考底图对象捕捉可变选项 打开/关闭所有参考底图对象的对象捕捉。 ^C^C_UOSNAP 2;
ID_PDFCLIP Pdf 剪裁... PDFCLIP 命令 - 允许用户为其 PDF 参考底图指定剪裁边界 ^C^C_pdfclip
ID_PDFLAYERS Pdf 图层... 控制图层在 PDF 参考底图中的显示 ^C^C_pdflayers
ID_PDFOSNAP Pdf 对象捕捉... PDFOSNAP 命令 - 允许用户打开或关闭对 PDF 矢量几何图形进行对象捕捉的功能。仅当 PDFOSNAP 为 1 时,此项旁边会出现一个复选标记 $M=$(if,$(and,$(getvar,pdfosnap),1),^C^C_pdfosnap 0,^C^C_pdfosnap 1)
ID_PDFATTACH PDF 参考底图... 将新的 PDF 附着到当前图形 ^C^C_pdfattach
ID_INSERT_ATTACH 附着... 将新 PDF 附着到当前图形: 与 ATTACH 命令功能相同。 ^C^C_attach
ID_Reverse 反转 使直线、多段线、样条曲线和螺旋对象反向 ^C^C_reverse
ID_MeshOptions 网格选项 ^C^C_MESHOPTIONS
ID_TestBlockClose 关闭测试块窗口 退出测试块窗口并返回到块编辑器 ^C^C_CLOSE
MM_CONSTRAINTNAMEFORMAT_1 显示标注约束的值 ^C^C_constraintnameformat 1
MM_CONSTRAINTNAMEFORMAT_0 名称 显示标注约束的名称 ^C^C_constraintnameformat 0
MM_CONSTRAINTNAMEFORMAT_2 名称和表达式 显示标注约束的名称和表达式 ^C^C_constraintnameformat 2
ID_3DSCALE 三维缩放 在三维视图中,显示“三维缩放”小控件以协助缩放三维对象 ^C^C_3dscale
ID_ConstraintSettingsGeometricTab 约束设置, 几何 打开“约束设置”对话框的“几何”选项卡。 $M=$(if,$(or,$(eq,$(getvar,refeditname),""),$(eq,$(getvar,VIEWSKETCHMODE),1)),^C^C_+CONSTRAINTSETTINGS 0,^C^C_+CONSTRAINTSETTINGS)
ID_ConstraintSettingsDimensionalTab 约束设置, 标注 打开“约束设置”对话框的“标注”选项卡。 $M=$(if,$(or,$(eq,$(getvar,refeditname),""),$(eq,$(getvar,VIEWSKETCHMODE),1)),^C^C_+CONSTRAINTSETTINGS 1,^C^C_+CONSTRAINTSETTINGS)
ID_DimensionalConstraintConvert 标注约束, 转换 将标注转换为标注约束 ^C^C_DcConvert
ID_BlockConstraintParameterConvert 块约束参数, 转换 将标注约束转换为约束参数 ^C^C_BCPARAMETER _Convert
ID_BlockEditorSettings 块编辑器, 设置 管理块编辑器的设置 ^C^C_besettings
ID_OptionsDisplayTab 选项, “显示”选项卡 打开“选项”对话框的“显示”选项卡。 ^C^C_+options 1
MM_Show_All_Dyn_Constr 显示所有动态约束 显示图形中的所有动态标注约束 $M=$(if,$(or,$(eq,$(getvar,refeditname),""),$(eq,$(getvar,VIEWSKETCHMODE),1)),^C^C^Q_dcdisplay _Showall,^C^C^Q_dcdisplay)
MM_Hide_All_Dyn_Constr 隐藏所有动态约束 隐藏图形中的所有动态标注约束 $M=$(if,$(or,$(eq,$(getvar,refeditname),""),$(eq,$(getvar,VIEWSKETCHMODE),1)),^C^C^Q_dcdisplay _Hideall,^C^C^Q_dcdisplay)
MM_Show_Dyn_Constr 显示动态约束 显示或隐藏选定对象的动态标注约束 ^C^C_dcdisplay
MM_Toggle_Infer_Constr 切换推断约束 ^P'_.CONSTRAINTINFER;$M=$(if,$(eq,$(getvar,CONSTRAINTINFER),0),1,$(if,$(eq,$(getvar,CONSTRAINTINFER),1),0))
ID_HatchToBack 绘图次序, 将图案填充项后置 强制将全部图案填充项显示在所有其他对象后面 ^C^C_HATCHTOBACK
ID_PEdit_Close 多段线编辑, 闭合 闭合开放的多段线 ^C^C_pedit _close _exit
ID_Pedit_Join 多段线编辑, 合并 将多段线与其他对象合并 ^C^C_pedit _join
ID_Pedit_Width 多段线编辑, 宽度 ^C^C_pedit _width \_exit
ID_Pedit_Fit 多段线编辑, 拟合 通过多段线顶点在多段线顶点之间拟合圆弧对 ^C^C_pedit _fit _exit
ID_Pedit_Spline 多段线编辑, 样条曲线 ^C^C_pedit _spline _exit
ID_Pedit_Decurve 多段线编辑, 非曲线化 非曲线化样条曲线或曲线拟合多段线 ^C^C_pedit _decurve _exit
ID_Pedit_Reverse 多段线编辑, 反转 反转多段线方向 ^C^C_pedit _reverse _exit
ID_Pedit_Open 多段线编辑, 打开 打开闭合的多段线 ^C^C_pedit _open _exit
ID_Download_OfflineHelp 下载脱机帮助 ^C^C^P_ai_download_offlinehelp ^P
ID_PointCloudAttach 附着点云 将点云扫描和项目文件附着到图形。 ^C^C_PointCloudAttach
ID_PointCloudDensity 点云密度 基于当前限制的百分比,设置图形中可以为所有点云显示的点密度。 ^C^C_PointCloudDensity
ID_PointCloudAutoUpdate 点云自动更新 ^C^C_PointCloudAutoUpdate
ID_PointCloudRTDensity 点云实时密度 设置在实时缩放、平移或动态观察期间显示的点的密度。 ^C^C_PointCloudRTDensity
ID_PointCloud_Colormap 点云颜色映射 自定义颜色方案,并设置点云的强度范围和标高样式化;设置分类特性中的颜色。 ^C^C_pointcloudcolormap
ID_PointCloud_Stylization_RGB 点云颜色映射 设置选定点云的颜色样式化。 ^C^C_pointcloudstylize;$M=$(if,$(eq,$(getvar,cmdactive),1),_rgb;)^Z
ID_PointCloud_Stylization_Object 点云颜色映射 设置选定点云的颜色样式化。 ^C^C_pointcloudstylize;$M=$(if,$(eq,$(getvar,cmdactive),1),_object;)^Z
ID_PointCloud_Stylization_Intensity 点云颜色映射 设置选定点云的颜色样式化。 ^C^C_pointcloudstylize;$M=$(if,$(eq,$(getvar,cmdactive),1),_intensity;)^Z
ID_PointCloud_Stylization_Elevation 点云颜色映射 设置选定点云的颜色样式化。 ^C^C_pointcloudstylize;$M=$(if,$(eq,$(getvar,cmdactive),1),_elevation;)^Z
ID_PointCloud_Stylization_Normal 点云颜色映射 设置选定点云的颜色样式化。 ^C^C_pointcloudstylize;$M=$(if,$(eq,$(getvar,cmdactive),1),_normal;)^Z
ID_PointCloud_Stylization_Classification 点云颜色映射 设置选定点云的颜色样式化。 ^C^C_pointcloudstylize;$M=$(if,$(eq,$(getvar,cmdactive),1),_classification;)^Z
ID_Crop_Rectangular 点云裁剪矩形 指定用于点云的三维裁剪边界。 ^C^C_pointcloudcrop
ID_Crop_Polygonal 点云裁剪多边形 指定用于点云的三维裁剪边界。 ^C^C_pointcloudcrop _polygon
ID_Crop_Circular 点云裁剪圆形 指定用于点云的三维裁剪边界。 ^C^C_pointcloudcrop _circular
ID_PointCloud_Uncrop 点云取消裁剪 取消裁剪点云。 ^C^C_pointclouduncrop
ID_PointCloud_Uncrop_Last 点云取消裁剪 从点云删除最后一个裁剪边界。 ^C^C_pointcloudcrop;$M=$(if,$(eq,$(getvar,cmdactive),1),_remove;)^Z
ID_PointCloud_Crop_Invert 点云裁剪反转 在显示点云裁剪区域外的点和显示裁剪区域内的点之间切换。 ^C^C_pointcloudcrop;$M=$(if,$(eq,$(getvar,cmdactive),1),_invert;)^Z
ID_PointCloud_Manager 点云管理器 打开或关闭点云管理器以控制扫描和面域的可见性。 ^C^C_PointCloudManager
ID_PointCloud_Manager_Close 关闭点云管理器 打开或关闭点云管理器以控制扫描和面域的可见性。 ^C^C_PointCloudManagerClose
ID_PointCloud_Manager_Dash 点云管理器划线 打开或关闭点云管理器以控制扫描和面域的可见性。 ^C^C_-PointCloudManager
ID_PointCloud_Crop 点云裁剪 指定用于点云的三维裁剪边界。 ^C^C_PointCloudCrop
ID_PointCloud_UnCrop 点云取消裁剪 取消裁剪点云。 ^C^C_PointCloudCrop
ID_PointCloud_Stylize 点云样式化 设置选定点云的颜色样式化。 ^C^C_PointCloudStylize
MM_1928 关闭图案填充创建 退出图案填充创建并关闭上下文选项卡 ^M
MM_1929 设定原点 ^C^C_hatchsetorigin
MM_1930 设定边界 ^C^C_hatchsetboundary
MM_1931 生成边界 ^C^C_hatchgenerateboundary
ID_MaterialsEditor 材质编辑器 打开和关闭材质编辑器 $M=$(if,$(and,$(>,$(getvar,mateditorstate),0)),^C^C_mateditorclose,^C^C_mateditoropen)
ID_IsolateObjects 隔离对象 在当前绘图任务中临时隐藏除选定对象外的所有对象。 ^C^C_IsolateObjects
ID_HideObjects 隐藏对象 在当前绘图任务中临时隐藏选定对象。 ^C^C_HideObjects
ID_UnIsolateObjects 结束对象隔离 取消隐藏临时隐藏的对象。 ^C^C_UnIsolateObjects
ID_SelSimilar 选择类似对象 根据“类似”设置选择类似于选定对象的所有对象。 ^C^C_SelectSimilar
ID_AddSelected 添加选定对象 根据选定对象的对象类型启动绘制命令。 ^C^C_addselected
ID_ACETNCOPY 复制嵌套对象 复制在块和外部参照中嵌套的对象 ^C^C_ncopy
MM_1932 关闭图案填充编辑器 退出图案填充编辑器并关闭上下文选项卡 ^R^C^C_-HATCHEDIT _CA
ID_BLEND_CURVES 光顺曲线 在两条开放曲线的端点之间创建相切或平滑的样条曲线 ^C^C_BLEND
ID_GROUP 创建对象组 ^C^C_group
ID_Ungroup 解除编组 将组分解或解组 ^C^C_ungroup
ID_GroupEdit 组编辑 将对象添加至组或从组中删除对象 ^C^C_groupedit
ID_GroupEditAdd 添加到组 将对象添加至组 ^C^C_groupedit _add
ID_GroupEditRemove 从组中删除 将对象从组中删除 ^C^C_groupedit _remove
ID_GroupSelection 启用/禁用组选择 启用和禁用组选择 '_setvar;pickstyle;$M=$(if,$(eq,$(getvar,pickstyle),0),1,$(if,$(eq,$(getvar,pickstyle),1),0,$(if,$(eq,$(getvar,pickstyle),2),3,2)))
ID_ClassicGroup 编组管理器 显示组对话框以管理命名组 ^C^C_classicgroup
ID_GroupBoundBox 组边界框 启用和禁用组边界框 ^C^C
ID_EditArray 编辑阵列 编辑关联阵列对象及其源对象。 ^C^C_arrayedit
ID_RectangularArray 矩形阵列 按任意行、列和层级组合分布对象副本。 ^C^C_arrayrect
ID_PathArray 路径阵列 沿整个路径或部分路径平均分布对象副本。 ^C^C_arraypath
ID_PolarArray 环形阵列 绕某个中心点或旋转轴形成的环形图案平均分布对象副本。 ^C^C_arraypolar
ID_ArrayColumns 阵列列数 指定阵列中的列数 ^C^C_arrayedit _columns
ID_ArrayReset 阵列重置 恢复已删除项并删除任何替代项。 ^C^C_arrayedit _reset
ID_ArrayEditSourceObjectInPlace 阵列在位编辑源对象 激活编辑状态,以便编辑选定项的源对象(或替换源对象)。 ^C^C_arrayedit _source
ID_ArrayReplaceItem 阵列替换项目 替换项目 ^C^C_arrayedit _replace
ID_ArrayRows 阵列行数 指定阵列中的行数 ^C^C_arrayedit _rows
ID_ArrayLevels 阵列层数 指定阵列中的层数 ^C^C_arrayedit _levels
ID_ArrayItems 阵列项目数 指定沿路径进行阵列的项目数 ^C^C_arrayedit _items
ID_ArrayMethodDivide 阵列方法定数等分 重新分布项,以便平均划分路径的长度。 ^C^C_arrayedit _method _divide
ID_ArrayMethodMeasure 阵列方法定距等分 在编辑路径后,或者在通过夹点或特性选项板更改项数之后,保留当前项间隔。 ^C^C_arrayedit _method _measure
ID_ArrayAngleBetweenItems 阵列项目间的角度 指定阵列中项目间的角度 ^C^C_arrayedit _angle
ID_ArrayFillAngle 阵列填充角度 指定阵列的填充角度;阵列中第一个项目和最后一个项目之间的角度 ^C^C_arrayedit _fill
ID_ArrayAlignItems 阵列对齐项目 将阵列项目与路径对齐 ^C^C_arrayedit _align
ID_ArrayRotateItems 阵列旋转项目 进行阵列时旋转项目 ^C^C_arrayedit _rotate
ID_ArrayBasePoint 阵列基点 指定阵列的基点 ^C^C_arrayedit _base
ID_ArrayZDirection 阵列 Z 方向 指定路径阵列的 Z 方向 ^C^C_arrayedit _Z
ID_Arrayeditclosesave 阵列编辑关闭保存 保存对阵列源对象所做的更改,并退出阵列编辑状态。 ^C^C_-arrayclose _yes
ID_Arrayeditclosediscard 阵列编辑关闭放弃 放弃对阵列源对象所做的更改,并退出阵列编辑状态。 ^C^C_-arrayclose _no
ID_DWGCVRT DWG 转换 转换选定图形文件的图形格式版本 ^C^C_DWGCONVERT
ID_OVERKILL 删除重复对象 通过删除重复和/或不需要的对象来清理重叠的几何图形 ^C^C_overkill
ID_ASSOCARRAY_RECT_BASEPOINT 基点 重定义阵列的基点。 ^C^C_arrayedit _b \_x
ID_ASSOCARRAY_POLAR_BASEPOINT 基点 重定义基点和阵列中夹点的位置。 ^C^C_arrayedit _b \_x
ID_ASSOCARRAY_PATH_BASEPOINT 基点 重定义基点。允许重新定位相对于路径曲线起点的阵列的第一个项目。 ^C^C_arrayedit _b \_x
ID_ASSOCARRAY_CREATION_RECT_BASEPOINT 基点 重定义阵列的基点。 _Base
ID_ASSOCARRAY_CREATION_POLAR_BASEPOINT 基点 重定义基点和阵列中夹点的位置。 _Base
ID_ASSOCARRAY_CREATION_PATH_BASEPOINT 基点 重定义基点。允许重新定位相对于路径曲线起点的阵列的第一个项目。 _Base
ID_ASSOCARRAY_CREATION_PATH_TANGENT 切线
方向 指定相对于路径曲线的第一个项目的位置。允许指定与路径曲线的起始方向平行的两个点。 _T
ID_ASSOCARRAY_RECT_EDITSOURCE 编辑源 激活编辑状态,以便编辑选定项的源对象(或替换源对象)。 ^C^C_arrayedit _s
ID_ASSOCARRAY_PATH_EDITSOURCE 编辑源 激活编辑状态,以便编辑选定项的源对象(或替换源对象)。 ^C^C_arrayedit _s
ID_ASSOCARRAY_POLAR_EDITSOURCE 编辑源 激活编辑状态,以便编辑选定项的源对象(或替换源对象)。 ^C^C_arrayedit _s
ID_ASSOCARRAY_RECT_REPLACEITEM 替换项目 替换选定项或引用原始源对象的所有项的源对象。 ^C^C_arrayedit _rep
ID_ASSOCARRAY_PATH_REPLACEITEM 替换项目 替换选定项或引用原始源对象的所有项的源对象。 ^C^C_arrayedit _rep
ID_ASSOCARRAY_POLAR_REPLACEITEM 替换项目 替换选定项或引用原始源对象的所有项的源对象。 ^C^C_arrayedit _rep
ID_ASSOCARRAY_RECT_RESETARRAY 重置阵列 恢复已删除项并删除任何替代项。 ^C^C_arrayedit _res _x
ID_ASSOCARRAY_PATH_RESETARRAY 重置阵列 恢复已删除项并删除任何替代项。 ^C^C_arrayedit _res _x
ID_ASSOCARRAY_POLAR_RESETARRAY 重置阵列 恢复已删除项并删除任何替代项。 ^C^C_arrayedit _res _x
ID_PathArrayMethodMeasure 阵列方法定距等分 在编辑路径后,或者在通过夹点或特性选项板更改项数之后,保留当前项间隔。 ^C^C_arrayedit _method _measure _x
ID_OnlineDesignShare 共享设计视图 将设计视图上载到安全的云位置,以便可以从浏览器查看和共享它们。 ^C^C_OnlineDesignShare
ID_SaveToWebMobile 保存到 Web 和 Mobile 将当前图形保存到 AutoCAD Web 和 Mobile。 ^C^C_SAVETOWEBMOBILE
ID_OpenFromWebMobile 从 Web 和 Mobile 打开 从 AutoCAD Web 和 Mobile 打开现有图形。 ^C^C_OPENFROMWEBMOBILE
ID_ShareView 共享视图 将设计视图上载到安全的云位置,以便可以从浏览器查看和共享它们。 ^C^C_ShareView
ID_SharedViews 共享视图 打开“共享视图”选项板。 $M=$(if,$(and,$(>,$(getvar,SHAREDVIEWSTATE),0)),^C^C'_SHAREDVIEWSCLOSE,^C^C'_SHAREDVIEWS)
ID_DWGHISTORY DWG 历史记录 打开“DWG 历史记录”选项板。 $M=$(if,$(and,$(>,$(getvar,DWGHISTORYSTATE),0)),^C^C'_DWGHISTORYCLOSE,^C^C'_DWGHISTORY)
ID_AutoCAD360 AutoCAD 360 在您的默认浏览器中启动 AutoCAD Web。 ^C^C_ONLINEAUTOCAD360
MM_1836 投影视图 从现有工程视图创建投影视图。 ^C^C_viewproj
MM_1837 更新视图 更新因为源模型已更改而过期的选定工程视图。 ^C^C_viewupdate
MM_1840 编辑视图 编辑选定的工程视图 ^C^C_viewedit
ID_PathArrayMethodDivide 阵列方法定数等分 重新分布项,以便平均划分路径的长度。 ^C^C_arrayedit _method _divide _x
ID_LeaderOnly 绘图次序, 仅引线 强制引线对象显示在所有其他对象之前。 ^C^C^P_texttofront _l ^P
ID_EXTRACTISOLINES 提取素线 以 U 或 V 方向从曲面、实体或实体对象的面创建素线曲线 ^C^C_SURFEXTRACTCURVE
ID_CloseArrayEditor 关闭阵列 退出阵列并清除选择 ^P_ARRAYEDIT _caNcel
ID_Render_Online 联机渲染 上载当前图形并使用 Autodesk 联机渲染服务渲染其三维视图。 ^C^C_renderonline
ID_Show_Render_Gallery 显示渲染库 在浏览器中打开已完成的和正在进行的渲染的联机库。 ^C^C_showrendergallery
ID_TouchMode 选择模式 取消触摸屏幕操作并返回到用户选择状态。 ^C^C^C
MM_SECTIONVIEW 截面视图 从现有工程视图创建截面视图。 ^C^C_viewsection
MM_PROJECTEDVIEW 投影视图 从现有工程视图创建投影视图。 ^C^C_viewproj
MM_DETAILVIEW 局部视图 从现有工程视图创建局部视图。 ^C^C_viewdetail
MM_EDITVIEWSKETCH 编辑视图草图 编辑选定的工程视图的草图。 ^C^C_viewsymbolsketch
ID_SubObjectViewComponent 工程视图部件 打开过滤,以便可以选择工程视图中的子对象部件。 (setvar "SubObjSelectionMode" 5)
MM_190_068EF 恢复视口 在单视口和上次的多视口配置之间切换。 ^C^C_-vports _T
MM_190_05DBE 视口, 锁定, 否 解锁视口对象的比例 ^C^C_-vports _Lock _off
MM_190_61B6E 视口, 锁定, 是 锁定视口对象的比例 ^C^C_-vports _lock _on
ID_ADCClose 关闭设计中心 关闭设计中心 ^C^C_adcclose
ID_AIDimPrec 标注精度 更改标注精度 ^C^C_aidimprec
ID_AIObjectScaleAdd 注释比例 将注释比例添加到选定的注释性对象 ^C^C_aiobjectscaleadd
ID_Arx Arx 加载、卸载 ObjectARX 应用程序并提供相关信息 ^C^C_arx
ID_AttExt 提取属性 将属性数据和与块关联的信息文字提取到文件 ^C^C_attext
ID_AutoPublish 发布图形 将图形自动发布为 DWF、DWFx 或 PDF 文件并发布到指定位置 ^C^C_autopublish
ID_BmpOut 保存为 BMP 以与设备无关的位图格式将选定对象保存到文件中 ^C^C_bmpout
ID_ClassicLayer 图层特性管理器 打开传统图层特性管理器 ^C^C_classiclayer
ID_ClassicXref XREF 管理当前图形中的参照图形文件 ^C^C_classicxref
ID_CommandlineHide 隐藏命令行 隐藏命令行窗口 ^C^C_commandlinehide
ID_CuiUnload 卸载 CUI 卸载 CUIx 文件 ^C^C_cuiunload
ID_Delay 延迟 在脚本中提供指定时间的暂停 ^C^C_delay
ID_Dim 标注 访问标注模式命令 ^C^C_dim
ID_DimDisassociate 删除关联性 删除选定标注的关联性 ^C^C_dimdisassociate
ID_DxfOut Dxfout 以新文件名保存当前图形的副本 ^C^C_dxfout
ID_Elev 标高 设置新对象的标高和拉伸厚度 ^C^C_elev
ID_Fill 填充 控制对象的填充(例如图案填充、二维实体和宽多段线) ^C^C_fill
ID_Filter 过滤器 创建一个要求列表,对象必须符合这些要求才能包含在选择集中 ^C^C_filter
ID_LayerClose 关闭图层特性管理器 关闭图层特性管理器 ^C^C_layerclose
ID_LayerStateSave 保存图层状态 保存新图层状态 ^C^C_layerstatesave
ID_MaterialAssign 指定材质 使用在 CMATERIAL 系统变量中定义的当前材质 ^C^C_materialassign
ID_MenuUnload 卸载菜单 卸载 ACAD 菜单文件 ^C^C_menuunload
ID_Model 模型 从命名(图纸空间)布局切换到模型布局 ^C^C_model
ID_MSlide MSlide 创建当前模型视口或当前布局的幻灯片文件 ^C^C_mslide
ID_Multiple 多个 重复下一条命令直到被取消 ^C^C_multiple
ID_MVSetup MVSetup 设置图形的规格 ^C^C_mvsetup
ID_Netload Netload 加载 .NET 应用程序 ^C^C_netload
ID_OLEOpen 打开 OLE 在其关联的应用程序中打开 OLE 对象 ^C^C_oleopen
ID_PlotStamp 打开 OLE 将打印戳记放在每个图形的指定角点上,并将其记录到文件中 ^C^C_plotstamp
ID_PNGOut 输出为 PNG 输出为 PNG 文件 ^C^C_pngout
ID_PropertiesClose 关闭“特性”选项板 关闭“特性”选项板 ^C^C_propertiesclose
ID_PSetupIn 输入设置 将用户定义的页面设置输入到新图形布局中 ^C^C_psetupin
ID_PSpace 图纸空间 在布局中,从视口中的模型空间切换到图纸空间 ^C^C_pspace
ID_QCClose 关闭“快速计算器” 关闭“快速计算器” 计算器 ^C^C_qcclose
ID_Redefine 重定义 恢复被 UNDEFINE 替代的 AutoCAD 内部命令 ^C^C_redefine
ID_RegenAuto 重生成 控制图形的自动重生成 ^C^C_regenauto
ID_RibbonClose 关闭功能区 关闭功能区窗口 ^C^C_ribbonclose
ID_Tablet TABLET 校准、配置、打开和关闭附着的数字化仪 ^C^C_tablet
ID_TableEdit 编辑表 编辑表格单元中的文字 ^C^C_tabledit
ID_Taskbar 任务栏 控制在 Windows 任务栏中是分别显示多个打开的图形还是分组显示 ^C^C_taskbar
ID_ToolPalettesClose 关闭“工具选项板” 关闭“工具选项板”窗口 ^C^C_toolpalettesclose
ID_Undefine UNDEFINE 命令 允许应用程序定义的命令替代内部命令 ^C^C_undefine
ID_ViewRes 视口分辨率 设定当前视口中对象的分辨率 ^C^C_viewres
ID_VPLayer 视口图层 设置视口中图层的可见性 ^C^C_vplayer
ID_VSCurrent 当前视觉样式 设置当前视口中的视觉样式 ^C^C_vscurrent
ID_VSlide 显示图像幻灯片 在当前视口中显示图像幻灯片文件 ^C^C_vslide
ID_WMFOut 另存为 WMF 将对象保存到 Windows 图元文件 ^C^C_wmfout
ID_Xplode Xplode 将复合对象分解为其部件对象 ^C^C_xplode
ID_Menu_MenuLoad 加载菜单 加载 ACAD 菜单文件 ^C^C_menuload
MM_EditSynmonymList 自定义, 编辑同义词列表 编辑同义词列表 ^C^C^P_ai_editcustfile $M=$(getvar,program)SynonymsGlobalDB.pgp;^P
MM_EditAutoCorrectList 自定义, 编辑自动更正列表 编辑自动更正列表 ^C^C^P_ai_editcustfile $M=AutoCorrectUserDB.pgp;^P
MM_200_0A027 地理贴图图像鸟瞰 ^C^C
MM_200_2354D 地理贴图图像道路 ^C^C
MM_200_68883 地理贴图图像混合 ^C^C
MM_200_7731A 地理贴图图像非常精细 ^C^C
MM_200_81479 地理贴图图像精细 ^C^C
MM_200_FCEBB 地理贴图图像最佳 ^C^C
MM_200_D3049 地理贴图图像粗糙 ^C^C
ID_TextAlign 文字对齐 对齐并间隔排列选定的文字对象 ^C^C_textalign
ID_HELP_DA 桌面分析... 显示“桌面分析”对话框 ^C^C_DESKTOPANALYTICS
MM_201_7A2D1 截面平面后视 创建相对于 UCS 的后视方向的截面对象 ^C^C_sectionplane _O _A
MM_201_E2F8C 截面平面仰视 创建相对于 UCS 的仰视方向的截面对象。 ^C^C_sectionplane _O _B
MM_201_F2FEC 截面平面右视 创建相对于 UCS 的右视方向的截面对象。 ^C^C_sectionplane _O _R
MM_201_7EA12 截面平面左视 创建相对于 UCS 的左视方向。 ^C^C_sectionplane _O _L
MM_201_64A93 截面平面俯视 创建相对于 UCS 的俯视方向的截面对象。 ^C^C_sectionplane _O _T
MM_201_4A578 截面平面前视 创建相对于 UCS 的前视方向的截面对象 ^C^C_sectionplane _O _F
MM_201_3C399 截面平面 2 点 通过指定点或单击实体面或点云线段创建截面对象。 ^C^C_sectionplane
MM_201_69253 提取截面线 从活动截面平面的点云提取二维几何图形 ^C^C_pcextractsection
ID_PC_Extract_Corner 点云提取角点 从三个平面线段或点云的交点提取角点。 ^C^C_pcextractcorner
ID_PC_Extract_Edge 点云提取边 从点云的两个平面线段的交点提取直线。 ^C^C_pcextractedge
ID_PC_Extract_Center_Line 点云提取中心线 从点云的圆柱段提取中心线。 ^C^C_pcextractcenterline
ID_Dimension 标注 在单个命令会话中创建多种类型的标注。 ^C^C_dim
ID_BlocksPalette 打开或关闭“块”选项板 $M=$(if,$(and,$(getvar,blockstate),1),'_blocksPaletteClose,'_blockspalette)
ID_BlocksPaletteClose 关闭“块”选项板 关闭“块”选项板 ^C^C_blockspaletteclose
ID_Centerline 中心线 创建与选定直线和多段线关联的指定线型的中心线几何图形。 ^C^C_centerline
ID_Centermark 圆心标记 在选定圆、圆弧或多边形圆弧的中心处创建关联的十字形标记。 ^C^C_centermark
ID_CenterDisassociate 中心取消关联 删除圆心标记或中心线与其所定义的对象的关联性。 ^C^C_CenterDisassociate
ID_CenterReset 中心重置 将中心线重置为在 CENTEREXE 系统变量中指定的当前值。 ^C^C_CenterReset
ID_CenterReassociate 中心重新关联 将中心标记或中心线对象关联或重新关联到选定的对象。 ^C^C_CenterReassociate
ID_SYSVARMONITOR SYSVARMONITOR 启动 SysvarMonitor 命令 ^C^C_sysvarmonitor
ID_Publish_PDF_Options 发布 PDF 选项 显示“PDF 选项”对话框 ^C^C^Q_exportsettings _pDfoptions
ID_Osnap_GeoCenter 捕捉,几何中心 捕捉到多段线、二维多段线和二维样条曲线的几何中心点 _gcen
ID_PrintStudio 发布, Print Studio 将实体对象和无间隙网格发送到 Autodesk Print Studio (仅适用于 64 位系统)。 ^C^C_3dprint
ID_RESET_EXTENSION_LENGTH 重置延伸长度 重置延伸长度 ^C^C_CENTERRESET
ID_NEWVIEW 新建视图 通过当前视口中显示的内容或者定义矩形窗口,保存新的命名视图 ^C^C_newview
ID_DWG_COMPARE DWG 比较 允许您高亮显示同一图形的两个修订或不同图形之间的差异 ^C^C_COMPARE
ID_QuickMeasure 快速测量 在二维平面图中显示光标附近的几何图形的测量值 ^C^C_MEASUREGEOM _quick
ID_CLASSICINSERT 插入块 - 经典 向当前图形插入块或图形 ^C^C_classicinsert

评论