deebug

Zoom.vb

Jul 12th, 2011
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ''' <summary>
  2. ''' Zoom Class
  3. ''' </summary>
  4. ''' <remarks></remarks>
  5. Class Zoom
  6.     Public Property Value As Double
  7.     Public ReadOnly Property Text As String
  8.         Get
  9.             Return _Value.ToString("P0")
  10.         End Get
  11.     End Property
  12.     Public Sub New(ByVal value As Double)
  13.         Me._Value = value
  14.     End Sub
  15. End Class
Advertisement
Add Comment
Please, Sign In to add comment