毕业设计(论文)外文资料翻译.doc

TGSS-50型水平刮板输送机---机头段设计(含cad图+任务书+中英文翻译)

收藏

压缩包内文档预览:
预览图 预览图 预览图 预览图 预览图 预览图 预览图 预览图 预览图 预览图 预览图 预览图 预览图
编号:25623980    类型:共享资源    大小:884.19KB    格式:ZIP    上传时间:2019-11-19 上传人:遗**** IP属地:湖北
19
积分
关 键 词:
TGSS 50 水平 输送 机头 设计 cad 任务书 中英文 翻译
资源描述:
TGSS-50型水平刮板输送机---机头段设计(含cad图+任务书+中英文翻译),TGSS,50,水平,输送,机头,设计,cad,任务书,中英文,翻译
内容简介:
毕业设计(论文)外文资料翻译题 目: TGSS-50型水平刮板输送机 -机头段设计 院系名称: 专业班级: 学生姓名: 学 号: 指导教师: 教师职称: 起止日期: 地 点: 附 件: 1.外文资料翻译译文;2.外文原文。 指导教师评语: 签名: 年 月 日 Endshortcut menu 事件快捷菜单出现后被击活。用法:Object.Activate()Object: Document 对象对象表达式,其结果为有效的容器对象,此处必须为文档对象(document)。说明:当模式对话框显示时不会触发任何事件。参见:方法,属性和事件:BeginShortcutMenuDefault BeginShortcutMenuEdit BeginShortcutMenuGrip BeginShortcutMenuOsnap BeginRightClick Activex和VBA开发指导:“使用事件”Using Programming Languages other than VBA例程:Private Sub AcadDocument_Activate()本例演示快捷菜单事件的图形当用户关闭快捷菜单图形时,此事件被击活激活示例程序:将鼠标放在快捷菜单活动的区域上,单击右键等待快捷菜单被打开,然后再关闭MsgBox 您刚才激活了一个图形!End SubLayout Switched 事件用户转换一个不同的排列之后被激活用法:object.LayoutSwitched (Layout Name)object: Document 对象对象表达式,其结果为有效的容器对象,此处必须为文档对象(document)。说明:当模式对话框显示时不会触发任何事件。参见:方法,属性和事件:WindowChanged WindowMovedOrResizedActivex和VBA开发指导:“使用事件”Using Programming Languages other than VBA例程:Private Sub AcadDocument_LayoutSwitched (By Val Layout Name as String)演示排列转换事件的图形当用户用了不同的排列时被激活激活示例程序:打开图形并改变排列例如:转换一个图形从模式到排列排列图表的多样性,我们可以选择自己需要的MsgBox 您刚才激活了一个图形!End SubLISPCancelled 事件当LISP 表达的评估被取消时被激活用法:object.LISPCancelled ()object:Application 对象, Document 对象对象表达式,其结果为有效的容器对象,此处必须为应用程序对象(application)或文档对象(document)。说明:当模式对话框显示时不会触发任何事件。参见:方法,属性和事件:BeginLISP EndLISP Activex和VBA开发指导:“使用事件”Using Programming Languages other than VBA例程:Private Sub AcadDocument_LispCancelled ()本例演示LISP取消的图形LISP表达的评估取消时被激活激活示例程序:操作LISP表达和取消LISP的评估在它完成之前MsgBox 您刚才激活了一个图形!End SubModified 事件当对象和集合被修改时被激活。用法:object. Modified (Entity)object:All Drawing objects, Block, Blocks, Dictionary, Dictionaries, DimStyle, DimStyles, Group, Groups, Hyperlink, Hyperlinks, Layer, Layers, Layout, Layouts, Linetype, Linetypes, ModelSpace, PaperSpace, PlotConfiguration, PlotConfigurations, RegisteredApplication, RegisteredApplications, SelectionSet, SelectionSets, TextStyle, TextStyles, UCS, UCSs, View, Views, Viewport, Viewports, XRecord对象表达式,其结果为有效的容器对象。说明:当模式对话框显示时不会触发任何事件。参见:方法,属性和事件:ObjectAdded ObjectErased Activex和VBA开发指导:“使用事件”Using Programming Languages other than VBA例程:Public with Events Plane as AcadLWPolyline Use with Modified Event ExampleSub Example Modified ()在模式状态下本例创造了lightweight polyline 和涉及Polyline的使用在不同的场合建立相互的修改事件在修改事件中本例修改新的对象,激活代码修改对象激活事件提示:本事件代码将要被激活在们移动或重新修改背景之前,线不会变为蓝色当本例的信件箱被展现时MsgBox 您刚才激活了一个图形!End Sub13EndShortcutMenu eventTriggered after the shortcut menu appears.See Also | ExampleSignature object.EndShortcutMenu (Shortcut Menu)ObjectDocument objectan object expression that evaluates to a valid container object. In this case, the only valid container is a document. Shortcut MenuPopupMenu object; input/output from the handlerthe shortcut menu that has been displayed. Remarks Use this event to perform any cleanup work on the shortcut menu. No events will be fired while a modal dialog is being displayed. See Also Methods, Properties, and Events: BeginShortcutMenuDefault BeginShortcutMenuEdit BeginShortcutMenuGrip BeginShortcutMenuOsnap BeginRightClick ActiveX and VBA Developers Guide: Use Events ExamplePrivate Sub AcadDocument_EndShortcutMenu (Shortcut Menu as AutoCAD.IAcadPopupMenu) This example intercepts a drawing EndShortcutMenu event. This event is triggered when the user closes a drawing shortcut menu. To trigger this example event: Right click the mouse in the working area of a drawing, Wait for the shortcut menu to be displayed and then dismiss the shortcut menu MsgBox A shortcut menu was just closed!End SubLayoutSwitched eventTriggered after the user switches to a different layout.See Also | ExampleSignature object.LayoutSwitched (Layout Name)ObjectDocument objectan object expression that evaluates to a valid container object. In this case, the only valid container is a document. Layout NameString; input to the handlerthe name of the layout the user has switched to. Remarks No events will be fired while a modal dialog is being displayed. See Also Methods, Properties, and Events: WindowChanged WindowMovedOrResized ActiveX and VBA Developers Guide: Use Events ExamplePrivate Sub AcadDocument_LayoutSwitched (By Val Layout Name as String) This example intercepts a drawing Layout Switched event. This event is triggered when the user switches to a different Drawing layout view. To trigger this example event: Open a drawing and change its layout view For example: Switch the drawing from Model view to Layout1 view Use the Layout Name variable to determine the which layout view we changed to MsgBox The drawing layout was just changed to: & Layout NameEnd SubLISPCancelled eventTriggered when the evaluation of a LISP expression is cancelled. See Also | ExampleSignature object.LISPCancelled ()ObjectApplication object, Document objectan object expression that evaluates to a valid container object. In this case, the only valid containers are the application and a document. Remarks No events will be fired while a modal dialog is being displayed. See Also Methods, Properties, and Events: BeginLISP EndLISP ActiveX and VBA Developers Guide: Use EventsExamplePrivate Sub AcadDocument_LispCancelled () This example intercepts a drawing Lisp Cancelled event. This event is triggered when the evaluation of a LISP expression is cancelled. To trigger this example event: Run a LISP expression and Cancel the LISP evaluation before it finishes MsgBox A LISP evaluation was just cancelled.End SubModified eventTriggered when an object or collection in the drawing has been modified.See Also | ExampleSignature Object. Modified (Entity)ObjectAll Drawing objects, Block, Blocks, Dictionary, Dictionaries, DimStyle, DimStyles, Group, Groups, Hyperlink, Hyperlinks, Layer, Layers, Layout, Layouts, Linetype, Linetypes, ModelSpace, PaperSpace, PlotConfiguration, PlotConfigurations, RegisteredApplication, RegisteredApplications, SelectionSet, SelectionSets, TextStyle, TextStyles, UCS, UCSs, View, Views, Viewport, Viewports, XRecordAn object expression that evaluates to a valid container object. EntityA Drawing ObjectThe object in the drawing that is modified can be any one of the drawing objects. Remarks This event will be triggered whenever the object is modified. Modification includes whenever the value of a property is set, even if the new value is equal to the current value. When coding in VBA, you must provide an event handler for all objects enabled for the Modified event. If you do not provide a handler, VBA may terminate unexpectedly. No events will be fired while a modal dialog is being displayed. See Also Methods, Properties, and Events: ObjectAdded ObjectErased ActiveX and VBA Developers Guide: Use Events ExamplePublic with Events Plane as AcadLWPolyline Use with Modified Event ExampleSub Example Modified () This example creates a lightweight plotline in model space and References the Plotline using the public variable (Plane) which Is set up to intercept Modified events. This example then modifies the new object, triggering the code In the Modified event. Dim points (0 To 9) As Double Define the 2D plotline points Points (0) = 1: points (1) = 1 Points (2) = 1: points (3) = 2 Points (4) = 2: points (5) = 2 Points (6) = 3: points (7) = 2 Points (8) = 4: points (9) = 4 Create a lightweight Plotline object in model space * Note: We are returning the new Plotline object into a Module Level variable. This allows us to intercept events associated With that particular object. Set Plane = ThisDrawing.ModelSpace.AddLightWeightPolyline (points) ThisDrawing.Application.ZoomAll Modify object to trigger event. * Note: The event code for the Plotline modification w
温馨提示:
1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
2: 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
3.本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
提示  人人文库网所有资源均是用户自行上传分享,仅供网友学习交流,未经上传用户书面授权,请勿作他用。
关于本文
本文标题:TGSS-50型水平刮板输送机---机头段设计(含cad图+任务书+中英文翻译)
链接地址:https://www.renrendoc.com/p-25623980.html

官方联系方式

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

网站客服QQ:2881952447     

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

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

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