SaveAsJson
Overloads
| Name | Description |
|---|---|
| SaveAsJson(string path) | Json 파일 저장 |
SaveAsJson(string path)
public bool SaveAsJson(string path)
Json 파일 저장
Parameters
| Name | Type | Description |
|---|---|---|
| path | string | 경로 |
Returns
| Type | Description |
|---|---|
| bool | Json 파일 내보내기 결과 |
Examples
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;
private void Example()
{
if (vizcore3d.Model.IsOpen() == false) return;
string path = "C:\\Temp\\Review.json";
bool result = vizcore3d.Review.SaveAsJson(path);
}