ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / LocalizationResource Class / AddResourceValue Method
A System.String value indicating the resource key, based on the template: [control name].[property name].
A System.String value indicating the resource value.
Example

In This Topic
    AddResourceValue Method
    In This Topic
    Adds a resource value for the given key.
    Syntax
    'Declaration
     
    Public Sub AddResourceValue( _
       ByVal key As String, _
       ByVal value As String _
    ) 
    public void AddResourceValue( 
       string key,
       string value
    )

    Parameters

    key
    A System.String value indicating the resource key, based on the template: [control name].[property name].
    value
    A System.String value indicating the resource value.
    Example
    localizationResource.AddResourceValue("TextBox1.Value", "Text Value");
    See Also