Click or drag to resize

WizPageData Methods

The WizPageData type exposes the following members.

Methods
  NameDescription
Public methodAddRowKey(String)
Adds a row key, if not already present, to the list of selected row keys for the current instance.
Public methodAddRowKey(String, String)
Adds a row key, if not already present, to the list of selected row keys for the specified instance.
Public methodClearRowKeys
Clear the selected row keys for the current instance.
Public methodClearRowKeys(String)
Clear the selected row keys for the specified instance.
Public methodContainsKey(String)
Determines if a particular item exists in the wizard's page data. In this overload the current instance is assumed.
Public methodContainsKey(String, String)
Determines if a particular item exists in the wizard's page data. In this overload the instance name is explicitly specified allowing searching for data for pages other than the current page.
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetBool
Get the boolean value for the named item in the current instance's page data.
Public methodGetDateTime(String)
Get the DateTime value for the named item in the wizard's page data. The current instance is assumed. Note that this is equivalent to calling EAPConvert.ToDateTime(data.GetString(itemName)).
Public methodGetDateTime(String, DateTime)
Get the DateTime value for the named item in the wizard's page data. The current instance is assumed. Note that this is equivalent to calling EAPConvert.ToDateTime(data.GetString(itemName), defaultValue).
Public methodGetDouble
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).
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetInt(String)
Get the integer value for the named item in the wizard's page data. The current instance is assumed. Note that this is equivalent to calling EAPUtil.ToInt(data.GetString(itemName)).
Public methodGetInt(String, Int32)
Get the integer value for the named item in the wizard's page data. The current instance is assumed. Note that this is equivalent to calling EAPUtil.ToInt(data.GetString(itemName), defaultValue).
Public methodGetRowKeyArray
Gets an array of row keys for the selected items in the current instance.
Public methodGetRowKeyArray(String)
Gets an array of row keys for the selected items in the specified instance.
Public methodGetRowKeys
Gets a semi-colon separated list of row keys for the selected items in the current instance.
Public methodGetRowKeys(String)
Gets a semi-colon separated list of row keys for the selected items in the specified instance.
Public methodGetString(String)
Get the string value for the named item in the wizard's page data. In this overload the current instance is assumed.
Public methodGetString(String, String)
Get the string value for the named item in the wizard's page data. In this overload the instance name is explicitly specified allowing getting data for pages other than the current page.
Public methodGetString(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.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIsSelected(String)
Determines if the specified row key, in the current page instance, was selected.
Public methodIsSelected(String, String)
Determines if the specified row key, in the specified page instance, was selected.
Public methodKey(String)
The Key for indexing into the wizard's page data. This key is composed of the page instance name together with the item name. In this overload the current instance is assumed.
Public methodKey(String, String)
The Key for indexing into the wizard's page data. This key is composed of the page instance name together with the item name. In this overload the instance name is explicitly specified allowing indexing into data for pages other than the current page.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRemoveRowKey(String)
Removes a row key, if present, from the list of selected row keys for the current instance.
Public methodRemoveRowKey(String, String)
Removes a row key, if present, from the list of selected row keys for the specified instance.
Public methodSetRowKeys(String)
Add the provided semi-colon separated list of row keys for the current instance.
Public methodSetRowKeys(String)
Add the provided array of row keys for the current instance.
Public methodSetRowKeys(String, String)
Add the provided semi-colon separated list of row keys for the specified instance.
Public methodSetRowKeys(String, String)
Add the provided array of row keys for the specified instance.
Public methodSetValue(String, String)
Set the named value into the wizard's page data. If the item already exists its value will be replaced with the specified value. In this overload the current instance is assumed.
Public methodSetValue(String, String, String)
Set the named value into the wizard's page data. If the item already exists its value will be replaced with the specified value. In this overload the instance name is explicitly specified allowing setting data for pages other than the current page.
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)
Top
Extension Methods
  NameDescription
Public Extension MethodEqualValue
Determines if the object value is equal to another object. If the two objects are null, then this returns true. There is special handling for guid comparisons (since a guid could be a string formatted in up to 3 different ways). If the special guid handling is not performed, then the object.Equals method is used.
(Defined by EAPUtil.)
Top
See Also