Blue Theme Orange Theme Green Theme Red Theme
 
DevExpress Free UI Controls
Home | Forums | Videos | Photos | Blogs | Beginners | Advertise with Us
 | Consulting  
Submit an Article Submit a Blog 
 Jump to
Skip Navigation Links
TechnologyExpand Technology
WebsiteExpand Website
Discover the top 5 tips for understanding .NET Interop
Search :       Advanced Search »
Home » Visual Basic Language » Understanding Properties in VB.NET

Understanding Properties in VB.NET

In VB.NET, properties are nothing but natural extension of data fields. They are usually known as ‘smart fields’ in VB.NET community. We know that data encapsulation and hiding are the two fundamental characteristics of any object oriented programming language.

Author Rank :
Page Views : 322590
Downloads : 0
Rating :
 Rate it
Level : Beginner
   Print Read/Post comments Post a comment  Similar Articles  
   Email to a friend  Bookmark  Author's other articles  
 
Mindcracker MVP Summit 2012
Become a Sponsor
 Tag Cloud
 Latest Jobs
More ... 
 Latest Interview Questions
More ... 

In VB.NET, properties are nothing but natural extension of data fields. They are usually known as 'smart fields' in VB.NET community. We know that data encapsulation and hiding are the two fundamental characteristics of any object oriented programming language. In VB.NET, data encapsulation is possible through either classes or structures. By using various access modifiers like private, public, protected, internal etc it is possible to control the accessibility of the class members. 

Usually inside a class, we declare a data field as private and will provide a set of public SET and GET methods to access the data fields. This is a good programming practice, since the data fields are not directly accessible out side the class. We must use the set/get methods to access the data fields. 

An example, which uses a set of set/get methods, is shown below.

'SET/GET methods
Imports System
Class [MyClass]
Private x As Integer
Public Sub SetX(ByVal i As Integer)
x = i
End Sub 'SetX
Public Function GetX() As Integer
Return x
End Function 'GetX
End Class '[MyClass]
Class MyClient
Public Shared Sub Main()
Dim mc As New [MyClass]
mc.SetX(10)
Dim xVal As Integer = mc.GetX()
Console.WriteLine(xVal)
'Displays 10
End Sub 'Main
End Class 'MyClient

But VB.NET provides a built in mechanism called properties to do the above. In VB.NET, properties are defined using the property declaration syntax. The general form of declaring a property is as follows. 

<acces_modifier> <return_type> <property_name>
Get
End Get

Set
End Set

Where <access_modifier> can be private, public, protected or internal. The <return_type> can be any valid VB.NET type. Note that the first part of the syntax looks quite similar to a field declaration and second part consists of a get accessor and a set accessor. 

For example the above program can be modifies with a property X as follows.

Class MyClass
Private x As Integer
Public Property X() As Integer
Get
Return x
End Get
Set(ByVal Value As Integer)
x = value
End Set
End Property
End
Class 'MyClass

The object of the class MyClass can access the property X as follows.

Dim mc As New [MyClass]
mc.X = 10
' calls set accessor of the property X, and pass 10 as value of the standard field "value".This is used for setting value for the data member x.
Console.WriteLine(mc.X)
' displays 10. Calls the get accessor of the property X.

The complete program is shown below.

'VB.NET: Property
Imports System
Class MyClass
Private x As Integer
Public Property X() As Integer
Get
Return x
End Get
Set(ByVal Value As Integer)
x = value
End Set
End Property
End
Class '[MyClass]
Class MyClient
Public Shared Sub Main()
Dim mc As New MyClass()
mc.X = 10
Dim xVal As Integer = mc.X
Console.WriteLine(xVal)
'Displays 10
End Sub 'Main
End Class 'MyClient 

Remember that a property should have at least one accessor, either set or get. The set accessor has a free variable available in it called value, which gets created automatically by the compiler. We can't declare any variable with the name value inside the set accessor.

