Node {Microsoft.VisualBasic.MIME.Html.XmlMeta} | .NET clr documentation |
The base of the html node
this object class model has these basically html element attributes: 1. id 2. class 3. style
# namespace Microsoft.VisualBasic.MIME.Html.XmlMeta
export class Node {
# node class id, just like the id in HTML, you can also using this attribute to tweaks on the style by CSS.
class: string;
id: string;
# CSS style definition ICSSValue.(请注意,假若是SVG对象则赋值这个属性无效)
style: string;
}