Axiom.Overlays.OverlayElementContainer.PositionsOutOfDate C# (CSharp) Method

PositionsOutOfDate() public method

Tell the object and its children to recalculate their positions.
public PositionsOutOfDate ( ) : void
return void
		public override void PositionsOutOfDate()
		{
			// call baseclass method
			base.PositionsOutOfDate();

			foreach ( OverlayElement child in children.Values )
			{
				child.PositionsOutOfDate();
			}
		}