Skip to content

Instantly share code, notes, and snippets.

@osya
Last active August 29, 2015 14:26
Show Gist options
  • Save osya/e7fee322e72025157bd0 to your computer and use it in GitHub Desktop.
Save osya/e7fee322e72025157bd0 to your computer and use it in GitHub Desktop.
Properties in VBA #Excel #MIS #VBA
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