Sets the value of a field or property via Reflection. This method alws for using '.' syntax to specify objects multiple levels down.
wwUtils.SetPropertyEx(this,"Invoice.LineItemsCount",10)
which would be equivalent of:
this.Invoice.LineItemsCount = 10;
public static object SetPropertyExCom( object Parent, string Property, object Value );
Return Value
object
Parameters
Parent
Property
Value
See also:
Class wwUtils© West Wind Techologies, 1996-2023 • Updated: 07/31/07
Comment or report problem with topic