Version

DroppedDown Property

Determines if the control is dropped down.
Syntax
'Declaration
 
Public Property DroppedDown As Boolean
public bool DroppedDown {get; set;}
Remarks

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.

Example
This example uses the DroppedDown property to programmatically display the dropdown calendar.

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;

}
Requirements

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

See Also