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 |
What is data binding in vb net?
What are the Differenct Types of Instancing Property in ActiveX Dll and Exe?
Besides Standard Exe what are other types of projects in VB?
what is visual basic
What is the use of Hyperlink control for DHTML applications?
What is controls in vb?
_____ is the property to ___,____,____ are valid for recordsource property of dat control.
What is ado in vb.net?
What is ActiveX Document?
Difference between Recordset and Querydef?
2 Answers 3i Infotech, IBM, TCS,
How to get free file location in memory?
How can I access a record by record number?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)