Back to Devexpress

Breadcrumbs.HomeText Property

corelibraries-devexpress-dot-xtracharts-dot-breadcrumbs-9aa72afa.md

latest2.6 KB
Original Source

Breadcrumbs.HomeText Property

Gets or sets the text that the Breadcrumb Home Item displays instead of an icon.

Namespace : DevExpress.XtraCharts

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

csharp
[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
public string HomeText { get; set; }
vb
<XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)>
Public Property HomeText As String

Property Value

TypeDescription
String

The text that the Breadcrumb Home Item displays instead of an icon.

|

Remarks

The Breadcrumb Home Item displays the default icon if this property is set to null ( Nothing in Visual Basic) or to empty string.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the HomeText property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

asp-net-web-forms-web-chart-control-create-drill-down-chart/CS/DrillDownChart/WebForm1.aspx.cs#L23

csharp
breadcrumbs.DXFont = new DXFont("Tahoma", 12.0F, DXFontStyle.Bold);
    breadcrumbs.HomeText = "Home";
}

asp-net-web-forms-web-chart-control-create-drill-down-chart/VB/DrillDownChart/WebForm1.aspx.vb#L24

vb
breadcrumbs.DXFont = New DXFont("Tahoma", 12.0F, DXFontStyle.Bold)
    breadcrumbs.HomeText = "Home"
End Sub

See Also

Breadcrumbs Class

Breadcrumbs Members

DevExpress.XtraCharts Namespace