外文翻译.doc

TGSS-50型水平刮板输送机机头段设计

收藏

压缩包内文档预览:
预览图 预览图 预览图 预览图 预览图 预览图 预览图 预览图 预览图 预览图 预览图 预览图
编号:208527126    类型:共享资源    大小:871.41KB    格式:ZIP    上传时间:2022-04-19 上传人:机****料 IP属地:河南
50
积分
关 键 词:
TGSS 50 水平 输送 机头 设计
资源描述:
TGSS-50型水平刮板输送机机头段设计,TGSS,50,水平,输送,机头,设计
内容简介:
毕业设计(论文)外文资料翻译题 目: ActiveX and VBA Reference 院系名称: 专业班级: 学生姓名: 学 号: 指导教师: 教师职称: 起止日期: 地 点: BeginShortcutMenuOSnap 事件用户在图形窗口上按鼠标右键后,以及在快捷菜单以osnap模式出现之前被触发。See Also | Example用法:object.BeginShortcutMenuGrip(ShortcutMenu)对象:Document 对象对象表达式,其结果为有效的容器对象,此处必须为文档对象(document)。ShortcutMenu快捷菜单PopupMenu对象:通过操作按钮来输入/输出快捷菜单即将显示说明: 这个事件允许你在它显示之前修改快捷菜单。在修改快捷菜单时,通过事件的按钮编辑PopupMenu对象。这种相同的PopupMenu对象也因为当前的快捷菜单正在显示而不能够弹出。使用这个EndShortcutMenu事件利用快捷菜单执行清除工作。这些事件将被激活,在所有的快捷菜单的要素包括任意ObjectARX命令发生后当模式对话框显示时不会触发任何事件参见:方法,属性,事件:BeginShortcutMenuCommand BeginShortcutMenuDefault BeginShortcutMenuEdit BeginRightClick ActiveX 和 VBA开发指导:“使用事件”例程:Private Sub AcadDocument_BeginShortcutMenuOSnap(ShortcutMenu As AutoCAD.IAcadPopupMenu)本例程演示当在osnap模式下时立即截取一个快捷菜单 MsgBox “你刚才在osnap模式下激活一个快捷菜单” Deactivate 事件当图形窗口释放时被触发See Also | Example用法:object.Deactivate()对象:Document对象对象表达式,其结果为有效的容器对象,此处必须为文档对象(document)说明:当模式对话框显示时不会触发任何事件 参见 :方法,属性,事件:Activate ActiveX 和 VBA开发指导:“使用事件”例程:Private Sub AcadDocument_Deactivate() 本例程演示截取图形激活事件 当图形不集中时这个事件会被激活激活示例程序:打开两个图形窗口并从一个图形窗口切换到另一个图形窗口 MsgBox “你刚才激活了一个图形!” End SubEndCommand event在命令执行完成后立即被触发。See Also | Example:用法:object.EndCommand(CommandName)对象:Application对象表达式,其结果为有效的容器对象,此处必须为文档对象(document)。CommandNameString文件被打开发出的命令的名字。说明:这个EndCommand事件紧跟着BeginCommand事件到AutoCAD完成正在执行的命令之后。如果使用者没有取消那个命令,结束命令就不会被触发。这个开始命令事件被触发为任一基本AutoCAD命令,或任一经由ObjectARX申请登记在AutoCAD指令堆栈上,或视图的 LISP vlax-add-cmd功能 。任何正常的defund C将被触发:因为它不能从命令堆栈中显示出来,所以即使你激发它,它也不能完全的发挥功能,。如果你在执行时需要LISP命令被识别出来,你需要用视图的 LISP vlax-add-cmd功能去正确从AutoCAD命令堆栈中激发出来。如果你没有对一个AutoCAD命令进行定义那么你就利用LISP命令对其重新定义,通常AutoCAD 的命令只有在它们被触发时BeginCommand才被激活。比如(LINE命令)。AutoCAD命令成组的储存在命令堆栈里。一个瞬间命令堆栈在创建per AutoCAD期间。这些堆栈由的基本命令组成,还有任意你加进去的命令。对话框显示时不会触发任何事件参见:方法,属性,事件: BeginCommand ActiveX 和VBA开发指导“使用事件”例程:Private Sub AcadDocument_EndCommand(ByVal CommandName As String) 本例程演示截取图形EndCommand事件 当图形收到任一与本事件有关的命令时此事件被激活。激活本例程事件:在绘图区点击任意的命令不管是直线命令,VBA, ACAD菜单,ACAD工具栏还是LISP之中的。当这个命令完成后,这个事件将会被激活。使用周期变化的“CommandName”确定哪个命令刚完成。MsgBox“一个图形已经完”成& CommandName & “命令”End SubEndLISP event在LISP表达式执行完成后立即被触发See Also | Example 用法:object.EndLISP()对象:Application object, Document object对象表达式,其结果为有效的容器对象,此处必须为文档对象(document)说明:这个事件将会被触发,在LISP表达实执行完成后,或撤消对LISP表达式的执行后。 “对话框显示时不会触发任何事件”参见:方法,属性,事件:BeginLISP ActiveX 和VBA开发指导“使用事件”例程:Private Sub AcadDocument_EndLisp() 本例程演示截取图形BeginLisp事件本事件当完成对一图形的LISP表达式的运行时被激活激活本例程:开始对LISP表达式求值并等着完成求值MsgBox “一个LISP表达式已经完成求值!”End SubBeginShortcutMenuOSnap eventTriggered after the user right-clicks on the drawing window, and before the shortcut menu appears in osnap mode. See Also | ExampleSignature object.BeginShortcutMenuGrip(ShortcutMenu)objectDocument objectAn object expression that evaluates to a valid container object. In this case, the only valid container is a document. ShortcutMenuPopupMenu object; input/output from the handlerThe shortcut menu about to be displayed. Remarks This event allows you to make changes to the shortcut menu before it is displayed. To make changes to the shortcut menu, edit the PopupMenu object that is passed in to your handler from the event. This same PopupMenu object is passed out as the current shortcut menu. Use the EndShortcutMenu event to perform any cleanup work on the shortcut menu. This event is triggered after all shortcut menu elements, including any ObjectARX command additions, have occurred. No events will be fired while a modal dialog is being displayed. See Also Methods, Properties, and Events: BeginShortcutMenuCommand BeginShortcutMenuDefault BeginShortcutMenuEdit BeginRightClick ActiveX and VBA Developers Guide: Use Events ExamplePrivate Sub AcadDocument_BeginShortcutMenuOSnap(ShortcutMenu As AutoCAD.IAcadPopupMenu) This example intercepts a shortcut menu start while you are in the osnap mode. MsgBox You have just initiated a shortcut menu in osnap mode!End SubDeactivate eventTriggered when the drawing window is deactivated.See Also | ExampleSignature object.Deactivate()objectDocument objectAn object expression that evaluates to a valid container object. In this case, the only valid container is a document. Remarks No events will be fired while a modal dialog is being displayed. See Also Methods, Properties, and Events: Activate ActiveX and VBA Developers Guide: Use EventsExamplePrivate Sub AcadDocument_Deactivate() This example intercepts a drawing DeActivate event. This event is triggered when a drawing window looses focus. To trigger this example event: Open two drawings and switch from one drawing window to another MsgBox You have just deactivated a drawing!End SubEndCommand eventTriggered immediately after a command completes.See Also | ExampleSignature object.EndCommand(CommandName)objectApplicationAn object expression that evaluates to a valid container object. In this case, the only valid container is the application. CommandNameStringThe name of the command that was issued. Remarks The EndCommand event follows the BeginCommand event after AutoCAD completes processing the command. If the user cancels out of the command, the EndCommand event will not be triggered. The BeginCommand event will be fired for any basic AutoCAD command, or any command registered on the AutoCAD command stack via an ObjectARX application, or the Visual LISP vlax-add-cmd function. It will not be fired for any normally defund C: LISP function because it is not exposed to the command stack, even though you execute it from the AutoCAD command Line. If you need LISP commands to be recognized when they execute, you will need to use the Visual LISP vlax-add-cmd function to register the command correctly to the AutoCAD command stack. If you undefine an AutoCAD command and then redefine it via a LISP defun, the BeginCommand event may not be triggered until an actual AutoCAD command is called; for example, (command _.LINE .). AutoCAD commands are stored in groups in the command stack. One instance of the command stack is created per AutoCAD session. This stack consists of the native AutoCAD commands, as well as any custom commands you add to it. No events will be fired while a modal dialog is being displayed. See Also Methods, Properties, and Events: BeginCommand ActiveX and VBA Developers Guide: Use EventsExamplePrivate Sub AcadDocument_EndCommand(ByVal CommandName As String) This example intercepts a drawing EndCommand event. This event is triggered when a drawing receives any command compatible with this event. To trigger this example event: Issue any command to an open drawing from either the command line, VBA, the ACAD menus, the ACAD toolbars, or LISP. When the command is finished, this event will be triggered. Use the CommandName variable to determine which command just finished MsgBox A drawing has just finished a & CommandName & command.End SubEndLISP eventTriggered upon completion of evaluating a LISP expression.See Also | ExampleSignature object.EndLISP()objectApplication object, Document objectAn object expression that evalu
温馨提示:
1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
2: 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
3.本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
提示  人人文库网所有资源均是用户自行上传分享,仅供网友学习交流,未经上传用户书面授权,请勿作他用。
关于本文
本文标题:TGSS-50型水平刮板输送机机头段设计
链接地址:https://www.renrendoc.com/paper/208527126.html

官方联系方式

2:不支持迅雷下载,请使用浏览器下载   
3:不支持QQ浏览器下载,请用其他浏览器   
4:下载后的文档和图纸-无水印   
5:文档经过压缩,下载后原文更清晰   
关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们

网站客服QQ:2881952447     

copyright@ 2020-2025  renrendoc.com 人人文库版权所有   联系电话:400-852-1180

备案号:蜀ICP备2022000484号-2       经营许可证: 川B2-20220663       公网安备川公网安备: 51019002004831号

本站为文档C2C交易模式,即用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知人人文库网,我们立即给予删除!