TextBoxHeight屬性主要用來設置顯示值的子控件TextBox的高度。與LabelHeight功能相似。
/// <summary>
/// 獲得本書更多內容,請看:
/// http://blog.csdn.net/ChengKing/archive/2008/08/18/2792440.aspx
/// </summary>
private Unit unitTextBoxHeight = Unit.Empty;
[Category("LabelTextBox")]
[Description("文本框寬度")]
public Unit TextBoxHeight
{
get
{
this.EnsureChildControls();
return this.tb.Height;
}
set
{
this.EnsureChildControls();
this.tb.Height = value;
}
}
ValidateExpression屬性主要用來設置驗證子控件的驗證表達式,屬性值為字符串類型。這裡 是把驗證子控件接口直接暴露給Field控件,比如,如果要驗證一個表示輸入郵件的字段,可以為 該屬性設置值為:"\w+([-+.']\w+)*@\w+([-.]\w+)* \.\w+([-.]\w+)*"(表示E-mail的正則表達 式)來驗證用戶輸入值是否是合法E-mail格式。驗證表達式不屬於本書要介紹的內容,一般的 ASP.NET相關書籍都會有介紹。
/// <summary>
/// 獲得本書更多內容,請看:
/// http://blog.csdn.net/ChengKing/archive/2008/08/18/2792440.aspx
/// </summary>
[Category("LabelTextBox")]
[Description("驗證表達式")]
public string ValidateExpression
{
get
{
this.EnsureChildControls();
return this.rev.ValidationExpression;
}
set
{
this.EnsureChildControls();
this.rev.ValidationExpression = value;
}
}