Using public members of a class inside the class




Hello,

I have a class like this:

'Class module

Public Property Get GetTextFromRange() as String
'Code
End Property

Public Function ProcessText() as String

'For example:
ProcessText = Left$(Me.GetTextFromRange,5)


End Sub
'End of Class module

Is it a good practice to use public members of a class like that?

Regards,

Guillermo
.



Relevant Pages


Loading