S
shapper
Hello,
Can I create a sub property of a property in MyClass?
For example:
Private _Subject As String
Public WriteOnly Property Subject() As String
Set(ByVal value As String)
_Subject = value
End Set
End Property
Then create two subproperties:
Subject.PT and Subject.EN.
Does this make any sense?
Thanks,
Miguel
Can I create a sub property of a property in MyClass?
For example:
Private _Subject As String
Public WriteOnly Property Subject() As String
Set(ByVal value As String)
_Subject = value
End Set
End Property
Then create two subproperties:
Subject.PT and Subject.EN.
Does this make any sense?
Thanks,
Miguel