PropogateAction() public method

Propogates an action request down the hierarchy of docking elements.
public PropogateAction ( DockingPropogateAction action, string uniqueNames ) : void
action DockingPropogateAction Action that is requested to be performed.
uniqueNames string Array of unique names of the pages the action relates to.
return void
 private void OnDockspaceSeparatorNotMoved(object sender, EventArgs e)
 {
     if (_update)
     {
         // Inform our owning control that the update has ended, allowing the client area to be drawn
         KryptonDockingControl c = GetParentType(typeof(KryptonDockingControl)) as KryptonDockingControl;
         c.PropogateAction(DockingPropogateAction.EndUpdate, (string[])null);
         _update = false;
     }
 }