We can do very complicated calculations inside the set or get accessor. Even they can throw exceptions. 

Since normal data fields and properties are stored in the same memory space, in VB.NET, it is not possible to declare a field and property with the same name. 

Static Properties

VB.NET also supports static properties, which belongs to the class rather than to the objects of the class. All the rules applicable to a static member are applicable to static properties also. 

The following program shows a class with a static property.

'VB.NET : static Property
Imports System
Class MyClass
Private Shared x As Integer
Public Shared Property X() As Integer
Get
Return x
End Get
Set(ByVal Value As Integer)
x = value
End Set
End Property
End
Class 'MyClass
Class MyClient
Public Shared Sub Main()
MyClass.X = 10
Dim xVal As Integer =MyClass .X
Console.WriteLine(xVal)
'Displays 10
End Sub 'Main
End Class 'MyClient
 

Remember that set/get accessor of static property can access only other static members of the class. Also static properties are invoking by using the class name. 

Properties & Inheritance 

The properties of a Base class can be inherited to a Derived class.

'VB.NET : Property : Inheritance
Imports System
Class Base
Public Property X() As Integer
Get
Console.Write("Base GET")
Return 10
End Get
Set(ByVal Value As Integer)
Console.Write("Base SET")
End Set
End Property
End
Class 'Base
Class Derived
Inherits Base
End Class 'Derived
Class MyClient
Public Shared Sub Main()
Dim d1 As New Derived
d1.X = 10
Console.WriteLine(d1.X)
'Displays 'Base SET Base GET 10'
End Sub 'Main
End Class 'MyClient

The above program is very straightforward. The inheritance of properties is just like inheritance any other member. 

Properties & Polymorphism 

A Base class property can be polymorphicaly overridden in a Derived class. But remember that the modifiers like virtual, override etc are using at property level, not at accessor level.

'VB.NET : Property : Polymorphism
Imports System
Class Base
Public Overridable Property X() As Integer
Get
Console.Write("Base GET")
Return 10
End Get
Set(ByVal Value As Integer)
Console.Write("Base SET")
End Set
End Property
End
Class 'Base
Class Derived
Inherits Base
Public Overrides Property X() As Integer
Get
Console.Write("Derived GET")
Return 10
End Get
Set(ByVal Value As Integer)
Console.Write("Derived SET")
End Set
End Property
End
Class 'Derived
Class MyClient
Public Shared Sub Main()
Dim b1 = New Derived
b1.X = 10
Console.WriteLine(b1.X)
'Displays 'Derived SET Derived GET 10'
End Sub 'Main
End Class 'MyClient

Abstract Properties 

A property inside a class can be declared as abstract by using the keyword abstract. Remember that an abstract property in a class carries no code at all. The get/set accessors are simply represented with a semicolon. In the derived class we must implement both set and get assessors. 

If the abstract class contains only set accessor, we can implement only set in the derived class. 

The following program shows an abstract property in action.

'VB.NET : Property : Abstract
Imports System
MustInherit Class Abstract
Public MustOverride Property X() As Integer
Get
End
Get
Set
End
Set
End
Property
End
Class 'Abstract
Class Concrete
Inherits Abstract
Public Overrides Property X() As Integer
Get
Console.Write(" GET")
Return 10
End Get
Set(ByVal Value As Integer)
Console.Write(" SET")
End Set
End Property
End
Class 'Concrete
Class MyClient
Public Shared Sub Main()
Dim c1 As New Concrete
c1.X = 10
Console.WriteLine(c1.X)
'Displays 'SET GET 10'
End Sub 'Main
End Class 'MyClient

The properties are an important features added in language level inside VB.NET. They are very useful in GUI programming. Remember that the compiler actually generates the appropriate getter and setter methods when it parses the VB.NET property syntax.

Comment Request!
Thank you for reading this post. Please post your feedback, question, or comments about this post Here.
Login to add your contents and source code to this article
 [Top] Rate this article
 
 About the author
 
