RetVal = Document.Blocks.Item(Index)
Object
MSITStore:C:\Documents%20and%20Settings\gmj-wyj.MYHF\桌面\Autocad2006对象模型.chm::/all_collection_objects.htm" target="_blank" >All Collections, MSITStore:C:\Documents%20and%20Settings\gmj-wyj.MYHF\桌面\Autocad2006对象模型.chm::/idh_group_object.htm" target="_blank" >Group, MSITStore:C:\Documents%20and%20Settings\gmj-wyj.MYHF\桌面\Autocad2006对象模型.chm::/idh_selectionset_object.htm" target="_blank" >SelectionSet 使用该方法的对象。
Index
Variant[变体]; 仅用于输入 要查询的集合成员项的索引位置。 索引必须为整数或字符串。如果为整数,索引必须在 0 和 N-1 间。这里 N 为集合或选择集的对象数量。
RetVal
Object[对象] 在集合或选择集中给定索引位置的对象。
虽然blocks集合继承Delete方法,用户仍然无法真正删除集合。 企图删除blocks集合会产生错误
说明
该方法支持使用字符串。例如,如果用以下语句创建了名称为 BLOCK1 的块: Set block1 = Blocks.Add("BLOCK1")
则可通过以下语句引用该对象: Set whichblock = Blocks.Item("BLOCK1")
|