RemoveNodes
Overloads
| Name | Description |
|---|---|
| RemoveNodes(string input, List<string> filter, string output) | 필터 문자열을 포함하는 노드를 제거하고, VIZ 파일을 저장 |
RemoveNodes(string input, List<string> filter, string output)
public bool RemoveNodes(string input, List<string> filter, string output)
필터 문자열을 포함하는 노드를 제거하고, VIZ 파일을 저장
Parameters
| Name | Type | Description |
|---|---|---|
| input | string | 입력 파일 |
| filter | List<string> | 검색 문자열 (포함) |
| output | string | 출력 파일 |
Returns
| Type | Description |
|---|---|
| bool | 결과 |
Examples
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;
private void Example()
{
List<string> filter = new List<string>();
filter.Add("(OBST)");
filter.Add("(INSU)");
string input = "C:\\Temp\\INPUT.viz";
string output = "C:\\Temp\\OUTPUT.viz";
bool result = vizcore3d.Model.RemoveNodes(input, filter, output);
}