예제 #1
0
파일: Chart.cs 프로젝트: runningwater/npoi
 public static CT_CrossBetween Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_CrossBetween ctObj = new CT_CrossBetween();
     if (node.Attributes["val"] != null)
         ctObj.val = (ST_CrossBetween)Enum.Parse(typeof(ST_CrossBetween), node.Attributes["val"].Value);
     return ctObj;
 }
예제 #2
0
파일: Chart.cs 프로젝트: runningwater/npoi
 public CT_CrossBetween AddNewCrossBetween()
 {
    this.crossBetweenField=new CT_CrossBetween();
    return this.crossBetweenField;
 }   
예제 #3
0
파일: Chart.cs 프로젝트: xoposhiy/npoi
 public CT_ValAx()
 {
     this.extLstField = new List<CT_Extension>();
     this.dispUnitsField = new CT_DispUnits();
     this.minorUnitField = new CT_AxisUnit();
     this.majorUnitField = new CT_AxisUnit();
     this.crossBetweenField = new CT_CrossBetween();
     this.crossAxField = new CT_UnsignedInt();
     this.tickLblPosField = new CT_TickLblPos();
     this.minorTickMarkField = new CT_TickMark();
     this.majorTickMarkField = new CT_TickMark();
     this.numFmtField = new CT_NumFmt();
     this.titleField = new CT_Title();
     this.minorGridlinesField = new CT_ChartLines();
     this.majorGridlinesField = new CT_ChartLines();
     this.axPosField = new CT_AxPos();
     this.deleteField = new CT_Boolean();
     this.scalingField = new CT_Scaling();
     this.axIdField = new CT_UnsignedInt();
 }