Search Results for

    Show / Hide Table of Contents

    Class DesignerOptions

    Inheritance
    System.Object
    DesignerOptions
    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. This allows the user to customize or configure the report before it is rendered or processed further.

    Declaration
    public Action<WebReport> OnWebReportCreated { get; set; }
    Property Value
    Type Description
    System.Action<WebReport>
    Back to top © 1998-2025 Copyright Fast Reports Inc.