public CT_BorderPr AddNewLeft() { if (this.leftField == null) { this.leftField = new CT_BorderPr(); } return(this.leftField); }
public CT_BorderPr AddNewRight() { if (this.rightField == null) { this.rightField = new CT_BorderPr(); } return(this.rightField); }
public CT_BorderPr AddNewBottom() { if (this.bottomField == null) { this.bottomField = new CT_BorderPr(); } return(this.bottomField); }
public CT_BorderPr AddNewDiagonal() { if (this.diagonalField == null) { this.diagonalField = new CT_BorderPr(); } return(this.diagonalField); }
public CT_BorderPr Copy() { var res = new CT_BorderPr(); res.colorField = this.colorField == null ? null : this.colorField.Copy(); res.style = this.style; return(res); }
public CT_BorderPr AddNewTop() { if (this.topField == null) { this.topField = new CT_BorderPr(); } return(this.topField); }
public CT_BorderPr Copy() { CT_BorderPr obj = new CT_BorderPr(); if (IsSetColor()) { obj.color = color.Copy(); } if (IsSetStyle()) { obj.style = style; } return obj; }
public static CT_BorderPr Parse(XmlNode node, XmlNamespaceManager namespaceManager) { if (node == null) return null; CT_BorderPr ctObj = new CT_BorderPr(); if (node.Attributes["style"] != null) ctObj.style = (ST_BorderStyle)Enum.Parse(typeof(ST_BorderStyle), node.Attributes["style"].Value); foreach (XmlNode childNode in node.ChildNodes) { if (childNode.LocalName == "color") ctObj.color = CT_Color.Parse(childNode, namespaceManager); } return ctObj; }
public static CT_Border Parse(XmlNode node, XmlNamespaceManager namespaceManager) { if (node == null) { return(null); } CT_Border ctObj = new CT_Border(); ctObj.diagonalUp = XmlHelper.ReadBool(node.Attributes["diagonalUp"]); ctObj.diagonalDown = XmlHelper.ReadBool(node.Attributes["diagonalDown"]); ctObj.outline = XmlHelper.ReadBool(node.Attributes["outline"]); foreach (XmlNode childNode in node.ChildNodes) { if (childNode.LocalName == "left") { ctObj.left = CT_BorderPr.Parse(childNode, namespaceManager); } else if (childNode.LocalName == "right") { ctObj.right = CT_BorderPr.Parse(childNode, namespaceManager); } else if (childNode.LocalName == "top") { ctObj.top = CT_BorderPr.Parse(childNode, namespaceManager); } else if (childNode.LocalName == "bottom") { ctObj.bottom = CT_BorderPr.Parse(childNode, namespaceManager); } else if (childNode.LocalName == "diagonal") { ctObj.diagonal = CT_BorderPr.Parse(childNode, namespaceManager); } else if (childNode.LocalName == "vertical") { ctObj.vertical = CT_BorderPr.Parse(childNode, namespaceManager); } else if (childNode.LocalName == "horizontal") { ctObj.horizontal = CT_BorderPr.Parse(childNode, namespaceManager); } } return(ctObj); }
public static CT_BorderPr Parse(XmlNode node, XmlNamespaceManager namespaceManager) { if (node == null) { return(null); } CT_BorderPr ctObj = new CT_BorderPr(); if (node.Attributes["style"] != null) { ctObj.style = (ST_BorderStyle)Enum.Parse(typeof(ST_BorderStyle), node.Attributes["style"].Value); } foreach (XmlNode childNode in node.ChildNodes) { if (childNode.LocalName == "color") { ctObj.color = CT_Color.Parse(childNode, namespaceManager); } } return(ctObj); }
public CT_BorderPr AddNewLeft() { if (this.leftField == null) this.leftField = new CT_BorderPr(); return this.leftField; }
public CT_BorderPr AddNewRight() { if (this.rightField == null) this.rightField = new CT_BorderPr(); return this.rightField; }
public CT_BorderPr AddNewTop() { if (this.topField == null) this.topField = new CT_BorderPr(); return this.topField; }
public void unsetBottom() { this.bottomField = null; }
public void unsetTop() { this.topField = null; }
public void unsetLeft() { this.leftField = null; }
public void unsetDiagonal() { this.diagonalField = null; }
public CT_BorderPr AddNewDiagonal() { if (this.diagonalField == null) this.diagonalField = new CT_BorderPr(); return this.diagonalField; }
public CT_BorderPr Copy() { var res = new CT_BorderPr(); res.colorField = this.colorField == null ? null : this.colorField.Copy(); res.style = this.style; return res; }
public void unsetRight() { this.rightField = null; }
public CT_BorderPr AddNewBottom() { if (this.bottomField == null) this.bottomField = new CT_BorderPr(); return this.bottomField; }