Class LocalizationResourceAccessor
Represents the class that manages the localization for syncfusion controls.
Inheritance
Inherited Members
Namespace: Syncfusion.Windows.Forms
Assembly: Syncfusion.Shared.Base.dll
Syntax
public class LocalizationResourceAccessor
Constructors
LocalizationResourceAccessor()
Initializes new instance of LocalizationResourceAccessor.
Declaration
public LocalizationResourceAccessor()
Fields
Resources
Holds the resource manager of the LocalizationResourceAccessor
Declaration
public ResourceManager Resources
Field Value
Type |
---|
System.Resources.ResourceManager |
Methods
GetControlAssembly()
Gets the assembly of the project.
Declaration
protected virtual Assembly GetControlAssembly()
Returns
Type | Description |
---|---|
System.Reflection.Assembly | Returns assembly of the project. |
GetControlAssemblyDefaultNamespace()
Gets the default namespace of the referred project.
Declaration
protected virtual string GetControlAssemblyDefaultNamespace()
Returns
Type | Description |
---|---|
System.String | Control assembly default namespace. |
GetString(CultureInfo, String, Object)
Gets the localized text.
Declaration
public string GetString(CultureInfo culture, string name, object control)
Parameters
Type | Name | Description |
---|---|---|
System.Globalization.CultureInfo | culture | Current UI culture. |
System.String | name | String that has to be localized. |
System.Object | control |
Returns
Type | Description |
---|---|
System.String | The localized string |
GetString(String)
Gets the localized text.
Declaration
public string GetString(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | String that has to be localized. |
Returns
Type | Description |
---|---|
System.String | The localized string. |
GetString(String, Object[])
Gets the localized text.
Declaration
public string GetString(string name, params object[] args)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | String that has to be localized. |
System.Object[] | args | Control object |
Returns
Type | Description |
---|---|
System.String | The localized string. |
SetResources(Assembly, String)
Sets the resource manager based on the assembly and namespace. It can be used to get the values from the application resource files when the assembly name and the namespace of the control or application is different.
Declaration
public void SetResources(Assembly lookupassembly, string nameSpace)
Parameters
Type | Name | Description |
---|---|---|
System.Reflection.Assembly | lookupassembly | The control assembly. |
System.String | nameSpace | The namespace of the control. |