Skip to content
SiteEmail

cohtml::ImagesListExtract

Enum containing the options we want when getting the list of loaded images.

Name
enumOptions { Images = 0, Hidden = 1 << 0, Styles = 1 << 1}
Configures the images to include in the list.
EnumeratorValueDescription
Images0This flag is always on - the images of Visible elements will be selected.
Hidden1 << 0This flag will also include images on elements that are currently hidden (display: none)
Styles1 << 1This flag will also include all images mentioned in CSS styles, even though they might not be currently applied to any element.

Configures the images to include in the list.