ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.QueryDesigner Assembly / GrapeCity.ActiveReports.QueryDesigner.Implementation Namespace / QueryDesignerDialog Class / Query Property
Example

In This Topic
    Query Property (QueryDesignerDialog)
    In This Topic
    Gets or sets the SQL query text.
    Syntax
    'Declaration
     
    Public Property Query As String
    public string Query {get; set;}

    Property Value

    A System.String representing the SQL query text.
    Example
    dialog.Query = "SELECT * FROM Employees";
    var sqlQuery = dialog.Query;
    See Also