Example #1
0
 public static ICssStyleDeclaration GetRawComputedStyle(this IPseudoElement element) =>
 element.Owner.DefaultView.ComputeRawStyle(element);
Example #2
0
 public CssPseudoElement(IPseudoElement host, String type, ICssStyleDeclaration style)
 {
     _host  = host;
     _type  = type;
     _style = style;
 }
Example #3
0
 public static ICssStyleDeclaration GetCascadedStyle(this IPseudoElement element) =>
 element.Owner.DefaultView.GetStyleCollection().ComputeCascadedStyle(element);
Example #4
0
 public static ICssStyleDeclaration GetDefaultStyle(this IPseudoElement element)
 {
     return(element.Owner.DefaultView.ComputeDefaultStyle(element));
 }