C# 클래스 RtfDomParser.RTFNodeList

상속: System.Collections.CollectionBase
파일 보기 프로젝트 열기: SourceCodeBackup/RtfDomParser 1 사용 예제들

공개 메소드들

메소드 설명
ContainsKey ( string Key ) : bool

detect whether exist node special keyword in this list

GetParameter ( string key, int DefaultValue ) : int

get node's parameter value special keyword, if can not find , return default value.

IndexOf ( RTFNode node ) : int

get index of node in this list

this ( Type t ) : RTFNode

get node special type

this ( int index ) : RTFNode

get node special index

this ( string KeyWord ) : RTFNode

get node special keyword

비공개 메소드들

메소드 설명
Add ( RTFNode node ) : void

add node

AddRange ( RTFNodeList list ) : void
Insert ( int index, RTFNode node ) : void

insert node

Remove ( RTFNode node ) : void

remvoe node

메소드 상세

ContainsKey() 공개 메소드

detect whether exist node special keyword in this list
public ContainsKey ( string Key ) : bool
Key string keyword
리턴 bool

GetParameter() 공개 메소드

get node's parameter value special keyword, if can not find , return default value.
public GetParameter ( string key, int DefaultValue ) : int
key string keyword
DefaultValue int default value
리턴 int

IndexOf() 공개 메소드

get index of node in this list
public IndexOf ( RTFNode node ) : int
node RTFNode node
리턴 int

this() 공개 메소드

get node special type
public this ( Type t ) : RTFNode
t System.Type
리턴 RTFNode

this() 공개 메소드

get node special index
public this ( int index ) : RTFNode
index int
리턴 RTFNode

this() 공개 메소드

get node special keyword
public this ( string KeyWord ) : RTFNode
KeyWord string
리턴 RTFNode