pMe | (Object) Reference to the PmaString object where the event rises. |
---|---|
pEvent | (Object) Reference to an object describing detailed information about the specific event.
pEvent.Change - (Boolean) [for reading] Takes the following values:
true - If Old <> New
false - If Old = New pEvent.New - (String) [for reading] Value of the Value property after the last write into this property.
pEvent.Old - (String) [for reading] Value of the Value property before the last write into this property. |
if (pEvent.Change)
{
Pm.Debug("NewValue=" + pEvent.New);
}