@DOMObjectAttribute @DOMNameAttribute(name="StyleSheetList") @DOMIndexerAttribute(indexerType="ICSSStyleSheet") public interface IStyleSheetList extends com.aspose.html.internal.ms.System.Collections.Generic.IGenericEnumerable<IStyleSheet>, IDOMCollectionIndexer<ICSSStyleSheet>
The StyleSheetList interface provides the abstraction of an ordered collection of style sheets.
Modifier and Type | Method and Description |
---|---|
ICSSStyleSheet |
get_Item(int index)
Used to retrieve a style sheet by method item(int index) accordind to http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/stylesheets.html.
|
int |
getLength()
The number of StyleSheets in the list.
|
iterator
forEach, spliterator
@DOMNameAttribute(name="length") int getLength()
The number of StyleSheets in the list. The range of valid child stylesheet indices is 0 to length-1 inclusive.
@DOMNameAttribute(name="item") ICSSStyleSheet get_Item(int index)
Used to retrieve a style sheet by method item(int index) accordind to http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/stylesheets.html.
get_Item
in interface IDOMCollectionIndexer<ICSSStyleSheet>
index
- The style sheet index
Value:
The ICSSStyleSheet
.