Ejemplo n.º 1
0
 public CT_RelativeRect AddNewFillRect()
 {
     this.fillRectField = new CT_RelativeRect();
     return this.fillRectField;
 }
Ejemplo n.º 2
0
 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;
 }
Ejemplo n.º 3
0
 public CT_PathShadeProperties()
 {
     this.fillToRectField = new CT_RelativeRect();
 }
Ejemplo n.º 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>();
 }