GetComputedStyle() public méthode

public GetComputedStyle ( string pseudoElt ) : ICssStyleDeclaration
pseudoElt string
Résultat ICssStyleDeclaration
 public WpfSvgPaint(WpfDrawingContext context, SvgStyleableElement elm, string propName)
     : base(elm.GetComputedStyle("").GetPropertyValue(propName))
 {
     _propertyName = propName;
     _element      = elm;
     _context      = context;
 }
Exemple #2
0
 public WpfSvgColor(SvgStyleableElement elm, string propertyName)
     : base(elm.GetComputedStyle("").GetPropertyValue(propertyName))
 {
     _element      = elm;
     _propertyName = propertyName;
 }
Exemple #3
0
 public GdiSvgPaint(SvgStyleableElement elm, string propName)
     : base(elm.GetComputedStyle("").GetPropertyValue(propName))
 {
     _element = elm;
 }