TestComponent
Imports System.ComponentModel
Public Class TestComponent
Inherits Component
Dim _dataSet As DataSet
<DefaultValue(CStr(Nothing))> _
Public Property DataSet() As DataSet
Get
Return _dataSet
End Get
Set(ByVal value As DataSet)
_dataSet = value
End Set
End Property
Dim _table As DataTable
<DefaultValue(CStr(Nothing))> _
Public Property Table() As DataTable
Get
Return _table
End Get
Set(ByVal value As DataTable)
_table = value
End Set
End Property
End Class