MapperExtensionBaseGetText Method |
Get the specified localized text for this mapper. Obtaining the text is
a four step process:
1) Look for the text item in the mapper's TextItems collection,
2) if not found, look for the item in the extension's TextItems collection,
3) if not found, look for the item in the locale resource file,
4) if not found, use the provided defaultText.
Namespace:
NetQuarry.Data
Assembly:
EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax protected string GetText(
string ids,
string defaultText
)
Protected Function GetText (
ids As String,
defaultText As String
) As String
Parameters
- ids
- Type: SystemString
The IDS of the item in the locale resource file also used as key into TextItems collections. - defaultText
- Type: SystemString
The default text to use if corresponding string not found.
Return Value
Type:
StringThe localized text.
See Also