コード例 #1
0
ファイル: HtmlWindow.cs プロジェクト: gamificationvn/cstoas3
		///<summary>
		///Returns the computed style of an element. Computed style represents the final computed values of all CSS properties for the element.
		///</summary>
		///<param name="el">an element</param>
		public HtmlElementStyle getComputedStyle(HtmlElement el) {
			return null;
		}
コード例 #2
0
ファイル: HtmlWindow.cs プロジェクト: gamificationvn/cstoas3
		///<summary>
		///Returns the computed style of an element. Computed style represents the final computed values of all CSS properties for the element.
		///</summary>
		///<param name="el">an element</param>
		///<param name="pseudoElt">a string specifying the pseudo-element to match. Must be null for regular elements.</param>
		public HtmlElementStyle getComputedStyle(HtmlElement el, string pseudoElt) {
			return null;
		}