Class DesignerOptions
Inheritance
Namespace: FastReport.Web
Assembly: FastReport.OpenSource.Web.dll
Syntax
public class DesignerOptions
  Properties
AllowCustomSqlQueries
Gets or sets a value indicating whether custom SQL queries can be executed. When set to true, users will be able to specify custom table names and SQL expressions during the database structure loading process.
WARNING: Enabling this option may pose security risks.
Declaration
public bool AllowCustomSqlQueries { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
EnableIntelliSense
Gets or sets a value indicating whether Intellisense is enabled. When set to true, Intellisense feature will be enabled in the application.
Declaration
public bool EnableIntelliSense { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
Remarks
WARNING: Enabling Intellisense requires returning class information from the assembly.
IntelliSenseAssemblies
Gets or sets the list of assemblies needed for IntelliSense highlighting.
Declaration
public List<string> IntelliSenseAssemblies { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.List<System.String> | 
Remarks
The assemblies listed here will be used to provide class information for IntelliSense highlighting.
OnWebReportCreated
Callback that is invoked after a new WebReport is created from the Online Designer. Allows customizing or configuring the report before it is rendered or processed further.
Declaration
public Action<WebReport, IServiceProvider> OnWebReportCreated { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Action<WebReport, System.IServiceProvider> | 
OnWebReportCreatedAsync
Asynchronous callback that is invoked after a new WebReport is created from the Online Designer. Allows customizing or configuring the report before it is rendered or processed further.
Declaration
public Func<WebReport, IServiceProvider, CancellationToken, Task> OnWebReportCreatedAsync { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Func<WebReport, System.IServiceProvider, System.Threading.CancellationToken, System.Threading.Tasks.Task> |