예제 #1
0
 public CT_RelativeRect AddNewFillRect()
 {
     this.fillRectField = new CT_RelativeRect();
     return this.fillRectField;
 }
예제 #2
0
파일: BaseTypes.cs 프로젝트: 89sos98/npoi
 public static CT_RelativeRect Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_RelativeRect ctObj = new CT_RelativeRect();
     ctObj.l = XmlHelper.ReadInt(node.Attributes["l"]);
     ctObj.t = XmlHelper.ReadInt(node.Attributes["t"]);
     ctObj.r = XmlHelper.ReadInt(node.Attributes["r"]);
     ctObj.b = XmlHelper.ReadInt(node.Attributes["b"]);
     return ctObj;
 }
예제 #3
0
 public CT_PathShadeProperties()
 {
     this.fillToRectField = new CT_RelativeRect();
 }
예제 #4
0
 public CT_GradientFillProperties()
 {
     this.tileRectField = new CT_RelativeRect();
     this.pathField = new CT_PathShadeProperties();
     this.linField = new CT_LinearShadeProperties();
     this.gsLstField = new List<CT_GradientStop>();
 }