このプロパティのデフォルト値は 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; }