Problems Serializing Object Properties
The problem is the Visual Studio Designer will serialize the intrinsic data type properties of the Splitter but not the Appearance classes. Example:
Me.Splitter1 = New [CustomLibrary].Splitter
...
'
'Splitter1
'
' No Appearance serialization here!!!
Me.Splitter1.Location = New System.Drawing.Point(160, 0)
Me.Splitter1.Name = "Splitter1"
Me.Splitter1.ShowButton = False <== intrinsic datatype (boolean) serialization here
Me.Splitter1.Size = New System.Drawing.Size(8, 269)
Me.Splitter1.Visible = False
I can post a brief code listing if that will help. Thanks in advance.

