ASPxComboBox.ShowImageInEditBox Property
Gets or sets whether the image should be displayed within an editor's edit box.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v20.2.dll
Declaration
[DefaultValue(false)]
public bool ShowImageInEditBox { get; set; }
<DefaultValue(False)>
Public Property ShowImageInEditBox As Boolean
Property Value
Type | Default | Description |
---|---|---|
Boolean | false |
true if the image is allowed to be displayed within an edit box; otherwise, false. |
Remarks
This property is a wrapper of the ComboBoxProperties.ShowImageInEditBox property.
Examples
This part of the Image in Edit Box demo illustrates how to use the ASPxComboBox.ShowImageInEditBox property within the ASPxComboBox.
...
<dxe:ASPxComboBox id="ASPxComboBox1" runat="server" DataSourceID="XmlDataSource1"
ImageUrlField="ImageUrl" TextField="ItemText" ValueField="Name" ValueType="System.String"
ShowImageInTextBox="True" SelectedIndex="0">
</dxe:ASPxComboBox>
...
See Also
Feedback