首页 > 编程 > .NET > 正文

Autodesk官方最新的.NET教程(五)(vb.net版)

2024-07-10 13:00:32
字体:
来源:转载
供稿:网友
  第 5 章 用户互操作:提示和选择背景提示通常包含一个描述性信息,伴随一个停止以让用户理解所给的信息并输入数据。数据可以通过多种方式被输入,如通过命令行、对话框或autocad编辑窗口。给出的提示要遵循一定的格式,格式要与一般的autocad提示相一致,这一点是非常重要的。例如,关键字要用“/”号分隔并放在方括号“[]”中,缺省值要放在“<>”内。对于一个autocad用户来说,坚持统一的格式将会减少信息理解错误的产生。当用户在autocad命令行中选择一个实体时,实体是使用选择机制被选择的。这种机制包括一个提示,用来让用户知道选择什么并怎样选择(如,窗口或单一实体),然后是一个停顿。试一下诸如pine这种命令来看一下提示的显示,pedit来看一下使用单一实体或多线来进行选择。练习prompts:提示:在本章中,我们将提示输入雇员名字、职位、薪水和部门来创建一个雇员块索引对象。如果输入的部门不存在,我们将提示输入部门经理的名字来创建一个新的部门。在我们继续之前,让我们试着重用以前的代码。为了进行选择,我们将提示用户在一个窗口中进行选择或选择一个实体,而我们只显示选择集中的雇员对象。在前面的章节中,我们创建了一个名叫“earnest shackleton”的雇员,名字被存储为“employeeblock”块定义(块表记录)中的mtext。如果我们多次插入这个块,那么我们看到的都是同一个雇员的名字。我们怎样才能自定义这个块以使每次插入这个块的时候显示不同雇员的名字?这就要使用块属性的功能了。属性是存储在每一个块索引实例中的文本,并被作为实例的一部分来被显示。属性从存储在块表记录中的属性定义中继承相关的属性。属性:让我们来把mtext实体类型改变为属性定义。在createemployeedefinition()函数中,把下面的代码替换  ‘ 文本:dim text as mtext = new mtext()text.contents = "earnest shackleton"text.location = center 为 '属性定义dim text as attributedefinition = new attributedefinition(center, "noname", "name:", "enter name", db.textstyle)text.colorindex = 2 试着使用test命令来测试一下createemployeedefinition()函数:     <commandmethod("test")> _    public function test()        createemployeedefinition()    end function 你现在应该可以使用insert命令来插入employeeblock块并对每一个实例确定一个雇员名。当你插入employee块时,请注意一下块插入的位置。它是正好被放置在所选点还是有些偏移?试试怎样修复它。(提示:检查块定义中的圆心)修改createemployee ()以重用 1)让我们来修改createemployee()函数,以让它可以接收名字、薪水、部门和职位并返回创建的雇员块索引的objectid。函数的形式如下(你可以改变参数顺序) public function createemployee(byval name as string, byval division as string, byval salary as double, byval pos as point3d) as objectid 2)       移除上面函数中的commandmethod属性”create”,这样它就不再是用来创建雇员的命令。3)                  修改函数的代码,这样就可以正确地设置块索引的名字、职位、部门和薪水和它的扩展字典。
  • 替换
 dim br as new blockreference(new point3d(10, 10, 0), createemployeedefinition()) 为 dim br as new blockreference(pos, createemployeedefinition()) 
  • 替换
 xrec.data = new resultbuffer( _new typedvalue(dxfcode.text, "earnest shackleton"), _new typedvalue(dxfcode.real, 72000), _new typedvalue(dxfcode.text, "sales")) 为 xrec.data = new resultbuffer( _new typedvalue(dxfcode.text, name), _new typedvalue(dxfcode.real, salary), _new typedvalue(dxfcode.text, division)) 4)                  因为我们把雇员的名字从mtext替换成块的属性定义,因此我们要创建一个相应的属性索引来显示雇员的名字。属性索引将使用属性定义的属性。
  • 替换:
 btr.appendentity(br) '加入索引到模型空间trans.addnewlycreateddbobject(br, true) '让事务处理知道 为       dim attref as attributereference = new attributereference() '遍历雇员块来查找属性定义dim empbtr as blocktablerecord = trans.getobject(bt("employeeblock"), openmode.forread) dim id as objectid for each id in empbtr    dim ent as entity = trans.getobject(id, openmode.forread, false) '打开当前的对象!     if typeof ent is attributedefinition then '        '设置属性为属性索引中的属性定义      dim attdef as attributedefinition = ctype(ent, attributedefinition)      attref.setpropertiesfrom(attdef)      attref.position = new point3d(attdef.position.x + br.position.x, _                                  attdef.position.y + br.position.y, _                                  attdef.position.z + br.position.z)                     attref.height = attdef.height                    attref.rotation = attdef.rotation                    attref.tag = attdef.tag                    attref.textstring = name       end ifnext btr.appendentity(br) '把索引加入模型空间 '把属性索引加入到块索引br.attributecollection.appendattribute(attref) '让事务处理知道trans.addnewlycreateddbobject(attref, true)trans.addnewlycreateddbobject(br, true)   研究一下上面的代码,看看是怎样把属性定义中除显示用的文本字符串外的属性复制到属性索引的。属性被加入到块索引的属性集合中。这就是你怎样来为每一个实例自定义雇员名字。5)不要忘记返回雇员块索引的objectid,但要在提交事务处理之后才能返回: trans.commit()return br.objectid 6)       测试createemployee。加入一个test命令来测试createemployee: <commandmethod("test")> _ public function test()        createemployee("earnest shackleton", "sales", 10000, new point3d(10, 10, 0))end function  修改createdivision()以重用:让我们来修改createdivision ()函数,以让它可以接收部门名字、经理名字并返回创建的部门经理扩展记录的objectid。如果部门经理已经存在,则不改变经理的名字。1)                  如果你先前在createemployeedefinition()中调用了createdivision(),请把它注释掉,因为我们在这里不需要创建一个部门2)       改变createdivision()的形式让它接收部门和经理的名字并返回一个objectid。 public function createdivision(byval division as string, byval manager as string) as objectid 3)     修改上面函数的代码创建部门的名字和经理:
  • 替换:
 divdict = trans.getobject(acmedict.getat("sales"), openmode.forwrite) 为: divdict = trans.getobject(acmedict.getat(division), openmode.forwrite) 
  • 替换:
 acmedict.setat("sales", divdict) 为: acmedict.setat(division, divdict) 
  • 替换:
 mgrxrec.data = new resultbuffer(new typedvalue(dxfcode.text, "randolph p. brokwell"))  为  mgrxrec.data = new resultbuffer(new typedvalue(dxfcode.text, manager))  不要忘了返回部门经理这个扩展记录的objectid,但要在提交事务处理后才返回。 trans.commit()'返回部门经理这个扩展记录的objectidreturn mgrxrec.objectid现在把在中createemployeedefinition调用的createdivision函数给注释掉。4)    现在通过使用test命令来测试调用createdivision函数。使用arxdbg工具来检查条目是否已被加入到“acme_division”下的命名对象字典。 createdivision("sales", "randolph p. brokwell") 使用create命令来创建雇员: 我们将加入一个名为create的新命令,此命令用来提示输入雇员的详细资料来创建雇员块索引。让我们来看一下这个命令是怎样使用的。1)      让我们加入一个名为create的新命令,并声明几个常用的变量和一个try-finally块。     <commandmethod("create")> _    public sub createemployee()        dim db = hostapplicationservices.workingdatabase        dim ed as editor = application.documentmanager.mdiactivedocument.editor        dim trans as transaction = db.transactionmanager.starttransaction()        try            trans.commit()        finally            trans.dispose()        end try     end sub 2)      让我们来为雇员定义可以用作为提示缺省值的常数。注意,布尔值gotposition是用来判断用户是否已输入职位。. 雇员名               - 类型 :string          -缺省值 “earnest shackleton”. 雇员所在部门名   - 类型:string                 -缺省值“sales”. 薪水                   -类型:double (non-negative and not zero)     -缺省值10000. 职位                   -类型:point3d            -缺省值(0,0,0) 把这些常数加入到try语句后面:            dim empname as new string("earnest shackleton")            dim divname as new string("sales")            dim salary as new double() : salary = 10000            dim position as new point3d(0, 0, 0)            '布尔值用来判断用户是否已输入职位            dim gotposition as new boolean() : gotposition = false 3)      现在让我们提示用户输入值。我们先使用promptxxxoptions类来初始化要显示的提示字符串。 '提示输入每个雇员的详细资料dim prname as promptstringoptions = new promptstringoptions("enter employee name <" & empname & ">")dim prdiv as promptstringoptions = new promptstringoptions("enter employee division <" & divname & ">")dim prsal as promptdoubleoptions = new promptdoubleoptions("enter employee salary <" & salary & ">")dim prpos as promptpointoptions = new promptpointoptions("enter employee position or") 注意,提示字符串用尖括号来显示变量的值。这是autocad用来提示用户这个值为缺省值。4)  当提示用户输入职位时,我们也提供了一个关键字列表选项,如名字、部门和薪水。如果用户想要在选择一个点的时候改变为其它值,他可以选择那个关键字。一个命令提示的例子如下:command: createenter employee position or [name/division/salary]: 要创建一个雇员,用户会选择一个点而其它的值被设置为缺省值。如果用户要改变其它的值,如名字,他可以输入”n”或全名”name”,然后输入名字:command: createenter employee position or [name/division/salary]:nenter employee name <earnest shackleton>: 如果用户想要再次选择缺省的名字,他可以按回车键。让我们创建用于职位提示的关键字列表: '加入用于职位提示的关键字prpos.keywords.add("name")prpos.keywords.add("division")prpos.keywords.add("salary") '设置提示的限制条件prpos.allownone = false '不允许没有值 5)      现在让我们声明promptxxxresult变量来获取提示的结果: 'prompt resultsdim prnameres as promptresultdim prdivres as promptresultdim prsalres as promptdoubleresultdim prposres as promptpointresult 6)      直到用户成功输入一个点后,循环才结束。如果输入错误的话,我们会提示用户并退出函数:判断用户是否输入了关键字,我们通过检查promptresult的状态来进行: '循环用来获取雇员的详细资料。当职位被输入后,循环终止。while (not (gotposition))          '提示输入职位         prposres = ed.getpoint(prpos)          '取得一个点         if prposres.status = promptstatus.ok then             gotposition = true             position = prposres.value         elseif prposres.status = promptstatus.keyword then '获取一个关键字              '输入了name关键字             if prposres.stringresult = "name" then                  '获取雇员名字                  prname.allowspaces = true                  prnameres = ed.getstring(prname)                  if prnameres.status <> promptstatus.ok then                      return                  end if                  '如果获取雇员名字成功                 if prnameres.stringresult <> "" then                     empname = prnameres.stringresult                  end if             end if           else            '获取职位时发生错误             ed.writemessage("***error in getting a point, exiting!!***" + vbcrlf)             return             end if '如果获取一个点end while 7)      上面的代码只提示输入名字,请加入提示输入薪水和部门的代码。 8)      完成提示输入后,我们将使用获得的值来创建雇员。             '创建雇员           createemployee(empname, divname, salary, position) 9)      现在来检查部门经理是否已存在。我们通过检查nod中部门的扩展记录中的经理名字来进行。如果检查到的是一个空字符串,那么我们会提示用户输入经理的名字。注意,通过修改createdivision()函数,获取经理的名字变得简单了。   dim manager as string = new string("")   '创建部门  '给经理传入一个空字符串来检查它是否已存在   dim depmgrxrec as xrecord   dim xrecid as objectid   xrecid = createdivision(divname, manager)    '打开部门经理扩展记录    depmgrxrec = trans.getobject(xrecid, openmode.forread)     dim val as typedvalue    for each val in depmgrxrec.data       dim str as string       str = val.value       if str = "" then       '经理没有被设置,现在设置它        '先提示输入经理的名字        ed.writemessage(vbcrlf)        dim prmanagername as promptstringoptions = new promptstringoptions("no manager set for the division! enter manager name")        prmanagername.allowspaces = true        dim prmanagernameres as promptresult = ed.getstring(prmanagername)        if prmanagernameres.status <> promptstatus.ok then             return        end if         '设置经理的名字        depmgrxrec.data = new resultbuffer(new typedvalue(dxfcode.text, prmanagernameres.stringresult))       end if    next 10)  测试create命令 选择集:现在让我们来创建一个命令,当用户在图形中选择一个雇员对象时,它会显示雇员的详细资料。我们会使用上一章中创建的listemployee()函数在命令行中输出雇员的详细资料。下面是你必须遵循的步骤:
  1. 调用“listemployees”命令
  1. 调用editor的getselection()函数来选择实体
 dim res as promptselectionresult = ed.getselection(opts, filter) 
  1. 上面的filter用来过滤选择集中的块索引。你可以创建如下的过滤列表:
 dim fillist() as typedvalue = {new typedvalue(dxfcode.start, "insert")}dim filter as selectionfilter = new selectionfilter(fillist) 
  1. 从选择集中获取objectid数组:
      '如果选择失败则什么也不做      if not res.status = promptstatus.ok then return      dim ss as autodesk.autocad.editorinput.selectionset = res.value   dim idarray as objectid() = ss.getobjectids()  5. 最后,把选择集中的每个objectid输入到listemployee()函数来获取一个雇员详细资料的字符串数组。把雇员的详细资料输出到命令行。例如:    '获取saemployeelist 数组中的所有雇员            for each employeeid in idarray                listemployee(employeeid, saemployeelist)                 '把雇员的详细资料输出到命令行                dim employeedetail as string                for each employeedetail in saemployeelist                    ed.writemessage(employeedetail)                next                                ed.writemessage("----------------------" + vbcrlf)            next 
上一篇:VB.net usage

下一篇:vb.net中类的使用方法

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表