IWizardTemplateGetWizardText Method (String, String, String) |
Get the specified localized text for this wizard page (however, typically
GetCascadedText(IWizPage, String, String) is
preferred).
Obtaining the text is a three step process:
- Look for the text item specified by name in the PageInfo's TextItems collection,
- if not found, look for the item specified by ids in the locale resource file,
- if not found, use the provided defaultText.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax string GetWizardText(
string name,
string ids,
string defaultText
)
Function GetWizardText (
name As String,
ids As String,
defaultText As String
) As String
Parameters
- name
- Type: SystemString
The name of the item in the PageInfo's TextItems collection. - ids
- Type: SystemString
The IDS of the item in the locale resource file. - defaultText
- Type: SystemString
The default text to use if corresponding string not found.
Return Value
Type:
StringThe localized text.
See Also