Example #1
0
        public void DoSetup(Area area)
        {
            BorderAndPadding bap = propMgr.GetBorderAndPadding();
            BackgroundProps bProps = propMgr.GetBackgroundProps();

            this.iColumnNumber =
                this.properties.GetProperty("column-number").GetNumber().IntValue();

            this.numColumnsRepeated =
                this.properties.GetProperty("number-columns-repeated").GetNumber().IntValue();

            this.columnWidthPropVal =
                this.properties.GetProperty("column-width").GetLength();

            this.columnWidth = columnWidthPropVal.MValue();

            string id = this.properties.GetProperty("id").GetString();
            area.getIDReferences().InitializeID(id, area);

            setup = true;
        }
Example #2
0
 public void AddTerm(double factor, Length length)
 {
     factors.Add(factor);
     lengths.Add(length);
 }
Example #3
0
 public LengthProperty(Length length)
 {
     this.length = length;
 }
Example #4
0
 public void AddTerm(double factor, Length length)
 {
     factors.Add(factor);
     lengths.Add(length);
 }