예제 #1
0
 public FormatWeb(FormatWeb source)
     : base(source)
 {
     _useTabView        = source._useTabView;
     _includeIndex      = source._includeIndex;
     _includeSearch     = source._includeSearch;
     _includeServerSide = source._includeServerSide;
     _theme             = source._theme;
     _framework         = source._framework;
 }
예제 #2
0
        public override BuildFormat Clone()
        {
            FormatWeb format = new FormatWeb(this);

            base.Clone(format);

            if (_theme != null)
            {
                format._theme = String.Copy(_theme);
            }
            if (_framework != null)
            {
                format._framework = String.Copy(_framework);
            }

            return(format);
        }