Axiom.Overlays.OverlayElementContainer.PositionsOutOfDate C# (CSharp) 메소드

PositionsOutOfDate() 공개 메소드

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

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