|
说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
|
|
1) layer
[英]['leɪə(r)] [美][lɛr]
图层
1.
The Study on the Application of Layer in the Secondary Developing to AutoCAD;
AutoCAD二次开发中图层的应用研究
2.
The proof of cartographic layer system belonging to boolean algebra and its application;
地图图层系统为布尔代数系的证明及应用
3.
Applying the Layer & Block of AutoCAD in a Flexible Way;
AutoCAD中“图层”与“图块”的灵活应用
2) map layer
图层
1.
It especially puts forward the plan of dividing map layer in digitizing the map sheet of area geologic survey.
并重点提出了区调图幅数字化时的图层划分方
2.
In the supervision system of the single railway based on GPS/GIS,analyzed the embedment of MapInfo and the setup of the map layers of system, and the display of the track of the train.
详细分析了在GPS/GIS环境下的单线铁路调度监督系统中,关于MapInfo的嵌入、系统图层的设置以及怎样进行列车运行轨迹的显示,从而实现了单线铁路的列车定位问题。
3.
The working process, such process as setup of map layer, essential delamination and modality management of drawing a design, is explained combined with the actual engineering example.
叙述了利用AutoCAD2000制作规划用地地质灾害评估图的方法,结合工程实例,说明了图层设置、要素分层、打样样式管理的作业过程。
3) coverage
[英]['kʌvərɪdʒ] [美]['kʌvərɪdʒ]
图层
1.
The paper introduces a method of building three dimensional model by the contour coverage built on PC ARC/INFO and its attributions and related softwares .
该文介绍了以PCARC/INFO的等高线图层(coverage)及属性为原始数据,并利用相关软件在PCARC/INFO上建立体模型的一种方法。
2.
According to the requirment for the application of GIS in geology, based on the created geochemical database in 1∶200 000 for provincial bureau, this paper describes the method and steps creating element content equivalence line coverage and element color piece coverage, as well as related main technique.
本文根据GIS在地学中应用的需要,基于已建成的省级1∶2000000化探数据库,分别描述了生成元素含量等值线图层和元素色块图层的方法与步骤,以及有关的技术要点,旨在为加强GIS的应用提供一些参考信息。
4) drawing layer
图层
1.
This article introduces the setting of drawing layer and its national standard concerned when drawing in AutoCAD.
介绍利用AutoCAD软件绘图时的图层设置和有关图层设置的国家标准 ,并结合本校的实际情况 ,提出了在我校教学工作中使用统一的图层设置的推荐标准 ,还对块的插入和图层的关系以及Au toCAD2 0 0 0的图层操作作了说明 。
5) Layers
[英]['leiə] [美]['leɚ]
图层
1.
In this article, makes a case study to illustrate how to realize the functions of controlling layers, searchi ng features and binding data etc.
通过一个应用实例,详细讨论了图层控制、信息查询及数据访问等功能的实现。
6) level graph
层图
补充资料:Autocad VBA初级教程 (第八课:图层操作)
先简单介绍两条命令: 1、这条语句可以建立图层: ThisDrawing.Layers.Add("新建图层") 在括号中填写图层的名称。 2、设置为当前的图层 ThisDrawing.ActiveLayer=图层对象 注意,等号右边的变量不能用图层名称,必须使用一个有效的图层变量 以下一些属性在图层比较常用: LayerOn 打开关闭 Freeze 冻结 Lock锁定 Color 颜色 Linetype 线型 看一个例题: 1、先在已有的图层中寻找一个名为“新建图层”的图层 2、如果找到这个图层,显示该图层的信息,并提示用户是否需要设置为当前图层,如果用户确认,则设置为当前图层。 3、如果图层没有找到,新建一个名为“新建图层”的图层,设置为黄色,HIDDEN线型,并把这个图层设置为当前图层
Sub mylay() Dim lay0 As AcadLayer '定义作为图层的变量 Dim lay1 As AcadLayer findlay = 0 '寻找图层的结果的变量,0没有找到,1找到 For Each lay0 In ThisDrawing.Layers '在所有的图层中进行循环 If lay0.Name = "新建图层" Then '如果找到图层名 findlay = 1 '把变量改为1标志着图层已经找到 msgstr = lay0.Name + "已经存在" + vbCrLf msgstr = msgstr + "图层状态:" + IIf(lay0.LayerOn = True, "打开", "关闭") + vbCrLf msgstr = msgstr + "图层" + IIf(lay0.Freeze = True, "已经", "没有") + "冻结" + vbCrLf msgstr = msgstr + "图层" + IIf(lay0.Lock = True, "已经", "没有") + "锁定" + vbCrLf msgstr = msgstr + "图层颜色号:" + CStr(lay0.Color) + vbCrLf msgstr = msgstr + "图层线型:" + lay0.Linetype + vbCrLf msgstr = msgstr + "图层线宽:" + CStr(lay0.Lineweight) + vbCrLf msgstr = msgstr + "打印开关" + IIf(lay0.Plottable = False, "关闭", "打开") + vbCrLf + vbCrLf msgstr = msgstr + "是否设置为当前图层?" If MsgBox(msgstr, 1) = 1 Then '如果用户点击确定 If Not lay0.LayerOn Then lay0.LayerOn = True '打开 ThisDrawing.ActiveLayer = lay0 '把当前图层设为已经存在的图层
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条
|