Esempio n. 1
0
        //rowspan

        public CRow(string Id)
        {
            this.Id = Id;

            this.Align  = CHtmlParser.GetDefaultHAlign();
            this.VAlign = CHtmlParser.GetDefaultVAlign();

            this.mColumns = new Columns();
        }
Esempio n. 2
0
        public Column(string Id)
        {
            this.Id = Id;

            this.Align  = CHtmlParser.GetDefaultHAlign();
            this.VAlign = CHtmlParser.GetDefaultVAlign();
            this.Width  = 0;

            this.mValues = new Values();
        }
Esempio n. 3
0
 private HAlign OverwriteHAlign(HAlign AOld, HAlign ANew)
 {
     if (ANew == CHtmlParser.GetDefaultHAlign())
     {
         return(AOld);
     }
     else
     {
         return(ANew);
     }
 }
Esempio n. 4
0
        public Column(string Id, int Width)
        {
            this.Id = Id;

            this.Align           = CHtmlParser.GetDefaultHAlign();
            this.VAlign          = CHtmlParser.GetDefaultVAlign();
            this.Width           = Width;
            this.ColSpan         = 1;
            this.WidthBeforeSpan = 0;

            this.mValues = new Values();
        }