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 |
Name and define the logical tiers in a traditional 3-tiered architecture?
What about DLL calls that require callbacks?
Binary Access-method isused to access file in which manner?
How do I get my application on top?
Is a foo VBX/DLL available as shareware/freeware?
How many ways we can access file using VB?
What is the return type of Instr and Strcmp?
what are the Differences between Modal and Modaless forms?
Explain the working with task in Gantt chart view.
What is the use of stretch property in Image control?
Default cursor Type and LockEdit type in DAO?
What are the record set types?
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)