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

In This Topic
    Language Property (Report)
    In This Topic
    Gets or sets the primary language of the text localization.
    Syntax
    'Declaration
     
    Public Property Language As ExpressionInfo
    public ExpressionInfo Language {get; set;}

    Property Value

    An GrapeCity.Enterprise.Data.Expressions.ExpressionInfo object that evaluates to a language value which complies with the Internet Engineering Task Force (IETF) RFC1766 specification.
    Remarks
    The default value is the server language.
    Example
    Report report = new Report();
    report.Language = ExpressionInfo.FromString("en-US");
    See Also