TextLabelクラス TextLabelコンストラクタ
TextLabelクラスの新しいインスタンスを初期化します。
使用法
Dim owner As Object	'親となるフォームオブジェクト

Dim instance As TextLabel = New TextLabel(owner)
使用例
'TextLabelクラス TextLabelコンストラクタ

Public Class AddIn

    Private std As Std
    Private tl As TextLabel

    Public Sub New()
		std = New Std()
        tl = New TextLabel(std.Owner)
    End Sub

End Class