public CT_NonVisualConnectorProperties() { this.extLstField = new CT_OfficeArtExtensionList(); this.endCxnField = new CT_Connection(); this.stCxnField = new CT_Connection(); this.cxnSpLocksField = new CT_ConnectorLocking(); }
public static CT_Connection Parse(XmlNode node, XmlNamespaceManager namespaceManager) { if (node == null) { return(null); } CT_Connection ctObj = new CT_Connection(); ctObj.id = XmlHelper.ReadUInt(node.Attributes["id"]); ctObj.idx = XmlHelper.ReadUInt(node.Attributes["idx"]); return(ctObj); }
public static CT_Connection Parse(XmlNode node, XmlNamespaceManager namespaceManager) { if (node == null) return null; CT_Connection ctObj = new CT_Connection(); ctObj.id = XmlHelper.ReadUInt(node.Attributes["id"]); ctObj.idx = XmlHelper.ReadUInt(node.Attributes["idx"]); return ctObj; }