TextLabelクラス Textプロパティ
表示する文字列を設定または取得します。
使用法
Dim instance As TextLabel
Dim value As String
Dim returnValue As String

instance.Text = value
returnValue = instance.Text
使用例
'TextLabelクラス Textプロパティ

Public Class AddIn

    Private std As Std
    Private tl As TextLabel

    Public Sub New()
		std = New Std()
        tl = New TextLabel(std.Owner)
		tl.Text = "Hello World"
    End Sub

End Class