function PrintColumn(name, column) { this.name = ""; this.column = ""; this.columnType = "data"; this.position = "detail"; this.text = ""; this.left = 0; this.top = 0; this.width = 0; this.height = 0; this.align = "left"; this.valign = "top"; this.format = ""; this.bgColor = ""; this.font = new PrintFont(); this.visible = true; // Constructor - Begin try { this.name = name == undefined ? "" : name; } catch (err1) { this.name = ""; } try { this.column = column == undefined ? "" : column; } catch (err1) { this.column = ""; } if (this.column == "") { this.column = "#x{" + this.name + "}"; } //Constructor - End }