Exemplo n.º 1
0
 public SVGGradient(string pID, bool pLinear, Attributes pAttributes)
 {
     this.mID            = pID;
     this.mHref          = SVGParserUtils.parseHref(pAttributes);
     this.mLinear        = pLinear;
     this.mSVGAttributes = new SVGAttributes(pAttributes, true);
 }
Exemplo n.º 2
0
 public void setParentSVGAttributes(SVGAttributes pParentSVGAttributes)
 {
     this.mParentSVGAttributes = pParentSVGAttributes;
 }
Exemplo n.º 3
0
 public SVGAttributes(SVGAttributes pParentSVGAttributes, Attributes pAttributes, bool pAttributesDeepCopy)
 {
     this.mAttributes          = (pAttributesDeepCopy) ? new Attributes(pAttributes) : pAttributes;
     this.mAttributes          = pAttributes;
     this.mParentSVGAttributes = pParentSVGAttributes;
 }
Exemplo n.º 4
0
		public SVGGradient(string pID, bool pLinear, Attributes pAttributes) {
			this.mID = pID;
			this.mHref = SVGParserUtils.parseHref(pAttributes);
			this.mLinear = pLinear;
			this.mSVGAttributes = new SVGAttributes(pAttributes, true);
		}
Exemplo n.º 5
0
		public SVGFilter(string pID, Attributes pAttributes) {
			this.mID = pID;
			this.mHref = SVGParserUtils.parseHref(pAttributes);
			this.mSVGAttributes = new SVGAttributes(pAttributes, true);
		}
Exemplo n.º 6
0
 public SVGFilter(string pID, Attributes pAttributes)
 {
     this.mID            = pID;
     this.mHref          = SVGParserUtils.parseHref(pAttributes);
     this.mSVGAttributes = new SVGAttributes(pAttributes, true);
 }
Exemplo n.º 7
0
		public void setParentSVGAttributes(SVGAttributes pParentSVGAttributes) {
			this.mParentSVGAttributes = pParentSVGAttributes;
		}
Exemplo n.º 8
0
		public SVGAttributes(SVGAttributes pParentSVGAttributes, Attributes pAttributes, bool pAttributesDeepCopy) {
			this.mAttributes = (pAttributesDeepCopy) ? new Attributes(pAttributes) : pAttributes;
			this.mAttributes = pAttributes;
			this.mParentSVGAttributes = pParentSVGAttributes;
		}