PowerTools InputMan for ASP.NET 8.0J
HighlightText プロパティ (GcComboBox)
使用例 

コントロールがフォーカスを受け取ったときに、テキストを選択するかどうかを取得または設定します。
構文
Public Property HighlightText As HighlightText
public HighlightText HighlightText {get; set;}

プロパティ値

既定値:GrapeCity.Web.Input.Core.HighlightText.None
解説
HighlightTextプロパティを使用すると、フォーカスを受け取ったときにテキストを選択状態にできます。 HighlightTextプロパティをHighlightText.Fieldに設定した場合、選択状態にするフィールドは、CursorPositionプロパティで指定します。
使用例
次のサンプルコードは、フォーカスを受け取ったときに、最初のフィールドを選択状態にする方法を示します。
Imports GrapeCity.Web.Input.Core

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    If Not IsPostBack Then
        GcComboBox1.Format.Pattern = "郵便番号:\D{3}-\D{4}"
        GcComboBox1.CursorPosition = 0
        GcComboBox1.HighlightText = HighlightText.Field
    End If
End Sub
using GrapeCity.Web.Input.Core;

private void Page_Load(object sender, System.EventArgs e)
{
    if(!IsPostBack)
    {
        GcComboBox1.Format.Pattern = "郵便番号:\\D{3}-\\D{4}";
        GcComboBox1.CursorPosition = 0;
        GcComboBox1.HighlightText = HighlightText.Field;
    }
}
参照

GcComboBox クラス
GcComboBox メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.