The DroppedDown property can be used to determine if the control is currently droppdown down and can be used to force the control to dropdown.
This property is only available at runtime.
Private Sub ShowDropDown() ' If the dropdown is not already visible, set the DroppedDown ' property to true, which will give the control focus and display ' the dropdown calendar. If (Not Me.ultraCalendarCombo1.DroppedDown) Then Me.ultraCalendarCombo1.DroppedDown = True End If End Sub
private void ShowDropDown() { // If the dropdown is not already visible, set the DroppedDown // property to true, which will give the control focus and display // the dropdown calendar. if ( ! this.ultraCalendarCombo1.DroppedDown ) this.ultraCalendarCombo1.DroppedDown = true; }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2