UpdatePosition() public method

public UpdatePosition ( ) : void
return void
 public static void UpdateAllPositions()
 {
     for (RelevantGraphSurface surface = root; surface != null; surface = surface.Next)
     {
         surface.UpdatePosition();
     }
 }
        /** Updates the positions of all relevant graph surface components.
         * Required to be able to use the position property reliably.
         */
        public static void UpdateAllPositions()
        {
            RelevantGraphSurface c = root;

            while (c != null)
            {
                c.UpdatePosition(); c = c.Next;
            }
        }
		public static void UpdateAllPositions()
		{
			RelevantGraphSurface relevantGraphSurface = RelevantGraphSurface.root;
			while (relevantGraphSurface != null)
			{
				relevantGraphSurface.UpdatePosition();
				relevantGraphSurface = relevantGraphSurface.Next;
			}
		}