Xceed Grid for WinForms v4.3 Documentation
Xceed.Editors.v2.6 Assembly / Xceed.Editors Namespace / WinTextBox Class / DropDownDirection Property


In This Topic
    DropDownDirection Property (WinTextBox)
    In This Topic
    Gets or sets the direction in which the textbox's dropdown will open.
    Syntax
    'Declaration
     
    <DescriptionAttribute("The direction in which the textbox's dropdown will open.")>
    <CategoryAttribute("DropDown")>
    <DefaultValueAttribute(Mono.Cecil.CustomAttributeArgument)>
    Public Property DropDownDirection As DropDownDirection
    'Usage
     
    Dim instance As WinTextBox
    Dim value As DropDownDirection
     
    instance.DropDownDirection = value
     
    value = instance.DropDownDirection
    [Description("The direction in which the textbox's dropdown will open.")]
    [Category("DropDown")]
    [DefaultValue(Mono.Cecil.CustomAttributeArgument)]
    public DropDownDirection DropDownDirection {get; set;}

    Property Value

    A DropDownDirection value indicating the direction in which the textbox's dropdown will open. By default, DefaultDropDownDirection.
    Remarks
    Automatic The dropdown will open below the control if enough space is available. If there is not enough space below the control, the dropdown will open above it.
    Up The dropdown will open above the control.
    Down The dropdown will open below the control.
    Requirements

    Target Platforms: 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