ComponentOne Dialog for ASP.NET Web Forms
C1.Web.Wijmo.Controls.45 Assembly / C1.Web.Wijmo.Controls.C1Input Namespace / C1InputText Class / Format Property

In This Topic
    Format Property (C1InputText)
    In This Topic
    Gets or sets the format string that defines the type of text allowed for input in the control.
    Syntax
    'Declaration
     
    Public Property Format As System.String
    public System.string Format {get; set;}
    Remarks
    The following key words are supported. DBCS Keywords: A Upper case DBCS alphabet (A-Z). a Lower case DBCS alphabet (a-z). K DBCS Katakana. 9 DBCS Numbers (0-9). # DBCS numbers and number related symbols (0-9, +-$\,.). @ DBCS symbols. J Hiragana. Z All DBCS characters without Space. SBCS Keywords\,.). @ Symbols. H All SBCS characters without Space. ^ Any character not included in the specified format. \ Escape character. For example, format = 'A', then the wijinputtext can only input the upper case DBCS alphabet. If you input the SBCS 'k', then it will be automatic conver to DBCS 'K' if the autoConvert is true, But if the autoConvert is false, you can't input 'k'.
    See Also