본문으로 건너뛰기

Add

Overloads

NameDescription
Add(string name)선택된 개체를 그룹에 추가
Add(string name, List<int> index)지정된 개체를 그룹에 추가
Add(string name, List<Node> node)지정된 개체를 그룹에 추가
Add(string name, string key, string val)사용자 정의 속성(UDA) 개체를 그룹에 추가
Add(string name, List<string> keyword, bool joinCondition, bool assemblyOnly, bool visibleOnly, bool selectedNodeOnly, bool fullMatch)검색 조건으로 개체를 그룹에 추가

Add(string name)

public GroupItem Add(string name)

선택된 개체를 그룹에 추가

Parameters

NameTypeDescription
namestring그룹 이름

Returns

TypeDescription
GroupItem추가된 그룹 항목 객체

Add(string name, List<int> index)

public GroupItem Add(string name, List&lt;int&gt; index)

지정된 개체를 그룹에 추가

Parameters

NameTypeDescription
namestring그룹 이름
indexList<int>노드 인덱스

Returns

TypeDescription
GroupItem추가된 그룹 항목 객체

Add(string name, List<Node> node)

public GroupItem Add(string name, List&lt;Node&gt; node)

지정된 개체를 그룹에 추가

Parameters

NameTypeDescription
namestring그룹 이름
nodeList<Node>노드

Returns

TypeDescription
GroupItem추가된 그룹 항목 객체

Add(string name, string key, string val)

public GroupItem Add(string name, string key, string val)

사용자 정의 속성(UDA) 개체를 그룹에 추가

Parameters

NameTypeDescription
namestring그룹 이름
keystring속성 키
valstring속성 값

Returns

TypeDescription
GroupItem추가된 그룹 항목 객체

Add(string name, List<string> keyword, bool joinCondition, bool assemblyOnly, bool visibleOnly, bool selectedNodeOnly, bool fullMatch)

public GroupItem Add(string name, List&lt;string&gt; keyword, bool joinCondition, bool assemblyOnly, bool visibleOnly, bool selectedNodeOnly, bool fullMatch)

검색 조건으로 개체를 그룹에 추가

Parameters

NameTypeDescription
namestring그룹 이름
keywordList<string>검색어 (노드이름)
joinConditionbool검색어 결합조건. True : AND, False : OR
assemblyOnlybool대상 노드 구분. True : 어셈블리 노드만 검색, False : 전체 노드 검색
visibleOnlybool조회 노드 구분. True : 보이는 노드만 검색, False : 전체 노드 검색
selectedNodeOnlybool선택 노드 구분. True : 선택 노드 이하 검색, False : 전체 노드 검색
fullMatchbool검색어 일치 여부. True : 검색어 전체 일치(Equal), False : 검색어 부분 일치(Contains)

Returns

TypeDescription
GroupItem추가된 그룹 항목 객체