Example #1
0
 public static CT_RotX Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_RotX ctObj = new CT_RotX();
     ctObj.val = XmlHelper.ReadSByte(node.Attributes["val"]);
     return ctObj;
 }
Example #2
0
 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();
 }