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