본문으로 건너뛰기

ClearAttribute

Overloads

NameDescription
ClearAttribute(string input, string output, bool showFileInExplorer)경량 3D 파일 (VIZ)의 속성 정보를 제거

ClearAttribute(string input, string output, bool showFileInExplorer)

public bool ClearAttribute(string input, string output, bool showFileInExplorer)

경량 3D 파일 (VIZ)의 속성 정보를 제거

Parameters

NameTypeDescription
inputstringVIZ 파일
outputstring속성이 제거된 VIZ 파일
showFileInExplorerbool변환 후, 탐색기로 조회

Returns

TypeDescription
bool변환 결과

Examples

// 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);
}