[]
Gets or sets a value indicating whether the 'Script' tab is visible on the design surface tool panel.
public bool EnableScripting { get; set; }
Type | Description |
---|---|
bool |
|
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.
// Enable the scripting tab in the designer
designer.EnableScripting = true;
// Disable the scripting tab in the designer
designer.EnableScripting = false;