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

GetChild() public method

Gets the named child of this container.
public GetChild ( string name ) : OverlayElement
name string
return OverlayElement
		public virtual OverlayElement GetChild( string name )
		{
			Debug.Assert( children.ContainsKey( name ), string.Format( "Child with name '{0}' not found.", name ) );

			return children[ name ];
		}