Posted 17 years ago
by Talyrond
Hi I am evaluating your excellent product and have only one outstanding item to resolve.
Please see the code sample below, this works, specifically the members of protected property 'Point'. So the 'X' will show in the intelliPrompt list
Imports System.DrawingNow this does not seem to work if the class 'ClassBase' is pushed out to an external code file.
The 'Point' property is reflected but not the members.
I have a sample project if that helps
Regards
Julian
Please see the code sample below, this works, specifically the members of protected property 'Point'. So the 'X' will show in the intelliPrompt list
Imports System.Drawing
Public Class ClassBase
Private pt As Point
Protected ReadOnly Property Point() As Point
Get
Return pt
End Get
End Property
End Class
Public Class ClassA
Inherits ClassBase
Public Sub Test()
Dim x As Integer
x = Me.Point.X
End Sub
End Class
The 'Point' property is reflected but not the members.
I have a sample project if that helps
Regards
Julian