예제 #1
0
        private ItemConf setValorItemConf(XmlAttributeCollection atributos)
        {
            ItemConf itemConf = new ItemConf();

            itemConf.setValuesByAttribute(atributos);
            return(itemConf);
        }
예제 #2
0
        private ItemConf generaItemPattern(XmlNode node)
        {
            ItemConf itemConf = this.generaItemConf(node.Attributes);

            itemConf.valuesDefault = this.setValuesDefault(node);
            return(itemConf);
        }
예제 #3
0
        public object Clone()
        {
            ItemConf newItemConf = new ItemConf();

            newItemConf._name     = this._name;
            newItemConf._type     = this._type;
            newItemConf._size     = this._size;
            newItemConf._position = this._position;
            newItemConf._align    = this._align;
            newItemConf._fill     = this._fill;
            newItemConf.colValues = this.colValues;
            newItemConf._value    = this._value;
            return(newItemConf);
        }
예제 #4
0
 public object Clone()
 {
     ItemConf newItemConf = new ItemConf();
     newItemConf._name = this._name;
     newItemConf._type = this._type;
     newItemConf._size = this._size;
     newItemConf._position = this._position;
     newItemConf._align = this._align;
     newItemConf._fill = this._fill;
     newItemConf.colValues = this.colValues;
     newItemConf._value = this._value;
     return newItemConf;
 }
예제 #5
0
 private ItemConf setValorItemConf(XmlAttributeCollection atributos)
 {
     ItemConf itemConf = new ItemConf();
     itemConf.setValuesByAttribute(atributos);
     return itemConf;
 }