Click or drag to resize

WizPageExtensionsGetCascadedText Method

Gets the text for the specified text item. This is obtained by calling GetCascadedText(IWizPage, String, String) and follows the multi-level override scheme defined there. Note that text set via SetWizPageText(IWizPage, String, String) is highest precedence.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public static string GetCascadedText(
	this IWizPage wizPage,
	string ids,
	string defaultText
)

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

Return Value

Type: String
The text value, else null/blank if not found.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IWizPage. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also