Last active
August 29, 2015 14:26
-
-
Save osya/e7fee322e72025157bd0 to your computer and use it in GitHub Desktop.
Properties in VBA #Excel #MIS #VBA
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Private m_dMax# 'верхняя граница интервала | |
Public Property Get max() As Double | |
max = m_dMax | |
End Property | |
Public Property Let max(value#) | |
m_dMax = value | |
End Property |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment