Click or drag to resize

WizPageDataGetDouble Method

Get the double value for the named item in the wizard's page data. The current instance is assumed. Note that this is equivalent to calling EAPUtil.ToDouble(data.GetString(itemName), defaultValue).

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public double GetDouble(
	string itemName,
	double defaultValue = 0
)

Parameters

itemName
Type: SystemString
The name of the data item to get (for the current instance).
defaultValue (Optional)
Type: SystemDouble
The value to return if the specified item is not found.

Return Value

Type: Double
The value of the requested item if found, else defaultValue.
See Also