Example #1
0
        /////////////////////////////////////////////////////////////////////////////
        public Tag Initialize( Tag tag )
        {
            // ******
            if( null == tag ) {
                throw new ArgumentNullException( nameof( tag ) );
            }

            // ******
            if( !string.IsNullOrWhiteSpace( LayoutWidth ) ) {
                tag.Width( LayoutWidth.Trim() );
            }

            // ******
            tag.AppendChildren( Sidebar, Content );
            return tag;
        }