muck Posted April 4, 2009 Posted April 4, 2009 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, Quote
borgunit Posted April 6, 2009 Posted April 6, 2009 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. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.