AutoUpdate property: PanelController class
Description
Use the AutoUpdate property to set or return a Boolean valuable indicating whether subsequent operations auto-update each panel. Typically, only set AutoUpdate to true when you intend to perform a single operation after invoking Initialize. When AutoUpdate is false, you must explicitly update the panels by invoking UpdatePanel.
This property is read/write.
Example
import PT_PAGE_UTILS:*;
Component PT_PAGE_UTILS:PanelController &c_oPC; /* Initialized in a dIfferent program */
&c_oPC.Refresh();
/* perform one or more operations ... */
If &c_oPC.AutoUpdate = False Then
&c_oPC.UpdatePanel();
End-If;