nuget server logo nuget api documents
↑

API Docs / Microsoft.VisualBasic.Data.GraphQuery / CSSSelector

CSSSelector

Full name Microsoft.VisualBasic.Data.GraphQuery.CSSSelector Assembly Microsoft.VisualBasic.Data.GraphQuery Members 2

01 Syntax

Microsoft.VisualBasic.Data.GraphQuery.CSSSelector

02 Methods

NameOverloadsSummary
.ctor 1
selectByList 1 4.1. Selector Lists https://www.w3.org/TR/selectors/#grouping A comma-separated list of selectors represents the union of all elements selected by each of the individual se…

03 Members

method .ctor #
#ctor(String, String())
Parameters
NameTypeDescription
funcString

always css

parametersString()

-

method selectByList #
selectByList(InnerPlantText, Selector)

4.1. Selector Lists

https://www.w3.org/TR/selectors/#grouping

A comma-separated list of selectors represents the union of all elements selected by each of the individual selectors in the selector list. (A comma is U+002C.) For example, in CSS when several selectors share the same declarations, they may be grouped into a comma-separated list. White space may appear before and/or after the comma.

CSS example: In this example, we condense three rules with identical declarations into one. Thus,

 h1 { font-family sans-serif }
 h2 { font-family: sans-serif }
 h3 { font-family: sans-serif }

Is equivalent to:

 h1, h2, h3 { font-family sans-serif }
Parameters
NameTypeDescription
documentInnerPlantText

-

selectorSelector

-