C# 클래스 Encog.Parse.Tags.Tag

HTMLTag: This class holds a single HTML tag. This class subclasses the AttributeList class. This allows the HTMLTag class to hold a collection of attributes, just as an actual HTML tag does.
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
Clear ( ) : void

Clear the name, type and attributes.

Clone ( ) : object

Clone this object.

GetAttributeInt ( String attributeId ) : int

Get the specified attribute as an integer.

GetAttributeValue ( String name ) : String

Get the value of the specified attribute.

SetAttribute ( String name, String valueRen ) : void

Set a HTML attribute.

ToString ( ) : String

Convert this tag back into string form, with the beginning < and ending >.

메소드 상세

Clear() 공개 메소드

Clear the name, type and attributes.
public Clear ( ) : void
리턴 void

Clone() 공개 메소드

Clone this object.
public Clone ( ) : object
리턴 object

GetAttributeInt() 공개 메소드

Get the specified attribute as an integer.
public GetAttributeInt ( String attributeId ) : int
attributeId String The attribute name.
리턴 int

GetAttributeValue() 공개 메소드

Get the value of the specified attribute.
public GetAttributeValue ( String name ) : String
name String The name of an attribute.
리턴 String

SetAttribute() 공개 메소드

Set a HTML attribute.
public SetAttribute ( String name, String valueRen ) : void
name String The name of the attribute.
valueRen String The value of the attribute.
리턴 void

ToString() 공개 메소드

Convert this tag back into string form, with the beginning < and ending >.
public ToString ( ) : String
리턴 String