Returns a property or field value using a base object and sub members including . syntax. For example, you can access: this.oCustomer.oData.Company with (this,"oCustomer.oData.Company") This method also supports indexers in the Property value such as: Customer.DataSet.Tables["Customers"].Rows[0]

Syntax:

public static object GetPropertyEx( object Parent,
	string Property );
Parameters: Parent
Parent object to 'start' parsing from. Typically this will be the Page.

Property
The property to retrieve. Example: 'Customer.Entity.Company'

See also:

Class wwUtils


Last Updated: 1/28/2007 | Send topic feedback