aspnet-devexpress-dot-web-53f98fb4.md
Lists the values that specify how to represent items as links.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public enum ItemLinkMode
Public Enum ItemLinkMode
| Name | Description |
|---|---|
TextOnly |
Specifies that an item is represented only by its text, and the item’s clickable content is bounded by the text length.
|
| TextAndImage |
Specifies that an item is represented by both the text and image (if any), and the item’s clickable content is bounded by the total size of the text and image.
|
| ContentBounds |
Specifies that an item is represented by both the text and image (if any), and the item’s clickable content extends to the width of the parent control’s boundaries.
|
The following properties accept/return ItemLinkMode values:
| Library | Related API Members |
|---|---|
| ASP.NET Web Forms Controls | ASPxMenuBase.ItemLinkMode |
| ASPxNavBar.ItemLinkMode | |
| ASPxTreeView.NodeLinkMode | |
| ASP.NET MVC Extensions | MenuSettingsBase.ItemLinkMode |
| NavBarSettings.ItemLinkMode | |
| TreeViewSettings.NodeLinkMode |
The ItemLinkMode enumerator contains values specifying how items are represented as links within a web control. The values of this enumerator are used to set a web control’s ItemLinkMode property (for instance, the ASPxNavBar.ItemLinkMode property of a navbar or the NavBarGroup.ItemLinkMode property of a navbar group.
See Also