[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Design.Designer.EnableScripting

EnableScripting Property

EnableScripting

Gets or sets a value indicating whether the 'Script' tab is visible on the design surface tool panel.

Declaration
public bool EnableScripting { get; set; }
Property Value
Type Description
bool

true if the 'Script' tab is enabled and visible; otherwise, false. The default is true.

Remarks

This property controls the visibility of the 'Script' tab, allowing users to interact with the scripting features of the report designer. When set to false, the 'Script' tab is hidden, restricting access to script editing functionalities.

Examples
// Enable the scripting tab in the designer
designer.EnableScripting = true;
// Disable the scripting tab in the designer
designer.EnableScripting = false;