TextBox.deserialize constructor

TextBox.deserialize(
  1. XmlElement node
)

Implementation

TextBox.deserialize(XmlElement node) : super.deserialize(node) {
  this.text = node.innerText;
  this.binding = node.getAttribute('binding');
  this.format = node.getAttribute('format');
  style = PrinterTextStyle.deserialize(node);
}