Delimiter Support in WPF ComboBoxAdv
8 Aug 20261 minute to read
A delimiter string in a ComboBoxAdv is the string displayed between the selected items in the ComboBoxAdv. You can customize this string by using the SelectedValueDelimiter property. The default value is "-" (hyphen).
| Property | Description | Type | Data Type | Reference links |
|---|---|---|---|---|
| SelectedValueDelimiter | The selected items can be separated by the given string. | Dependency Property | String | NA |
Adding delimiter string customization to an application
Delimiter string customization can be added directly to an application using the following code snippet.
<syncfusion:ComboBoxAdv SelectedValueDelimiter="#"></syncfusion:ComboBoxAdv>ComboBoxAdv comboBox = new ComboBoxAdv();
comboBox.SelectedValueDelimiter = "#";