ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Blazor.Viewer Assembly / GrapeCity.ActiveReports.Blazor.Viewer Namespace / InitializationOptions Class / LocaleData Property
Example

In This Topic
    LocaleData Property (InitializationOptions)
    In This Topic
    Gets or sets the JSON string containing localization strings for the Viewer.
    Syntax
    'Declaration
     
    Public Property LocaleData As String
    public string LocaleData {get; set;}

    Property Value

    A JSON string representing the localization data.
    Example
    //See file from assets "ar-blazor-viewer-locale.json" for more information.
    @"{
         ""export"": {
             ""boolTextFalse"": ""Yes"",
             ""boolTextTrue"": ""No""
         },
         ""viewer"": {
             ""toolbar"": {
                 ""refresh"": ""Update""
             }
         }
    }";
    See Also