Click or drag to resize

ModelManagerClearAttribute Method

경량 3D 파일 (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 ClearAttribute(
	string input,
	string output,
	bool showFileInExplorer = false
)

Parameters

input
Type: SystemString
VIZ 파일
output
Type: SystemString
속성이 제거된 VIZ 파일
showFileInExplorer (Optional)
Type: SystemBoolean
변환 후, 탐색기로 조회

Return Value

Type: Boolean
변환 결과
Examples
C#
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void ClearAttribute()
{
    string input = "C:\\Model\\BLOCK.viz";
    string output = "C:\\Model\\BLOCK_RemovedAttributeData.viz";
    bool ShowExplorer = true;

    bool result = vizcore3d.Model.ClearAttribute(input, output, ShowExplorer);
}
See Also