Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Explain Get, Let, Set Properties.



Explain Get, Let, Set Properties...

Answer / vishal sinha

The Let property is used to assign values to the attributes
of a class. The following is an example of a Let property.

Public Property Let Minute(ByVal m As Integer)
If (m >= 0 And m < 60) Then
mMinute = m
Else
mMinute = 0
End If
End Property


With Get and Set, it's as simple as it sounds...

The Get property is similar to a function in that it returns
a value. It is used return the attributes of a class. The
following is an example of a Get Property called Minute that
returns the private data member, mMinute.

Public Property Get Minute() As Integer
Minute = mMinute
End Property

Objects may not be assigned values directly. Instead, an
object reference is required. With properties, this is
achieved using the Set property.

Public Property Set EndTime(ByVal t As CClock)
Set mFinish = t
End Property

Is This Answer Correct ?    6 Yes 0 No

Post New Answer

More Visual Basic Interview Questions

What areTypes of compatability in VB and their usage ?

4 Answers   MBT,


What are the different types of errors in visual Basic?

8 Answers   ABC,


which argument can be used to make a menu item into bold?

2 Answers  


What is ado data control in vb?

0 Answers  


How to trap Data Base Error?

1 Answers  


Where can I get good up-to-date information about VB?

0 Answers  


How many types of ActiveX Components are there in Visual Basic and what are they?

2 Answers  


Does VB support pointers to functions?

0 Answers  


How should dates be implemented so they work with other language and country formats?

0 Answers  


How would you find out the value property in Slider Bar Control?

0 Answers  


what are the types of Recordsets?

1 Answers   Wipro,


What is ActiveX Control?

0 Answers   ABC,


Categories