プロパティの説明をプロパティウインドウに表示する

   <System.ComponentModel.Description("ここに説明文を書くとプロパティウインドウに表示されます。")> _
   Private _Cprop As String = ""
   Property Cprop() As String
       Get
           Return _Cprop
       End Get
       Set(ByVal value As String)
           _Cprop= value
       End Set
   End Property
※説明文の後の接続文字列( _ )は必要

















.
最終更新:2008年07月30日 10:26