バージョン

Overflow プロパティ (WebButtonBase)

コントロールの高さまたは幅を超えるコントロールの内容を管理する方法を示す値。
シンタックス
'宣言
 
Public Property Overflow As ButtonOverflow
public ButtonOverflow Overflow {get; set;}
使用例
' Ensure that image and all text will be rendered
' regardless of possible small values of Width and Height of control
Me.WebImageButton1.Overflow = Infragistics.WebUI.WebControls.ButtonOverflow.NoWordWrap

' Note: if codes above are written within aspx, then it reduces the size of hidden ViewState passed to client
// Ensure that image and all text will be rendered
// regardless of possible small values of Width and Height of control
this.WebImageButton1.Overflow = Infragistics.WebUI.WebControls.ButtonOverflow.NoWordWrap;

// Note: if codes above are written within aspx, then it reduces the size of hidden ViewState passed to client
参照