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; }
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; }
public virtual void Visit(ExportRow exportRow) { }