ClearAttribute
Overloads
| Name | Description |
|---|---|
| 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
| Name | Type | Description |
|---|---|---|
| input | string | VIZ 파일 |
| output | string | 속성이 제거된 VIZ 파일 |
| showFileInExplorer | bool | 변환 후, 탐색기로 조회 |
Returns
| Type | Description |
|---|---|
| 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);
}