Axiom.Overlays.OverlayElementContainer.PositionsOutOfDate C# (CSharp) Méthode

PositionsOutOfDate() public méthode

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

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