Rajesh VS
Rajesh V.S is a software engineer in the area of C/C++/JAVA for the last 5 years. Currently he is interested in core C# language. He is Sun Certified Java Programmer. His other area of interest includes Design Patterns and CORBA. He is also a writer of numerous articles for many technical Web sites.
Looking for C# Consulting?
C# Consulting is founded in 2002 by the founders of C# Corner. Unlike a traditional consulting company, our consultants are well-known experts in .NET and many of them are MVPs, authors, and trainers. We specialize in Microsoft .NET development and utilize Agile Development and Extreme Programming practices to provide fast pace quick turnaround results. Our software development model is a mix of Agile Development, traditional SDLC, and Waterfall models.
Click here to learn more about C# Consulting.
 
Introducing MaxV - one click. infinite control. Hyper-V Hosting from MaximumASP.
Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
Dynamic PDF
ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
Discover the top 5 tips for understanding .NET
Ricky Leeks presents the top 5 tips for understanding .NET Interoperability. Learn more.
Nevron Chart for .NET 2010.1 Now Available
The leading .NET charting control now features PDF, Flash and Silverlight export, visualization of large datasets and more. Deliver true charting functionality to your BI, Scorecard, Presentation or Scientific apps. Download evaluation now.
ASP.NET 4 Hosting
Get 2 Months Free of ASP.NET Hosting for Only $4.95/month! Receive FREE MS SQL and MySQL Databases Including ASP.NET 4/3.5, MVC 3.0, Silverlight 4, Windows 2008/IIS 7.0 Plus FREE IIS 7 Modules. Host UNLIMITED ASP.NET Web Sites – Click Here!
 
 Post a Feedback, Comment, or Question about this article
Subject:
Comment:
6 Months Free & No Setup Fees ASP.NET Hosting!
Become a Sponsor
 Comments
about component properties by anitha On January 19, 2006

sir,

my doudt is how to create sub property for my component.

i want to create station component.

for example,

station.stationtype.junction

here station is a component.stationtype is a property and junction is a sub property.

i am able to call the stationtype property but not able to call junction property within the stationtype property.

in vb.net for combobox

we have combobox1.items.count

comparing this with my question

combobox1=station

items=stationtype

count=junction

i hope that u clear my doubt.

truly anithaalagappan

 

Reply | Email | Modify 
Re: about component properties by Himani On February 28, 2007

Hi..this is the method i have devised to create sub-properties.lets take an example..we have a class named clsType.vb and a form named form1.vb to test the class.the form1.vb interface has a textbox named textbox1 and a button named button1..

'<<<class's code>>>>

'Junction Class

Public Class clsJunct

  Private strJunction As String

  Public Property Junction() As String

   Get

     Junction = strJunction

   End Get

   Set(ByVal value As String)

     strJunction = value

   End Set

 End Property

End Class

'StationType class

Public Class ClsStationType

 Private strstationtype As New clsJunct

 Public Property stationtype() As clsJunct

   Get

     stationtype = strstationtype

   End Get

   Set(ByVal value As clsJunct)

     strstationtype = value

   End Set

 End Property

End Class

'

'<<form1.vb code>>>>

Public Class Form1

  Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

     Dim station As New ClsStationType

     station.stationtype.Junction = TextBox2.Text

     MsgBox(station.stationtype.Junction)

  End Sub

End Class

 

Reply | Email | Modify 
Thank you. by Ishwar On September 22, 2009
Thank you for the info
Reply | Email | Modify 
Defination of VB by Anwer On January 26, 2010
VB Is Most Popular And Ideal Programming Language For Developing Sophisticated Professional Application For Microsoft Windows.
Reply | Email | Modify 
Team Foundation Server Hosting
 © 2012  contents copyright of their authors. Rest everything copyright Mindcracker. All rights reserved.