Click or drag to resize

WizPageExtensionsSetWizPageText Method

Sets localized text for the specified wizard page for this wizard instance only. Note that setting text on a PageInfo or PageElementInfo object is generally GLOBAL in nature and affects other application sessions, including seesions for other users, due to how pages are cached.

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

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.
s
Type: SystemString
The text.

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