C# 클래스 Open.Core.Controls.HtmlPrimitive.HtmlList

Renders an
    or
      .
      상속: ViewBase, IHtmlList
      파일 보기 프로젝트 열기: philcockfield/Open.TestHarness.SL 1 사용 예제들

      공개 메소드들

      메소드 설명
      Add ( string text ) : jQueryObject

      Adds a new list item

    1. .

      AddElement ( jQueryObject element ) : jQueryObject

      Adds a new element within an

    2. item.

      Clear ( ) : void

      Removes all child LI items.

      HtmlList ( HtmlListType listType, string cssClass ) : System

      Constructor.

      Remove ( int index ) : void

      Removes the item at the given index.

      this ( int index ) : jQueryObject

      Gets the list-item at the given index.

      비공개 메소드들

      메소드 설명
      HtmlList ( ) : System
      InitHtml ( HtmlListType listType ) : jQueryObject

      메소드 상세

      Add() 공개 메소드

      Adds a new list item
    3. .
      public Add ( string text ) : jQueryObject
      text string The text to insert within the element.
      리턴 jQueryObject

      AddElement() 공개 메소드

      Adds a new element within an
    4. item.
      public AddElement ( jQueryObject element ) : jQueryObject
      element jQueryObject The element to add (within the LI).
      리턴 jQueryObject

      Clear() 공개 메소드

      Removes all child LI items.
      public Clear ( ) : void
      리턴 void

      HtmlList() 공개 메소드

      Constructor.
      public HtmlList ( HtmlListType listType, string cssClass ) : System
      listType HtmlListType The type of list to construct.
      cssClass string The CSS class attribute to add to the root list element (can be multiple classes).
      리턴 System

      Remove() 공개 메소드

      Removes the item at the given index.
      public Remove ( int index ) : void
      index int The index to remove.
      리턴 void

      this() 공개 메소드

      Gets the list-item at the given index.
      public this ( int index ) : jQueryObject
      index int
      리턴 jQueryObject