ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / DropDown Class
Members






In This Topic
    DropDown Class
    In This Topic
    DropDown control (abstract) contains an input element and a button used to show or hide the drop-down.
    Object Model
    DropDown Class
    Syntax
    'Declaration
     
    
    <ScriptsAttribute(Mono.Cecil.CustomAttributeArgument[])>
    Public MustInherit Class DropDown 
       Inherits FormInputBase
       Implements IDropDown, ITemplate, Microsoft.AspNetCore.Html.IHtmlContent 
    'Usage
     
    
    Dim instance As DropDown
    [Scripts(Mono.Cecil.CustomAttributeArgument[])]
    public abstract class DropDown : FormInputBase, IDropDown, ITemplate, Microsoft.AspNetCore.Html.IHtmlContent  
    public class DropDown = class(FormInputBase, IDropDown, ITemplate, Microsoft.AspNetCore.Html.IHtmlContent)abstract; 
    ScriptsAttribute(Mono.Cecil.CustomAttributeArgument[])
    public abstract class DropDown extends FormInputBase implements IDropDown, ITemplate, Microsoft.AspNetCore.Html.IHtmlContent 
    [Scripts(Mono.Cecil.CustomAttributeArgument[])]
    public __gc abstract class DropDown : public FormInputBase, IDropDown, ITemplate, Microsoft.AspNetCore.Html.IHtmlContent  
    [Scripts(Mono.Cecil.CustomAttributeArgument[])]
    public ref class DropDown abstract : public FormInputBase, IDropDown, ITemplate, Microsoft.AspNetCore.Html.IHtmlContent  
    Remarks
    Derived classes must override the _createDropDown method to create whatever editor they want to show in the drop down area (a list of items, a calendar, a color editor, etc).
    Inheritance Hierarchy

    System.Object
       C1.Web.Mvc.Component
          C1.Web.Mvc.Control
             C1.Web.Mvc.InputBase
                C1.Web.Mvc.FormInputBase
                   C1.Web.Mvc.DropDown
                      C1.Web.Mvc.InputColor
                      C1.Web.Mvc.InputDateBase

    See Also