Click or drag to resize

WizPageExtensionsGetWizPageText Method

Gets the text for the specified text item, if exists, set via SetWizPageText(IWizPage, String, String).

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

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.

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