GrapeCity.Win.Editors.v80 アセンブリ > GrapeCity.Win.Editors 名前空間 > GcTextBox クラス : AllowSpace プロパティ |
Public Property AllowSpace As AllowSpace
public AllowSpace AllowSpace {get; set;}
AllowSpace プロパティは、Format プロパティの設定に依存せずに入力可能なスペースの種類を設定します。 AllowSpace プロパティがWideに設定されている場合、 Format プロパティにキーワード"H"のみが 設定されていても、コントロールには全角のスペースのみ入力可能です。 また、同様にAllowSpace プロパティがNarrowに設定されている場合、 キーワード"Z"のみが設定されていても、半角のスペースだけが入力可能になります。
既存のテキストにスペースが含まれている場合、AllowSpace プロパティをNoneに設定すると、 それらのスペースがすべて削除されます。
// Please use the following namespace // using System.Windows.Forms; // using GrapeCity.Win.Editors; public void InitializeTextBox() { // Create an instance of a GcTextBox control. GcTextBox gcTextBox1 = new GcTextBox(); // Allow the SBCS space only in the GcTextBox control. gcTextBox1.AllowSpace = AllowSpace.Narrow; // Allow the GcTextBox control to accept only upper case alphabet(A-Z). gcTextBox1.Format = "A"; // The GcTextBox control will not try to convert invalid char to valid char automatically. gcTextBox1.AutoConvert = false; // Create an instance of a GcTextBox control. GcTextBox gcTextBox2 = new GcTextBox(); // Accept upper and lower case alphabet, as well as the symbols. Except '#', '@' and '*' chars. gcTextBox2.Format = @"aA@^\#\@*"; // The GcTextBox will try to convert the invalid char to valid char automatically. gcTextBox2.AutoConvert = true; }
' Please use the following namespace ' Imports System.Windows.Forms ' Imports GrapeCity.Win.Editors Public Sub InitializeTextBox() ' Create an instance of a GcTextBox control. Dim gcTextBox1 As New GcTextBox() ' Allow the SBCS space only in the GcTextBox control. gcTextBox1.AllowSpace = AllowSpace.Narrow ' Allow the GcTextBox control to accept only upper case alphabet(A-Z). gcTextBox1.Format = "A" ' The GcTextBox control will not try to convert invalid char to valid char automatically. gcTextBox1.AutoConvert = False ' Create an instance of a GcTextBox control. Dim gcTextBox2 As New GcTextBox() ' Accept upper and lower case alphabet, as well as the symbols. Except '#', '@' and '*' chars. gcTextBox2.Format = "aA@^\#\@*" ' The GcTextBox will try to convert the invalid char to valid char automatically. gcTextBox2.AutoConvert = True End Sub