ASP.NET MVC - EJ2

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class MultiSelectBuilder

    Show / Hide Table of Contents

    Class MultiSelectBuilder

    Inheritance
    System.Object
    ControlBuilder
    MultiSelectBuilder
    Inherited Members
    ControlBuilder.Context
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: Syncfusion.EJ2.DropDowns
    Assembly: Syncfusion.EJ2.dll
    Syntax
    public class MultiSelectBuilder : ControlBuilder

    Constructors

    MultiSelectBuilder()

    Declaration
    public MultiSelectBuilder()

    MultiSelectBuilder(MultiSelect)

    Declaration
    public MultiSelectBuilder(MultiSelect model)
    Parameters
    Type Name Description
    MultiSelect model

    Fields

    model

    Declaration
    public MultiSelect model
    Field Value
    Type Description
    MultiSelect

    Properties

    HtmlAttr

    Declaration
    public IDictionary<string, object> HtmlAttr { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IDictionary<System.String, System.Object>

    ID

    Declaration
    public string ID { get; set; }
    Property Value
    Type Description
    System.String

    Output

    Declaration
    public override TextWriter Output { get; set; }
    Property Value
    Type Description
    System.IO.TextWriter
    Overrides
    ControlBuilder.Output

    Methods

    ActionBegin(String)

    Triggers before fetching data from the remote server.

    Declaration
    public MultiSelectBuilder ActionBegin(string actionBegin)
    Parameters
    Type Name Description
    System.String actionBegin
    Returns
    Type Description
    MultiSelectBuilder

    ActionComplete(String)

    Triggers after data is fetched successfully from the remote server.

    Declaration
    public MultiSelectBuilder ActionComplete(string actionComplete)
    Parameters
    Type Name Description
    System.String actionComplete
    Returns
    Type Description
    MultiSelectBuilder

    ActionFailure(String)

    Triggers when the data fetch request from the remote server fails.

    Declaration
    public MultiSelectBuilder ActionFailure(string actionFailure)
    Parameters
    Type Name Description
    System.String actionFailure
    Returns
    Type Description
    MultiSelectBuilder

    ActionFailureTemplate(String)

    Accepts the template and assigns it to the popup list content of the MultiSelect component when the data fetch request from the remote server fails.

    Declaration
    public MultiSelectBuilder ActionFailureTemplate(string actionFailureTemplate)
    Parameters
    Type Name Description
    System.String actionFailureTemplate
    Returns
    Type Description
    MultiSelectBuilder

    AddTagOnBlur(Boolean)

    By default, the typed value is converting into chip or update as value of the component when you press the enter key or select from the popup. If you want to convert the typed value into chip or update as value of the component while focusing out the component, then enable this property. If custom value is enabled, both custom value and value present in the list are converted into tag while focusing out the component; Otherwise, value present in the list is converted into tag while focusing out the component.

    Declaration
    public MultiSelectBuilder AddTagOnBlur(bool addTagOnBlur = true)
    Parameters
    Type Name Description
    System.Boolean addTagOnBlur
    Returns
    Type Description
    MultiSelectBuilder

    AllowCustomValue(Boolean)

    Allows user to add a custom value, the value which is not present in the suggestion list.

    Declaration
    public MultiSelectBuilder AllowCustomValue(bool allowCustomValue = true)
    Parameters
    Type Name Description
    System.Boolean allowCustomValue
    Returns
    Type Description
    MultiSelectBuilder

    AllowFiltering(Boolean)

    To enable the filtering option in this component. Filter action performs when type in search box and collect the matched item through filtering event. If searching character does not match, noRecordsTemplate property value will be shown.

    Declaration
    public MultiSelectBuilder AllowFiltering(bool allowFiltering = true)
    Parameters
    Type Name Description
    System.Boolean allowFiltering
    Returns
    Type Description
    MultiSelectBuilder

    BeforeOpen(String)

    Fires when popup opens before animation.

    Declaration
    public MultiSelectBuilder BeforeOpen(string beforeOpen)
    Parameters
    Type Name Description
    System.String beforeOpen
    Returns
    Type Description
    MultiSelectBuilder

    BeforeSelectAll(String)

    Fires before select all process.

    Declaration
    public MultiSelectBuilder BeforeSelectAll(string beforeSelectAll)
    Parameters
    Type Name Description
    System.String beforeSelectAll
    Returns
    Type Description
    MultiSelectBuilder

    Blur(String)

    Event triggers when the input get focus-out.

    Declaration
    public MultiSelectBuilder Blur(string blur)
    Parameters
    Type Name Description
    System.String blur
    Returns
    Type Description
    MultiSelectBuilder

    Change(String)

    Fires each time when selection changes happened in list items after model and input value get affected.

    Declaration
    public MultiSelectBuilder Change(string change)
    Parameters
    Type Name Description
    System.String change
    Returns
    Type Description
    MultiSelectBuilder

    ChangeOnBlur(Boolean)

    By default, the multiselect component fires the change event while focus out the component. If you want to fires the change event on every value selection and remove, then disable the changeOnBlur property.

    Declaration
    public MultiSelectBuilder ChangeOnBlur(bool changeOnBlur = true)
    Parameters
    Type Name Description
    System.Boolean changeOnBlur
    Returns
    Type Description
    MultiSelectBuilder

    ChipSelection(String)

    Event triggers when the chip selection.

    Declaration
    public MultiSelectBuilder ChipSelection(string chipSelection)
    Parameters
    Type Name Description
    System.String chipSelection
    Returns
    Type Description
    MultiSelectBuilder

    Close(String)

    Fires when popup close after animation completion.

    Declaration
    public MultiSelectBuilder Close(string close)
    Parameters
    Type Name Description
    System.String close
    Returns
    Type Description
    MultiSelectBuilder

    ClosePopupOnSelect(Boolean)

    Based on the property, when item get select popup visibility state will changed.

    Declaration
    public MultiSelectBuilder ClosePopupOnSelect(bool closePopupOnSelect = true)
    Parameters
    Type Name Description
    System.Boolean closePopupOnSelect
    Returns
    Type Description
    MultiSelectBuilder

    Created(String)

    Triggers when the component is created.

    Declaration
    public MultiSelectBuilder Created(string created)
    Parameters
    Type Name Description
    System.String created
    Returns
    Type Description
    MultiSelectBuilder

    CssClass(String)

    Sets the CSS classes to root element of this component which helps to customize the complete styles.

    Declaration
    public MultiSelectBuilder CssClass(string cssClass)
    Parameters
    Type Name Description
    System.String cssClass
    Returns
    Type Description
    MultiSelectBuilder

    CustomValueSelection(String)

    Triggers when the customValue is selected.

    Declaration
    public MultiSelectBuilder CustomValueSelection(string customValueSelection)
    Parameters
    Type Name Description
    System.String customValueSelection
    Returns
    Type Description
    MultiSelectBuilder

    DataBound(String)

    Triggers when data source is populated in the popup list..

    Declaration
    public MultiSelectBuilder DataBound(string dataBound)
    Parameters
    Type Name Description
    System.String dataBound
    Returns
    Type Description
    MultiSelectBuilder

    DataSource(Action<DataManagerBuilder>)

    Declaration
    public MultiSelectBuilder DataSource(Action<DataManagerBuilder> dataSource)
    Parameters
    Type Name Description
    System.Action<DataManagerBuilder> dataSource
    Returns
    Type Description
    MultiSelectBuilder

    DataSource(Double[])

    Accepts the list items either through local or remote service and binds it to the MultiSelect component. It can be an array of JSON Objects or an instance of DataManager.

    Declaration
    public MultiSelectBuilder DataSource(double[] dataSource)
    Parameters
    Type Name Description
    System.Double[] dataSource
    Returns
    Type Description
    MultiSelectBuilder

    DataSource(Object)

    Accepts the list items either through local or remote service and binds it to the MultiSelect component. It can be an array of JSON Objects or an instance of DataManager.

    Declaration
    public MultiSelectBuilder DataSource(object dataSource)
    Parameters
    Type Name Description
    System.Object dataSource
    Returns
    Type Description
    MultiSelectBuilder

    DataSource(String[])

    Accepts the list items either through local or remote service and binds it to the MultiSelect component. It can be an array of JSON Objects or an instance of DataManager.

    Declaration
    public MultiSelectBuilder DataSource(string[] dataSource)
    Parameters
    Type Name Description
    System.String[] dataSource
    Returns
    Type Description
    MultiSelectBuilder

    DelimiterChar(String)

    Sets the delimiter character for 'default' and 'delimiter' visibility modes.

    Declaration
    public MultiSelectBuilder DelimiterChar(string delimiterChar)
    Parameters
    Type Name Description
    System.String delimiterChar
    Returns
    Type Description
    MultiSelectBuilder

    Destroyed(String)

    Triggers when the component is destroyed.

    Declaration
    public MultiSelectBuilder Destroyed(string destroyed)
    Parameters
    Type Name Description
    System.String destroyed
    Returns
    Type Description
    MultiSelectBuilder

    Enabled(Boolean)

    Specifies a value that indicates whether the MultiSelect component is enabled or not.

    Declaration
    public MultiSelectBuilder Enabled(bool enabled = true)
    Parameters
    Type Name Description
    System.Boolean enabled
    Returns
    Type Description
    MultiSelectBuilder

    EnableGroupCheckBox(Boolean)

    Specifies a Boolean value that indicates the whether the grouped list items are allowed to check by checking the group header in checkbox mode. By default, there is no checkbox provided for group headers. This property allows you to render checkbox for group headers and to select all the grouped items at once

    Declaration
    public MultiSelectBuilder EnableGroupCheckBox(bool enableGroupCheckBox = true)
    Parameters
    Type Name Description
    System.Boolean enableGroupCheckBox
    Returns
    Type Description
    MultiSelectBuilder

    EnableHtmlSanitizer(Boolean)

    Defines whether to allow the cross-scripting site or not.

    Declaration
    public MultiSelectBuilder EnableHtmlSanitizer(bool enableHtmlSanitizer = true)
    Parameters
    Type Name Description
    System.Boolean enableHtmlSanitizer
    Returns
    Type Description
    MultiSelectBuilder

    EnablePersistence(Boolean)

    Enable or disable persisting MultiSelect component's state between page reloads. If enabled, following list of states will be persisted.

    1. value
    Declaration
    public MultiSelectBuilder EnablePersistence(bool enablePersistence = true)
    Parameters
    Type Name Description
    System.Boolean enablePersistence
    Returns
    Type Description
    MultiSelectBuilder

    EnableRtl(Boolean)

    Enable or disable rendering component in right to left direction.

    Declaration
    public MultiSelectBuilder EnableRtl(bool enableRtl = true)
    Parameters
    Type Name Description
    System.Boolean enableRtl
    Returns
    Type Description
    MultiSelectBuilder

    EnableSelectionOrder(Boolean)

    Reorder the selected items in popup visibility state.

    Declaration
    public MultiSelectBuilder EnableSelectionOrder(bool enableSelectionOrder = true)
    Parameters
    Type Name Description
    System.Boolean enableSelectionOrder
    Returns
    Type Description
    MultiSelectBuilder

    Fields(MultiSelectFieldSettings)

    The fields property maps the columns of the data table and binds the data to the component. text - Maps the text column from data table for each list item. value - Maps the value column from data table for each list item. iconCss - Maps the icon class column from data table for each list item. groupBy - Group the list items with it's related items by mapping groupBy field.

    Declaration
    public MultiSelectBuilder Fields(MultiSelectFieldSettings fields)
    Parameters
    Type Name Description
    MultiSelectFieldSettings fields
    Returns
    Type Description
    MultiSelectBuilder

    Fields(Action<MultiSelectFieldSettingsBuilder>)

    Declaration
    public MultiSelectBuilder Fields(Action<MultiSelectFieldSettingsBuilder> fields)
    Parameters
    Type Name Description
    System.Action<MultiSelectFieldSettingsBuilder> fields
    Returns
    Type Description
    MultiSelectBuilder

    FilterBarPlaceholder(String)

    Accepts the value to be displayed as a watermark text on the filter bar.

    Declaration
    public MultiSelectBuilder FilterBarPlaceholder(string filterBarPlaceholder)
    Parameters
    Type Name Description
    System.String filterBarPlaceholder
    Returns
    Type Description
    MultiSelectBuilder

    Filtering(String)

    Triggers event,when user types a text in search box.

    For more details about filtering, refer to Filtering documentation.

    Declaration
    public MultiSelectBuilder Filtering(string filtering)
    Parameters
    Type Name Description
    System.String filtering
    Returns
    Type Description
    MultiSelectBuilder

    FilterType(FilterType)

    Determines on which filter type, the MultiSelect component needs to be considered on search action. The FilterType and its supported data types are

    Declaration
    public MultiSelectBuilder FilterType(FilterType filterType)
    Parameters
    Type Name Description
    FilterType filterType
    Returns
    Type Description
    MultiSelectBuilder

    FloatLabelType(FloatLabelType)

    Specifies whether to display the floating label above the input element. Possible values are: Never: The label will never float in the input when the placeholder is available. Always: The floating label will always float above the input. Auto: The floating label will float above the input after focusing or entering a value in the input.

    Declaration
    public MultiSelectBuilder FloatLabelType(FloatLabelType floatLabelType)
    Parameters
    Type Name Description
    FloatLabelType floatLabelType
    Returns
    Type Description
    MultiSelectBuilder

    Focus(String)

    Event triggers when the input get focused.

    Declaration
    public MultiSelectBuilder Focus(string focus)
    Parameters
    Type Name Description
    System.String focus
    Returns
    Type Description
    MultiSelectBuilder

    FooterTemplate(String)

    Accepts the template design and assigns it to the footer container of the popup list.

    For more details about the available template options refer to Template documentation.

    Declaration
    public MultiSelectBuilder FooterTemplate(string footerTemplate)
    Parameters
    Type Name Description
    System.String footerTemplate
    Returns
    Type Description
    MultiSelectBuilder

    GroupTemplate(String)

    Accepts the template design and assigns it to the group headers present in the MultiSelect popup list.

    Declaration
    public MultiSelectBuilder GroupTemplate(string groupTemplate)
    Parameters
    Type Name Description
    System.String groupTemplate
    Returns
    Type Description
    MultiSelectBuilder

    HeaderTemplate(String)

    Accepts the template design and assigns it to the header container of the popup list.

    For more details about the available template options refer to Template documentation.

    Declaration
    public MultiSelectBuilder HeaderTemplate(string headerTemplate)
    Parameters
    Type Name Description
    System.String headerTemplate
    Returns
    Type Description
    MultiSelectBuilder

    HideSelectedItem(Boolean)

    Hides the selected item from the list item.

    Declaration
    public MultiSelectBuilder HideSelectedItem(bool hideSelectedItem = true)
    Parameters
    Type Name Description
    System.Boolean hideSelectedItem
    Returns
    Type Description
    MultiSelectBuilder

    HtmlAttributes(Object)

    Gets or sets the additional attribute to HtmlAttributes property in MultiSelect, which helps to add attribute like title, name etc, input should be key value pair.

    Declaration
    public MultiSelectBuilder HtmlAttributes(object htmlAttributes)
    Parameters
    Type Name Description
    System.Object htmlAttributes
    Returns
    Type Description
    MultiSelectBuilder

    IgnoreAccent(Boolean)

    ignoreAccent set to true, then ignores the diacritic characters or accents when filtering.

    Declaration
    public MultiSelectBuilder IgnoreAccent(bool ignoreAccent = true)
    Parameters
    Type Name Description
    System.Boolean ignoreAccent
    Returns
    Type Description
    MultiSelectBuilder

    IgnoreCase(Boolean)

    Sets case sensitive option for filter operation.

    Declaration
    public MultiSelectBuilder IgnoreCase(bool ignoreCase = true)
    Parameters
    Type Name Description
    System.Boolean ignoreCase
    Returns
    Type Description
    MultiSelectBuilder

    ItemTemplate(String)

    Accepts the template design and assigns it to each list item present in the popup.

    For more details about the available template options refer to Template documentation.

    Declaration
    public MultiSelectBuilder ItemTemplate(string itemTemplate)
    Parameters
    Type Name Description
    System.String itemTemplate
    Returns
    Type Description
    MultiSelectBuilder

    Locale(String)

    Overrides the global culture and localization value for this component. Default global culture is 'en-US'.

    Declaration
    public MultiSelectBuilder Locale(string locale)
    Parameters
    Type Name Description
    System.String locale
    Returns
    Type Description
    MultiSelectBuilder

    MaximumSelectionLength(Double)

    Sets limitation to the value selection. based on the limitation, list selection will be prevented.

    Declaration
    public MultiSelectBuilder MaximumSelectionLength(double maximumSelectionLength)
    Parameters
    Type Name Description
    System.Double maximumSelectionLength
    Returns
    Type Description
    MultiSelectBuilder

    Mode(VisualMode)

    configures visibility mode for component interaction.

    Declaration
    public MultiSelectBuilder Mode(VisualMode mode)
    Parameters
    Type Name Description
    VisualMode mode
    Returns
    Type Description
    MultiSelectBuilder

    NoRecordsTemplate(String)

    Accepts the template design and assigns it to popup list of MultiSelect component when no data is available on the component.

    Declaration
    public MultiSelectBuilder NoRecordsTemplate(string noRecordsTemplate)
    Parameters
    Type Name Description
    System.String noRecordsTemplate
    Returns
    Type Description
    MultiSelectBuilder

    Open(String)

    Fires when popup opens after animation completion.

    Declaration
    public MultiSelectBuilder Open(string open)
    Parameters
    Type Name Description
    System.String open
    Returns
    Type Description
    MultiSelectBuilder

    OpenOnClick(Boolean)

    Whether to automatically open the popup when the control is clicked.

    Declaration
    public MultiSelectBuilder OpenOnClick(bool openOnClick = true)
    Parameters
    Type Name Description
    System.Boolean openOnClick
    Returns
    Type Description
    MultiSelectBuilder

    Placeholder(String)

    Gets or sets the placeholder in the component to display the given information in input when no item selected.

    Declaration
    public MultiSelectBuilder Placeholder(string placeholder)
    Parameters
    Type Name Description
    System.String placeholder
    Returns
    Type Description
    MultiSelectBuilder

    PopupHeight(String)

    Gets or sets the height of the popup list. By default it renders based on its list item.

    For more details about the popup configuration refer to Popup Configuration documentation.

    Declaration
    public MultiSelectBuilder PopupHeight(string popupHeight)
    Parameters
    Type Name Description
    System.String popupHeight
    Returns
    Type Description
    MultiSelectBuilder

    PopupWidth(String)

    Gets or sets the width of the popup list and percentage values has calculated based on input width.

    For more details about the popup configuration refer to Popup Configuration documentation.

    Declaration
    public MultiSelectBuilder PopupWidth(string popupWidth)
    Parameters
    Type Name Description
    System.String popupWidth
    Returns
    Type Description
    MultiSelectBuilder

    Query(String)

    Accepts the external Query which will execute along with the data processing in MultiSelect.

    Declaration
    public MultiSelectBuilder Query(string query)
    Parameters
    Type Name Description
    System.String query
    Returns
    Type Description
    MultiSelectBuilder

    Readonly(Boolean)

    Declaration
    public MultiSelectBuilder Readonly(bool readOnly = true)
    Parameters
    Type Name Description
    System.Boolean readOnly
    Returns
    Type Description
    MultiSelectBuilder

    Removed(String)

    Fires after the selected item removed from the widget.

    Declaration
    public MultiSelectBuilder Removed(string removed)
    Parameters
    Type Name Description
    System.String removed
    Returns
    Type Description
    MultiSelectBuilder

    Removing(String)

    Fires before the selected item removed from the widget.

    Declaration
    public MultiSelectBuilder Removing(string removing)
    Parameters
    Type Name Description
    System.String removing
    Returns
    Type Description
    MultiSelectBuilder

    Render()

    Declaration
    public HtmlString Render()
    Returns
    Type Description
    System.Web.HtmlString

    Select(String)

    Triggers when an item in the popup is selected by the user either with mouse/tap or with keyboard navigation.

    Declaration
    public MultiSelectBuilder Select(string select)
    Parameters
    Type Name Description
    System.String select
    Returns
    Type Description
    MultiSelectBuilder

    SelectAllText(String)

    Specifies the selectAllText to be displayed on the component.

    Declaration
    public MultiSelectBuilder SelectAllText(string selectAllText)
    Parameters
    Type Name Description
    System.String selectAllText
    Returns
    Type Description
    MultiSelectBuilder

    SelectedAll(String)

    Fires after select all process completion.

    Declaration
    public MultiSelectBuilder SelectedAll(string selectedAll)
    Parameters
    Type Name Description
    System.String selectedAll
    Returns
    Type Description
    MultiSelectBuilder

    ShowClearButton(Boolean)

    Enables close icon with the each selected item.

    Declaration
    public MultiSelectBuilder ShowClearButton(bool showClearButton = true)
    Parameters
    Type Name Description
    System.Boolean showClearButton
    Returns
    Type Description
    MultiSelectBuilder

    ShowDropDownIcon(Boolean)

    Allows you to either show or hide the DropDown button on the component

    Declaration
    public MultiSelectBuilder ShowDropDownIcon(bool showDropDownIcon = true)
    Parameters
    Type Name Description
    System.Boolean showDropDownIcon
    Returns
    Type Description
    MultiSelectBuilder

    ShowSelectAll(Boolean)

    Allows you to either show or hide the selectAll option on the component.

    Declaration
    public MultiSelectBuilder ShowSelectAll(bool showSelectAll = true)
    Parameters
    Type Name Description
    System.Boolean showSelectAll
    Returns
    Type Description
    MultiSelectBuilder

    SortOrder(Object)

    Specifies the sortOrder to sort the data source. The available type of sort orders are None - The data source is not sorting. Ascending - The data source is sorting with ascending order. Descending - The data source is sorting with descending order.

    Declaration
    public MultiSelectBuilder SortOrder(object sortOrder)
    Parameters
    Type Name Description
    System.Object sortOrder
    Returns
    Type Description
    MultiSelectBuilder

    Tagging(String)

    Fires before set the selected item as chip in the component.

    For more details about chip customization refer Chip Customization

    Declaration
    public MultiSelectBuilder Tagging(string tagging)
    Parameters
    Type Name Description
    System.String tagging
    Returns
    Type Description
    MultiSelectBuilder

    Text(String)

    Selects the list item which maps the data text field in the component.

    Declaration
    public MultiSelectBuilder Text(string text)
    Parameters
    Type Name Description
    System.String text
    Returns
    Type Description
    MultiSelectBuilder

    UnSelectAllText(String)

    Specifies the UnSelectAllText to be displayed on the component.

    Declaration
    public MultiSelectBuilder UnSelectAllText(string unSelectAllText)
    Parameters
    Type Name Description
    System.String unSelectAllText
    Returns
    Type Description
    MultiSelectBuilder

    Value(Double[])

    Selects the list item which maps the data value field in the component. {% codeBlock src='multiselect/value/index.md' %}{% endcodeBlock %}

    Declaration
    public MultiSelectBuilder Value(double[] value)
    Parameters
    Type Name Description
    System.Double[] value
    Returns
    Type Description
    MultiSelectBuilder

    Value(Object)

    Selects the list item which maps the data value field in the component. {% codeBlock src='multiselect/value/index.md' %}{% endcodeBlock %}

    Declaration
    public MultiSelectBuilder Value(object value)
    Parameters
    Type Name Description
    System.Object value
    Returns
    Type Description
    MultiSelectBuilder

    Value(String[])

    Selects the list item which maps the data value field in the component. {% codeBlock src='multiselect/value/index.md' %}{% endcodeBlock %}

    Declaration
    public MultiSelectBuilder Value(string[] value)
    Parameters
    Type Name Description
    System.String[] value
    Returns
    Type Description
    MultiSelectBuilder

    ValueTemplate(String)

    Accepts the template design and assigns it to the selected list item in the input element of the component. For more details about the available template options refer to Template documentation.

    Declaration
    public MultiSelectBuilder ValueTemplate(string valueTemplate)
    Parameters
    Type Name Description
    System.String valueTemplate
    Returns
    Type Description
    MultiSelectBuilder

    Width(String)

    Gets or sets the width of the component. By default, it sizes based on its parent. container dimension.

    Declaration
    public MultiSelectBuilder Width(string width)
    Parameters
    Type Name Description
    System.String width
    Returns
    Type Description
    MultiSelectBuilder

    ZIndex(Double)

    specifies the z-index value of the component popup element.

    Declaration
    public MultiSelectBuilder ZIndex(double zIndex)
    Parameters
    Type Name Description
    System.Double zIndex
    Returns
    Type Description
    MultiSelectBuilder
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved