Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / GcDateTime Class / IsDropDownOpen Property


In This Topic
    IsDropDownOpen Property (GcDateTime)
    In This Topic
    Gets or sets a value that indicates whether the drop-down for a GcDateTime is currently open. This is a dependency property.
    Syntax
    'Declaration
     
    <BindableAttribute(True)>
    Public Property IsDropDownOpen As Boolean
    'Usage
     
    Dim instance As GcDateTime
    Dim value As Boolean
     
    instance.IsDropDownOpen = value
     
    value = instance.IsDropDownOpen
    [Bindable(true)]
    public bool IsDropDownOpen {get; set;}

    Property Value

    true if the drop-down is open; otherwise, false. The default is false.
    Remarks

    If AllowDropDownOpen property is false, even set this property to true, user will find this property is still false.

    Changing this property would fire DropDownOpened or DropDownClosed event.

    See Also