muck 发表于 2022-7-6 14:49:56

# What does "Set" in Visual Ba

What does Set do in vb code?
 
 
What does Set do in VBA.
For example the statement Set LayerObject = LayerCollection.add(layerName) is used in AutoCAD VBA.
 
What does Set do in Visual Basic 6?
 
What does Set do in VB.net
 
What is property Set. Is it the same?
 
Thank you,

borgunit 发表于 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.
页: [1]
查看完整版本: # What does "Set" in Visual Ba