Click to See Complete Forum and Search --> : Classic VB - How do I make properties?


Merri
Oct 14th, 2005, 11:50 AM
You can make properties for the following things: Forms, UserControls and Class Modules. Basically any element that will behave as an object.


When to use properties?

Properties are handy when you want to generalize your code: if you're changing a setting of something, it might be better to create it as a property. Especially if you might have a need to get a return value as well. The property code can then do some additional stuff, such as switching form's menu items automatically to correct value, so you don't need to do it from whereever you set the property.


Property Get

Property Get is rather simple: it always returns a value.
' this could be in a usercontrol
Dim m_Caption As String

Public Property Get Caption() As String
Caption = m_Caption
End Property

After this you could call it like this from a form the usercontrol is placed on:
Me.Caption = UserControl1.Caption


You can also pass objects:
' again, in a usercontrol
Dim m_Picture As IPictureDisp
' reference to "Ole Automation" required! by default it is included
Public Property Get Picture() As IPictureDisp
Set Picture = m_Picture
End Property

In this case you would call it like this:
Set Me.Picture = UserControl.Picture


Property Let and Property Set

Property Let is used when you pass a variable. Set is used when you pass an object.

Dim m_Caption As String

Public Property Let Caption(ByVal NewCaption As String)
m_Caption = NewCaption
End Property

Usage:
UserControl1.Caption = "This is my control!"


Dim m_Picture As IPictureDisp

Public Property Set Caption(ByRef NewPicture As IPictureDisp)
Set m_Picture = NewPicture
End Property

Usage:
Set UserControl1.Picture = Picture1.Picture


Some notes about the examples

I kept the examples as clean as possible. For this reason, I didn't include additional coding that would redraw the usercontrol for example. Redrawing would be placed in the property handling as otherwise your control would never change. It is a good idea to make a general redrawing procedure within your usercontrol to keep it visually updated with ease.

The same applies for forms and class modules, though class modules aren't visible. You could use class modules with events though, so when a property gets changed, an event would fire:

' in a form
Dim WithEvents MyClass As clsMyClass

This, however, is out of our topic.


Adding it all up

- use a property instead of a sub or function if you need to also get the value
- use a sub if you just need to set something
- use a function if you need to set something and require a return value of the result (such as if the function succeeded)
- Property Get works with any data, be it a regular variable or an object
- Property Let is for regular variables
- Property Set is for objects



Comments and feedback
Send these via a private message; the replies in the FAQ forum can only contain new information regarding the subject. So any questions, thank yous etc. via a pm :)

penagate
Oct 16th, 2005, 02:18 PM
You can also specify parameters for property methods.

A common example of this is when writing a collection class.

Property Get Item(ByVal Index As Long) As MyClassType
Set Item = BaseCollection(Index)
End Property

Property Set Item(ByVal Index As Long, ByRef pObject As MyClassType)
Set BaseCollection(Index) = pObject
End Property


The function signatures (type and number of arguments) for the Get and Set/Let methods must match, save for the additional final parameter on the Set/Let routine which is what is being assigned to the property.

As Merri mentioned, Property Set is called when you assign an object reference using the Set keyword. The object is passed by reference. Property Let is called when you assign a value type (Long, String etc.) optionally using the (deprecated) Let keyword, and it is passed by value.

So, you would use the above property Get/Set methods like this:
Dim AnObject As MyClassType
Set AnObject = MyCollectionClass.Item(5) ' Get
Set MyCollectionClass.Item(5) = AnObject ' Set


It works, but you may notice that the built-in VB Collection class has a slightly neater syntax:
Set AnObject = MyCollection(5)
To accomplish this, you need to set the Item property as the default method of your collection class. To do this, click anywhere in your procedure, and from the Tools menu, select Procedure Attributes. Click Advanced to expand the dialog, and from the Procedure ID dropdown, select (Default). This will enable the use of the shorthand syntax shown above.

Also, while you are in that dialog box you will see some other interesting options, which can be saved for another topic ;)