WizPageDataGetString Method (String, String, String) |
Get the string value for the named item in the wizard's page data if found, else the provided default.
In this overload the instance name is explicitly specified allowing getting data for pages
other than the current page.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public string GetString(
string instanceName,
string itemName,
string defaultValue
)
Public Function GetString (
instanceName As String,
itemName As String,
defaultValue As String
) As String
Parameters
- instanceName
- Type: SystemString
The name of the instance for which to get the value. - itemName
- Type: SystemString
The name of the data item to get (for the specified instance). - defaultValue
- Type: SystemString
The default text to use if the item is not found.
Return Value
Type:
StringThe value of the requested item if found, else the defaultValue.
See Also