<System.ComponentModel.DefaultPropertyAttribute("Title")> _ Public Class SimpleProperties ''' Private _Title As String Private _Show As Boolean Private _Number As Short ''' <System.ComponentModel.CategoryAttribute("Application"), _ System.ComponentModel.Browsable(True), _ System.ComponentModel.[ReadOnly](False), _ System.ComponentModel.BindableAttribute(False), _ System.ComponentModel.DefaultValueAttribute(""), _ System.ComponentModel.DesignOnly(False), _ System.ComponentModel.DescriptionAttribute("Enter Title for the application")> _ Public Property Title() As String Get Return _Title End Get Set(ByVal Value As String) _Title = Value End Set End Property ''' <System.ComponentModel.CategoryAttribute("Application"), _ System.ComponentModel.Browsable(True), _ System.ComponentModel.[ReadOnly](False), _ System.ComponentModel.BindableAttribute(False), _ System.ComponentModel.DefaultValueAttribute("True"), _ System.ComponentModel.DesignOnly(False), _ System.ComponentModel.DescriptionAttribute("Show option")> _ Public Property Show() As Boolean Get Return _Show End Get Set(ByVal Value As Boolean) _Show = Value End Set End Property ''' <System.ComponentModel.CategoryAttribute("Application"), _ System.ComponentModel.Browsable(True), _ System.ComponentModel.[ReadOnly](False), _ System.ComponentModel.BindableAttribute(False), _ System.ComponentModel.DefaultValueAttribute("0"), _ System.ComponentModel.DesignOnly(False), _ System.ComponentModel.DescriptionAttribute("Enter a number")> _ Public Property Number() As Short Get Return _Number End Get Set(ByVal Value As Short) _Number = Value End Set End Property ''' End Class
|