Is there any way to include optional parameters (or even multiple parameters) in property getter/setters? In VB6 I could define getter/setter methods with multiple parameters (which would have to match exactly) and the last one in the list was always the property value. Is there an equivalent in Xojo?
i.e.:
Public Property Get Data(ByRef Index As Long, Optional IncludeInactive As Boolean = False) As Double
'Getter code goes here…
End Property
Public Property Let Data(ByRef Index As Long, Optional IncludeInactive As Boolean = False, vdata As Double)
'Setter code goes here…
End Property
Cheers.
-bill k