Ejemplo n.º 1
0
 public static CT_DepthPercent Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_DepthPercent ctObj = new CT_DepthPercent();
     if (node.Attributes["val"]!=null)
         ctObj.val = XmlHelper.ReadUShort(node.Attributes["val"]);
     return ctObj;
 }
Ejemplo n.º 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();
 }