View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Doug Maddox Doug Maddox is offline
external usenet poster
 
Posts: 1
Default Class Module Question

I have a simple class module with a property X as follows:
Private cX as Integer
Property Get X() As Integer
X = cX
End Property
Property Let X(xVal as Integer)
cX = xVal
End Property

When I view an object of this class in the Locals window, both X and
cX show up as properties of the object. Is there a way to make cX
invisible to the Locals window?

Thanks,
Doug