ItemChanged method

void ItemChanged(
  1. ServiceObject serviceObject
)
Implements the OnChange event handler for the item associated with the attachment. The service object that triggered the OnChange event.

Implementation

/* private */
void ItemChanged(ServiceObject serviceObject) {
  if (this.Owner != null) {
    this.Owner!.PropertyBag.Changed();
  }
}