Beispiel #1
0
        public Div(AElement child, string id, string cssClass) : base()
        {
            Type = typeof(Div);

            Child = child;

            CssId = id;

            CssClass = cssClass;
        }
Beispiel #2
0
        public Div(AElement child) : base()
        {
            Type = typeof(Div);

            Child = child;
        }