ReportDesigner.ShowScriptsTab Property
Specifies whether to display the Report Designer‘s Scripts tab. This is a dependency property.
Namespace: DevExpress.Xpf.Reports.UserDesigner
Assembly: DevExpress.Xpf.ReportDesigner.v24.1.dll
NuGet Package: DevExpress.Wpf.Reporting
Declaration
Property Value
Type | Description |
---|---|
Boolean | true, if the Scripts tab is displayed; otherwise, false. |
Remarks
If the ShowScriptsTab property is set to true (the default value), the Report Designer displays the Scripts tab.
Set the ShowScriptsTab property to false to change the tab’s visibility.
using DevExpress.Xpf.Reports.UserDesigner;
//...
public partial class MainWindow : Window {
public MainWindow() {
reportDesigner.ShowScriptsTab = false;
//...
}
//...
You can also specify this property in XAML.
<Window
xmlns:dxrud="http://schemas.devexpress.com/winfx/2008/xaml/reports/userdesigner">
...
<dxrud:ReportDesigner ShowScriptsTab="False"/>
</Window>
See Also