TabPanelModel.Item[TabContentKind] Property
Returns the specified tab panel.
Namespace: DevExpress.Blazor.Reporting.Models
Assembly: DevExpress.Blazor.v25.2.Viewer.dll
NuGet Package: DevExpress.Blazor.Viewer
Declaration
Parameters
| Name | Type | Description |
|---|---|---|
| kind | TabContentKind | Specifies the tab content kind. |
Property Value
| Type | Description |
|---|---|
| TabModel | The specified tab panel. |
Remarks
The following code hides the Export Options panel in the Report Viewer:
@using DevExpress.Blazor.Reporting
@using DevExpress.Blazor.Reporting.Models
@using DevExpress.XtraReports.UI
<DxReportViewer @ref="reportViewer" Report="Report" />
@code {
DxReportViewer reportViewer;
XtraReport Report = new TestReport();
protected override void OnAfterRender(bool firstRender)
{
if (firstRender)
reportViewer.TabPanelModel[TabContentKind.ExportOptions].Visible = false;
}
}
See Also