Interface IStyleSheetList
Interface IStyleSheetList
Namespace: Aspose.Html.Dom.Css
Assembly: Aspose.HTML.dll (25.1.0)
StyleSheetList 인터페이스는 스타일 시트의 정렬된 컬렉션에 대한 추상화를 제공합니다.
[ComVisible(true)]
[DOMObject]
[DOMName("StyleSheetList")]
public interface IStyleSheetList : IEnumerable<icssstylesheet>, IEnumerable
Implements
IEnumerable<icssstylesheet>, IEnumerable
Properties
Length
리스트에 있는 스타일 시트의 수입니다. 유효한 자식 스타일 시트 인덱스의 범위는 0부터 length-1까지 포함됩니다.
[DOMName("length")]
int Length { get; }
Property Value
this[int]
http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/stylesheets.html에 따라 item(int index) 메서드를 사용하여 스타일 시트를 검색하는 데 사용됩니다.
[DOMName("item")]
ICSSStyleSheet this[int index] { get; }