combit List & Label 30 - .NET Help
combit.Reporting Namespace / ListLabel Class / Dictionary Property


Dictionary Property (ListLabel)

You can use this dictionary to localize your table names, field names, variable names, sort orders and relation names - see also Localization of Project Files in Designer.

Syntax
'Declaration
 
Public ReadOnly Property Dictionary As IQueryableLocalizationDictionary
 
Example
...
// Clear the dictionary
LL.Dictionary.Clear();

// Localize fields for other languages than English
switch(selectedLanguage)
{
   case 1:
   {
      // German
      LL.Dictionary.Fields.Add("Localization.Footerline", "Lokalisierung.Fusszeile");
      LL.Dictionary.Fields.Add("Localization.ChartSales", "Lokalisierung.ChartUmsatz");
      LL.Dictionary.Fields.Add("Localization.ChartLot","Lokalisierung.ChartSt??ckzahl");

      break;
   }

   case 2:
   {
      // French
      LL.Dictionary.Fields.Add("Localization.Footerline", "Localisation.BasDePage");
      LL.Dictionary.Fields.Add("Localization.ChartSales", "Localisation.ChartVolume d'affaires");
      LL.Dictionary.Fields.Add("Localization.ChartLot", "Localisation.ChartNombre");

      break;
   }

   default:
      break;
}
...
Requirements

Platforms: Windows 10 (Version 21H2 - 23H2), Windows 11 (21H2 - 22H2), Windows Server 2016 - 2022
.NET: .NET Framework 4.8, .NET 6, .NET 8, .NET 9

See Also