MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / LocalizationResourceCollection Class / Item Property
A System.String value indicating the culture to obtain resource.
Example

Item Property (LocalizationResourceCollection)
Get the LocalizationResource using a specified culture.
Syntax
'Declaration
 
Public ReadOnly Default Property Item( _
   ByVal culture As String _
) As LocalizationResource
 

Parameters

culture
A System.String value indicating the culture to obtain resource.

Property Value

A LocalizationResource object for the specified culture.
Remarks
If LocalizationResource does not exist for the specified culture, then it will be created and added to collection.
Example
LocalizationResource jaResource = _report.LocalizationResources["ja"];
See Also