ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / DataSource Class / DataSourceReference Property
Example

In This Topic
    DataSourceReference Property (DataSource)
    In This Topic
    Gets or sets a full or relative path to the reference of the data source.
    Syntax
    'Declaration
     
    Public Property DataSourceReference As String
    public string DataSourceReference {get; set;}

    Property Value

    A System.String value indicating the full or relative path to the data source reference.
    Remarks
    Relative paths are based on the location of the report.
    Example
    var dataSource = new DataSource();
    dataSource.DataSourceReference = "path/to/your/datasource";
    See Also