ListBoxItemStyle Class
In This Article
Contains style settings that define the appearance of items within an editor’s item list.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public class ListBoxItemStyle :
AppearanceItemStyle
#Related API Members
The following members return ListBoxItemStyle objects:
#Remarks
In addition to the settings inherited from a base class, the ListBoxItemStyle class exposes the ListBoxItemStyle.Height property which allows the height of list items displayed within an editor to be specified.
<dx:ASPxListBox ID="ASPxListBox1" runat="server">
<Items>
<dx:ListEditItem Text="Item1" Value="Item1" />
<dx:ListEditItem Text="Item2" Value="Item2" />
<dx:ListEditItem Text="Item3" Value="Item3" />
</Items>
<ItemStyle Height="30" BackColor="Wheat"
Border-BorderWidth="1" Border-BorderColor="Black" Border-BorderStyle="Dotted" />
</dx:ASPxListBox>
Result:
#Inheritance
See Also