Properties with Getter and Setter : Property « Class Module « VB.Net Tutorial

VB.Net Tutorial
1. Language Basics
2. Data Type
3. Operator
4. Statements
5. Date Time
6. Class Module
7. Development
8. Collections
9. Generics
10. Attributes
11. Event
12. Stream File
13. GUI
14. GUI Applications
15. 2D Graphics
16. I18N Internationlization
17. Reflection
18. Regular Expressions
19. Security
20. Socket Network
21. Thread
22. Windows
23. XML
24. Database ADO.net
25. Design Patterns
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
VB.Net Tutorial » Class Module » Property 
6. 37. 5. Properties with Getter and Setter
Public Class Tester
    Public Shared Sub Main
      Dim time As New CTime3()

      ' add one second
      time.Second = (time.Second + 1Mod 60

      ' add one minute if 60 seconds have passed
      If time.Second = Then
         time.Minute = (time.Minute + 1Mod 60
         ' add one hour if 60 minutes have passed
         If time.Minute = Then
            time.Hour = (time.Hour + 1Mod 24
         End If

      End If

      time.Hour = 1
      time.Minute = 2
      time.Second = 3

      Console.WriteLine("Hour: " & time.Hour & "; Minute: " & _
         time.Minute & "; Second: " & time.Second)

    End Sub

End Class

Class CTime3
   Inherits Object

   Private mHour As Integer
   Private mMinute As Integer
   Private mSecond As Integer

   Public Sub New()
   End Sub ' New

   ' property Hour
   Public Property Hour() As Integer

      ' return mHour value
      Get
         Return mHour
      End Get

      ' set mHour value
      Set(ByVal value As Integer)

         If (value >= AndAlso value < 24Then
            mHour = value
         Else
            mHour = 0
         End If

      End Set

   End Property ' Hour

   ' property Minute
   Public Property Minute() As Integer

      ' return mMinute value
      Get
         Return mMinute
      End Get

      ' set mMinute value
      Set(ByVal value As Integer)

         If (value >= AndAlso value < 60Then
            mMinute = value
         Else
            mMinute = 0
         End If

      End Set

   End Property ' Minute

   ' property Second
   Public Property Second() As Integer

      ' return mSecond value
      Get
         Return mSecond
      End Get

      ' set mSecond value
      Set(ByVal value As Integer)

         If (value >= AndAlso value < 60Then
            mSecond = value
         Else
            mSecond = 0
         End If

      End Set

   End Property ' Second

End Class
Hour: 1; Minute: 2; Second: 3
6. 37. Property
6. 37. 1. Define and use a Property
6. 37. 2. Default Property
6. 37. 3. Two properties
6. 37. 4. Do calculation in Property getter
6. 37. 5. Properties with Getter and Setter
6. 37. 6. Shared variable and Shared Property
6. 37. 7. Class with a property that performs validation
6. 37. 8. ReadOnly property
6. 37. 9. MultiKey Properties
6. 37. 10. Overloaded Properties
6. 37. 11. Shared Properties
6. 37. 12. Single Indexed Property
6. 37. 13. Loop through two dimensional array with GetUpperBound and GetLowerBound
6. 37. 14. Use Property to set private data
6. 37. 15. Do data check in property set
6. 37. 16. Convert data type in property set
6. 37. 17. Throw Exception in Property setting
6. 37. 18. Change value in Property getter
6. 37. 19. Friend Property
6. 37. 20. Readable and Writable
ww___w.j_a__va___2__s__.__c__o__m__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.