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

AddChildContainer() public method

Add a nested container to this container.
public AddChildContainer ( OverlayElementContainer container ) : void
container OverlayElementContainer
return void
		public virtual void AddChildContainer( OverlayElementContainer container )
		{
			// add this container to the main child list first
			OverlayElement element = container;
			AddChildElement( element );

			// now add the container to the container collection
			childContainers.Add( container.Name, container );
		}