IWizardTemplateGetCascadedText Method |
Get the specified localized text for this wizard page. Obtaining the text is
a cascading five step process:
- Look for the text in UserData (use SetWizPageText(IWizPage, String, String) to set),
- if not found, look for the text item specified by ids in the PageElementInfoTextItems collection,
- if not found, look for the text item specified by ids in the PageInfoTextItems 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 GetCascadedText(
IWizPage wizPage,
string ids,
string defaultText
)
Function GetCascadedText (
wizPage As IWizPage,
ids As String,
defaultText As String
) As String
Parameters
- wizPage
- Type: NetQuarryIWizPage
The wizard page, typically the current wizard page (which may be a subpage on a grouper) - ids
- Type: SystemString
The IDS of the item in the locale resource file. This generally serves as the unique string ID for all levels of overriding. - defaultText
- Type: SystemString
The default text to use if corresponding string not found.
Return Value
Type:
StringThe localized text.
See Also