バージョン

AutoSize プロパティ

コントロールがフォントサイズに合わせて自動的にサイズ変更するかどうかを設定します。
シンタックス
'宣言
 
Public Overrides Property AutoSize As Boolean
public override bool AutoSize {get; set;}
解説

このプロパティのデフォルト値は True です。Trueに設定されると、コントロールの高さは変更できません。代わりに高さはコントロールの解決されたフォントに基づいて設定されます。

使用例
Private Sub SetHeight(ByVal height As Integer)

    '	When the AutoSize property is true, attempts to set the control's
    '	Height property will be ignored, so set AutoSize to false.
    Me.ultraCalendarCombo1.AutoSize = False


    '	Now set the height
    Me.ultraCalendarCombo1.Height = height

End Sub
private void SetHeight( int height )
{

	//	When the AutoSize property is true, attempts to set the control's
	//	Height property will be ignored, so set AutoSize to false.
	this.ultraCalendarCombo1.AutoSize = false;


	//	Now set the height
	this.ultraCalendarCombo1.Height = height;

}
参照