public static CT_Perspective Parse(XmlNode node, XmlNamespaceManager namespaceManager) { if (node == null) return null; CT_Perspective ctObj = new CT_Perspective(); if (node.Attributes["val"]!=null) ctObj.val = XmlHelper.ReadByte(node.Attributes["val"]); return ctObj; }
public CT_View3D() { this.extLstField = new List<CT_Extension>(); this.perspectiveField = new CT_Perspective(); this.rAngAxField = new CT_Boolean(); this.depthPercentField = new CT_DepthPercent(); this.rotYField = new CT_RotY(); this.hPercentField = new CT_HPercent(); this.rotXField = new CT_RotX(); }