<CategorySortOrder("Visual", 1)> _
<CategorySortOrder("Data", 2)> _
Public Class [MyClass]
<Category("Data")> _
Public Property DataSourceLocation() As String
Get
Return m_DataSourceLocation
End Get
Set
m_DataSourceLocation = Value
End Set
End Property
Private m_DataSourceLocation As String
<Category("Data")> _
Public Property DataSourcePath() As String
Get
Return m_DataSourcePath
End Get
Set
m_DataSourcePath = Value
End Set
End Property
Private m_DataSourcePath As String
<Category("Visual")> _
Public Property Foreground() As Color
Get
Return m_Foreground
End Get
Set
m_Foreground = Value
End Set
End Property
Private m_Foreground As Color
<Category("Visual")> _
Public Property Background() As String
Get
Return m_Background
End Get
Set
m_Background = Value
End Set
End Property
Private m_Background As String
End Class