Ejemplo n.º 1
0
		public override IExportColumn CreateExportColumn()
		{
			var er = new ExportRow(){
				Name = this.Name,
				Size = this.Size,
				Location = this.Location,
				CanGrow = this.CanGrow,
				BackColor = this.BackColor,
				DesiredSize = this.Size
			};
			return er;
		}
Ejemplo n.º 2
0
 public override IExportColumn CreateExportColumn()
 {
     var er = new ExportRow();
     er.ToExportItem(this);
     //			var er = new ExportRow(){
     //				Name = this.Name,
     //				Size = this.Size,
     //				Location = this.Location,
     //				CanGrow = this.CanGrow,
     //				BackColor = this.BackColor,
     //				DesiredSize = this.Size
     //			};
     return er;
 }
Ejemplo n.º 3
0
 public virtual void Visit(ExportRow exportRow)
 {
 }