private ItemConf setValorItemConf(XmlAttributeCollection atributos) { ItemConf itemConf = new ItemConf(); itemConf.setValuesByAttribute(atributos); return(itemConf); }
private ItemConf generaItemPattern(XmlNode node) { ItemConf itemConf = this.generaItemConf(node.Attributes); itemConf.valuesDefault = this.setValuesDefault(node); return(itemConf); }
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); }
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; }
private ItemConf setValorItemConf(XmlAttributeCollection atributos) { ItemConf itemConf = new ItemConf(); itemConf.setValuesByAttribute(atributos); return itemConf; }