G
Guest
I have added a property of custom class type to a control. I can see and set
the property at design time, but nothing is saved.
I have added many other properties of defined types like string, boolean,
etc. And these all work fine.
Here is a sample of my property code...
<Category( "MyProperty" ) > _
Public Property DumbProperty( ) as MyCollection
Get
return some_MyCollection_Object
End Get
Set (ByVal Value as MyCollection )
some_MyCollection_Object = Value
End Set
End Property
What am I missing here? Any ideas or suggestions would be appreciated.
the property at design time, but nothing is saved.
I have added many other properties of defined types like string, boolean,
etc. And these all work fine.
Here is a sample of my property code...
<Category( "MyProperty" ) > _
Public Property DumbProperty( ) as MyCollection
Get
return some_MyCollection_Object
End Get
Set (ByVal Value as MyCollection )
some_MyCollection_Object = Value
End Set
End Property
What am I missing here? Any ideas or suggestions would be appreciated.