FarPoint.Win アセンブリ > FarPoint.Win 名前空間 > SuperEditBase クラス : Text プロパティ |
'Declaration Public Overrides Property Text As String
'使用法 Dim instance As SuperEditBase Dim value As String instance.Text = value value = instance.Text
public override string Text {get; set;}
このプロパティは、コントロールに表示される値をそのまま文字列として返します。たとえば、値が桁区切り記号やドル記号などの書式文字付きで表示される場合、Textプロパティの値はこれらの文字や記号を含みます。
このプロパティをValueプロパティと比較してください。
注意:コントロールが無効な値を含む場合、TextプロパティはNullを返します。 |
テキストを複数行に折り返すかどうかを指定するには、必要に応じて、TextWrapプロパティを設定します。
private void Form1_Load(object sender, System.EventArgs e) { control.InvalidOption = FarPoint.Win.InvalidOption.HideData; control.InvalidColor = Color.Blue; control.UserEntry = FarPoint.Win.UserEntry.FreeFormat; control.CausesValidation = true; control.Text = "InvalidColor"; } private void button1_Click(object sender, System.EventArgs e) { control.ResetInvalidColor(); }
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load control.InvalidOption = FarPoint.Win.InvalidOption.HideData control.InvalidColor = Color.Blue control.UserEntry = FarPoint.Win.UserEntry.FreeFormat control.CausesValidation = True control.Text = "InvalidColor" End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click control.ResetInvalidColor() End Sub