|
发表于 2022-7-6 16:38:18
|
显示全部楼层
Set is used to "set" values to object variables (ie AcadBlockReference, AcadEntity). Set is not necessary when assigning to variable types (ie integer, string, long, etc..). VB.Net no longer requires to "set" to an object, just assign the object to its value (ie YourAcadEntity = whatever). Property set is used to assign a property in a "class" (your defined object). I hope this helps. |
|