Add
Overloads
| Name | Description |
|---|---|
| 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
| Name | Type | Description |
|---|---|---|
| name | string | 그룹 이름 |
Returns
| Type | Description |
|---|---|
| GroupItem | 추가된 그룹 항목 객체 |
Add(string name, List<int> index)
public GroupItem Add(string name, List<int> index)
지정된 개체를 그룹에 추가
Parameters
| Name | Type | Description |
|---|---|---|
| name | string | 그룹 이름 |
| index | List<int> | 노드 인덱스 |
Returns
| Type | Description |
|---|---|
| GroupItem | 추가된 그룹 항목 객체 |
Add(string name, List<Node> node)
public GroupItem Add(string name, List<Node> node)
지정된 개체를 그룹에 추가
Parameters
| Name | Type | Description |
|---|---|---|
| name | string | 그룹 이름 |
| node | List<Node> | 노드 |
Returns
| Type | Description |
|---|---|
| GroupItem | 추가된 그룹 항목 객체 |
Add(string name, string key, string val)
public GroupItem Add(string name, string key, string val)
사용자 정의 속성(UDA) 개체를 그룹에 추가
Parameters
| Name | Type | Description |
|---|---|---|
| name | string | 그룹 이름 |
| key | string | 속성 키 |
| val | string | 속성 값 |
Returns
| Type | Description |
|---|---|
| GroupItem | 추가된 그룹 항목 객체 |
Add(string name, List<string> keyword, bool joinCondition, bool assemblyOnly, bool visibleOnly, bool selectedNodeOnly, bool fullMatch)
public GroupItem Add(string name, List<string> keyword, bool joinCondition, bool assemblyOnly, bool visibleOnly, bool selectedNodeOnly, bool fullMatch)
검색 조건으로 개체를 그룹에 추가
Parameters
| Name | Type | Description |
|---|---|---|
| name | string | 그룹 이름 |
| keyword | List<string> | 검색어 (노드이름) |
| joinCondition | bool | 검색어 결합조건. True : AND, False : OR |
| assemblyOnly | bool | 대상 노드 구분. True : 어셈블리 노드만 검색, False : 전체 노드 검색 |
| visibleOnly | bool | 조회 노드 구분. True : 보이는 노드만 검색, False : 전체 노드 검색 |
| selectedNodeOnly | bool | 선택 노드 구분. True : 선택 노드 이하 검색, False : 전체 노드 검색 |
| fullMatch | bool | 검색어 일치 여부. True : 검색어 전체 일치(Equal), False : 검색어 부분 일치(Contains) |
Returns
| Type | Description |
|---|---|
| GroupItem | 추가된 그룹 항목 객체 |