Click or drag to resize

ModelManagerRemoveNodes Method

필터 문자열을 포함하는 노드를 제거하고, VIZ 파일을 저장

Namespace:  VIZCore3D.NET.Manager
Assembly:  VIZCore3D.NET (in VIZCore3D.NET.dll) Version: 2.8.24.1104 (2.8.24.1104)
Syntax
C#
public bool RemoveNodes(
	string input,
	List<string> filter,
	string output
)

Parameters

input
Type: SystemString
입력 파일
filter
Type: System.Collections.GenericListString
검색 문자열 (포함)
output
Type: SystemString
출력 파일

Return Value

Type: Boolean
결과
Examples
C#
// 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);
}
See Also